diff --git a/download_scripts/AERONET_v3_lev15_download.py b/download_scripts/AERONET_v3_lev15_download.py new file mode 100644 index 0000000000000000000000000000000000000000..a4bed21cc03602d7aa13ebc9eda3214d16830060 --- /dev/null +++ b/download_scripts/AERONET_v3_lev15_download.py @@ -0,0 +1,73 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path +import urllib +import pandas as pd + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url_aod_sda = 'https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year={}&month={}&day={}&year2={}&month2={}&day2={}&{}{}=1&AVG=10' + base_url_alm = 'https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year={}&month={}&day={}&year2={}&month2={}&day2={}&product=ALL&AVG=10&{}{}=1' + levels = {'15': '1.5'} + data_types = {'ALM': "almucantar"} # {'AOD': 'directsun', 'SDA': 'oneill', + + if mode == 'all': + bdate = date(2022, 2, 15) # start from 1993 + edate = date.today() + + elif mode == 'nrt': + version = mode + bdate = start + edate = stop + + else: + print('time mode inapplicable') + + + # create date array, daily; format YYYYMMDD + dates = pd.date_range(bdate, edate, freq='d') + + # download + for level in levels: + + for data_type in data_types: + os.makedirs('{}/AERONET_v3_lev{}/original_files/{}/{}/'.format(dl_root, levels[level], version, data_types[data_type]), exist_ok=True) + download_location = '{}/AERONET_v3_lev{}/original_files/{}/{}/'.format(dl_root, levels[level], version, data_types[data_type]) + + for day in dates: + + if data_type == 'ALM': + base_url = base_url_alm + else: + base_url = base_url_aod_sda + + url = base_url.format(day.year, day.month, day.day, (day+timedelta(days=1)).year, (day+timedelta(days=1)).month, (day+timedelta(days=1)).day, data_type, level) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+day.strftime('%Y%m%d')+'.html') + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries * 3) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) \ No newline at end of file diff --git a/download_scripts/AERONET_v3_lev20_download.py b/download_scripts/AERONET_v3_lev20_download.py new file mode 100644 index 0000000000000000000000000000000000000000..4b97ed233912a04a279e83792f0c5057235ae4a3 --- /dev/null +++ b/download_scripts/AERONET_v3_lev20_download.py @@ -0,0 +1,72 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path +import urllib +import pandas as pd + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url_aod_sda = 'https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year={}&month={}&day={}&year2={}&month2={}&day2={}&{}{}=1&AVG=10' + base_url_alm = 'https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year={}&month={}&day={}&year2={}&month2={}&day2={}&product=ALL&AVG=10&{}{}=1' + levels = {'20': '2.0'} + data_types = {'AOD': 'directsun', 'SDA': 'oneill', 'ALM': "almucantar"} + + if mode == 'all': + bdate = date(1993, 1, 1) + edate = date.today() + + elif mode == 'nrt': + version = mode + bdate = start + edate = stop + + else: + print('time mode inapplicable') + + + # create date array, daily; format YYYYMMDD + dates = pd.date_range(bdate, edate, freq='d') + + # download + for level in levels: + + for data_type in data_types: + os.makedirs('{}/AERONET_v3_lev{}/original_files/{}/{}/'.format(dl_root, levels[level], version, data_types[data_type]), exist_ok=True) + download_location = '{}/AERONET_v3_lev{}/original_files/{}/{}/'.format(dl_root, levels[level], version, data_types[data_type]) + + for day in dates: + + if data_type == 'ALM': + base_url = base_url_alm + else: + base_url = base_url_aod_sda + + url = base_url.format(day.year, day.month, day.day, (day+timedelta(days=1)).year, (day+timedelta(days=1)).month, (day+timedelta(days=1)).day, data_type, level) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+day.strftime('%Y%m%d')+'.html') + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries * 3) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) \ No newline at end of file diff --git a/download_scripts/BJMEMC_download.py b/download_scripts/BJMEMC_download.py new file mode 100644 index 0000000000000000000000000000000000000000..9c20619143ad8eb400ddd3ab56eb07f960627181 --- /dev/null +++ b/download_scripts/BJMEMC_download.py @@ -0,0 +1,125 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'https://quotsoft.net/air/data' + + if mode == 'all': + bdate = date(2013, 12, 1) # date before record starts + edate = date.today() + + os.makedirs('{}/BJMEMC/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = dl_root+'/BJMEMC/original_files/'+version+'/{}/{}.csv' + + elif mode == 'nrt': + bdate = start # if code is run after 2 am, data from previous day will be available + edate = stop + + os.makedirs('{}/BJMEMC/original_files/nrt/'.format(dl_root), exist_ok=True) + download_location = dl_root+'/BJMEMC/original_files/nrt/{}/{}.csv' + + else: + print('time mode inapplicable') + + + # create date array, daily; format YYYYMMDD + dates = pd.date_range(bdate, edate, freq='d').strftime('%Y%m%d').tolist() + + # download + for day in dates: + url = '{}/beijing_all_{}.csv'.format(base_url, day) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format('all', day), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, download_location.format('all', day)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + url = '{}/beijing_extra_{}.csv'.format(base_url, day) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format('extra', day), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, download_location.format('extra', day)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + time.sleep(1) + + """ + # reorganize files per component + components_all = ['AQI', 'PM2.5', 'PM2.5_24h', 'PM10', 'PM10_24h'] + components_extra = ['SO2', 'SO2_24h', 'NO2', 'NO2_24h','O3', 'O3_24h', 'CO', 'CO_24h'] + + if mode == "nrt": + for component in components_all: + # all + og_file = pd.read_csv(download_location.format('all', day)) + comp = og_file[og_file["type"] == component] + + output_path = download_location.format('all', component+"_{}".format(dates[0][0:4])) + comp.to_csv(output_path, mode='a', header=not os.path.exists(output_path), index=False) + + # check if there is data doubled + new_file = pd.read_csv(output_path).drop_duplicates() + new_file.to_csv(output_path, index=False) + + os.remove(download_location.format('all', day)) + + + for component in components_extra: + # extra + og_file = pd.read_csv(download_location.format('extra', day)) + comp = og_file[og_file["type"] == component] + + output_path = download_location.format('extra', component+"_{}".format(dates[0][0:4])) + comp.to_csv(output_path, mode='a', header=not os.path.exists(output_path), index=False) + + # check if there is data doubled + new_file = pd.read_csv(output_path).drop_duplicates() + new_file.to_csv(output_path, index=False) + + + # delete original files + os.remove(download_location.format('extra', day))""" diff --git a/download_scripts/CANADA_NAPS_download.py b/download_scripts/CANADA_NAPS_download.py new file mode 100644 index 0000000000000000000000000000000000000000..63b23b469055a2e78d84d8f3c2fabb98e3ec81f3 --- /dev/null +++ b/download_scripts/CANADA_NAPS_download.py @@ -0,0 +1,378 @@ +from selenium import webdriver +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By + +import requests +import time +from datetime import date +from datetime import timedelta +import pandas as pd +import os.path +import time +import os +import csv +import json + + +def download_file(component, year, download_location, component_element, n_max_tries, max_time_per_dl): + # add user agent to make scraper look like real user; if Forbidden403 appears again, add more fake agents and choose different one for every request + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + # create download directory + os.makedirs(download_location+component+'/'+year+'/', exist_ok=True) + + component_link = component_element.get_attribute("href") + component_file_name = component_element.get_attribute("text") + + + # download + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(component_link, headers=Headers, timeout=max_time_per_dl) + if r.status_code == 200: + + with open(download_location+component+'/'+year+'/'+component_file_name, 'wb') as outfile: + outfile.write(r.content) + print('Downloaded {} in {}'.format(component, year)) + + # unzip with shell to have option to extract in current directory; -o overwrite, -q quiet extraction no printing, -j extract in same directory + os.system("unzip -o -q -j " +download_location+component+'/'+year+'/'+component_file_name+' -d '+download_location+component+'/'+year+'/') + os.remove(download_location+component+'/'+year+'/'+component_file_name) + errcode = r.status_code + + elif r.status_code == 404: + print("No data for {} in {} in integrated data".format(component, year)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(component_link, n_tries, max_time_per_dl, errcode)) + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl_con = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/{}/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/{}_{}.csv' + baseurl_int = 'https://data-donnees.az.ec.gc.ca/data/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/{}/IntegratedData-DonneesPonctuelles/?lang=en' + + # wetdep + baseurl_ions = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-{}.csv' + + + os.makedirs("{}/CANADA_NAPS/original_files/{}/".format(dl_root,version), exist_ok=True) + download_location = "{}/CANADA_NAPS/original_files/{}/".format(dl_root,version) + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + Headers = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0", + "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8", + "Accept-Language": "en-US,en;q=0.5", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Upgrade-Insecure-Requests": "1", + "Sec-Fetch-Dest": "document", + "Sec-Fetch-Mode": "navigate", + "Sec-Fetch-Site": "none", + "Sec-Fetch-User": "?1", + "Cache-Control": "max-age=0",} + + # set up driver + options = Options() + options.add_argument("--disable-dev-shm-usage") + options.add_argument("--no-sandbox") + options.add_argument("--headless") + options.add_argument("--disable-gpu") + options.add_argument("--disable-extensions") + options.add_argument("user-agent={Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148}") + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + components_con = ["CO", "NO", "NO2", "O3", "PM10", "PM2.5", "SO2"] + components_int = ["Carbonyls", "VOC", "IntegratedPM2.5", "IntegratedPM2.5-10", "NAPSReferenceMethodPM2.5", "PartisolPM2.5", "PMSpeciation", "PMDICHOT"] + #components_wetdep = ["anthropogenic-organic-pollutants-in-precipitation", "major-ions", "metals-in-precipitation"] + + bdate = date(1974, 1,1) # date before record starts + edate = date.today() + timedelta(days=365) + years = pd.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + print(years) + + for year in years: + + # continuous components ======================================================================= + for component in components_con: + + url = baseurl_con.format(year, component, year) + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + + if r.status_code == 200: + # create download directory + os.makedirs(download_location+component+'/', exist_ok=True) + with open(download_location+component+'/'+component+"_"+year+".csv", 'wb') as outfile: + outfile.write(r.content) + print('Downloaded {} in {}'.format(component, year)) + errcode = r.status_code + + elif r.status_code == 404: + print("No data for {} in {}".format(component, year)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + # integrated components ======================================================================= + response = requests.get(baseurl_int.format(year), headers=Headers, timeout=max_time_per_dl) + time.sleep(2) + + if response.status_code == 404: # filters for integrated data + print("No integrated data in {}".format(year)) + + else: + # loop integrated components + for component in components_int: + + # open working url + driver.get(baseurl_int.format(year)) + time.sleep(2) + + # locate elements + try: + component_element = driver.find_element(By.PARTIAL_LINK_TEXT, component) + download_file(component, year, download_location, component_element) + + except: + try: + component_element = driver.find_element(By.PARTIAL_LINK_TEXT, component.upper()) + download_file(component, year, download_location, component_element) + + except: + print("No file found for {} in {}".format(component, year)) + + + # wet deposition =============================================================================== + res = requests.get(baseurl_ions.format(year), headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + + if res.status_code == 200: + # create download directory + os.makedirs(download_location+"precip/major-ions/", exist_ok=True) + + with open(download_location+"precip/major-ions/"+os.path.basename(baseurl_ions.format(year)), 'wb') as outfile: + outfile.write(res.content) + + print('Downloaded {}'.format(os.path.basename(baseurl_ions.format(year)))) + errcode = res.status_code + + elif res.status_code == 404: + print("No major ions data in {}".format(year)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(res.status_code, n_tries)) + errcode = res.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(baseurl_ions.format(year), n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + # metals and organics + url_metals = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/metals-in-precipitation/AtmosphericPrecipitationChemistry-MetalsInPrecipitation-GLB-MultipleSites-1993_2017.csv' + r = requests.get(url_metals, timeout=max_time_per_dl, headers=Headers) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + + # create download directory + os.makedirs(download_location+"precip/metals/", exist_ok=True) + + with open(download_location+"precip/metals/"+os.path.basename(url_metals), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded {}'.format(os.path.basename(url_metals))) + errcode = r.status_code + + elif r.status_code == 404: + print("No metal data found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metals, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + + url_organics = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/anthropogenic-organic-pollutants-in-precipitation/AtmosphericPrecipitationChemistry-AOPP_{}-GLBM-MultipleSites-{}_{}.csv' + + components_org = ["FR", "OC", "PAH", "PCB"] + year_start = ["2002", '1990', '1990', '2002'] + year_end = ['2015', '2015', '2015', '2016'] + + # create download directory + os.makedirs(download_location+"precip/organic/", exist_ok=True) + + for i in range(len(components_org)): + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url_organics.format(components_org[i], year_start[i], year_end[i]), timeout=max_time_per_dl, headers=Headers) + + if r.status_code == 200: + with open(download_location+"precip/organic/"+os.path.basename(url_organics.format(components_org[i], year_start[i], year_end[i])), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded {}'.format(url_organics.format(components_org[i], year_start[i], year_end[i]))) + errcode = r.status_code + + elif r.status_code == 404: + print("No organics data found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_organics, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + driver.close() + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/ProgramInformation-InformationProgramme/StationsNAPS-StationsSNPA.csv' + download_location = dl_root+"/CANADA_NAPS/metadata/{}/network_provided/CANADA_NAPS_META_{}.csv" + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + r = requests.get(url_metadata, headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + today = date.today() + + while (n_tries < n_max_tries) and (errcode != 200): + + if r.status_code == 200: + + with open(download_location.format(version, '_unformatted'), 'wb') as outfile: + outfile.write(r.content) + + print('Downloaded metadata') + errcode = r.status_code + + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # import it as pandas to clean header + meta_file = pd.read_csv(download_location.format(version, '_unformatted'), header=[4]) + meta_file = meta_file[1 : meta_file.index[meta_file['NAPS_ID'] == '**********Definitions_Définitions**********'][0]] # cut out french line and bottom + meta_file.to_csv(download_location.format(version, today.strftime('%Y%m%d')), index=False) + os.remove(download_location.format(version, '_unformatted')) + + # create json from original metadata file + """json_metadata = {} + with open('{}/CANADA_NAPS/metadata/{}/network_provided/CANADA_NAPS_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['NAPS_ID'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/CANADA_NAPS/metadata/{}/processed/CANADA_NAPS_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location.format(version, today.strftime('%Y%m%d'))) as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['NAPS_ID'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/CANADA_NAPS/metadata/{}/processed/CANADA_NAPS_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("new {} --- old {}".format(json_metadata_now[station][parameter]['values'][0], json_metadata[station][parameter]['values'][-1])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/CANADA_NAPS/metadata/{}/processed/CANADA_NAPS_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + diff --git a/download_scripts/CAPMoN_download.py b/download_scripts/CAPMoN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..29ebfba907eeeba8d76d94b1dbe585d9b11be4df --- /dev/null +++ b/download_scripts/CAPMoN_download.py @@ -0,0 +1,238 @@ +from selenium import webdriver +import requests +from datetime import date +from datetime import timedelta +import pandas +import os.path +import time +from compare_two_files import compare_files +import csv +import json + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = "https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-gases/ground-level-ozone/" + file = "AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-{}.csv" + + baseurl_ions = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-{}.csv' + + components = ['O3', 'Particulate_Metals'] + + if mode == 'all': + bdate = date(1980, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + timedelta(days = 365) + # create download directory + for component in components: + os.makedirs('{}/CAPMoN/original_files/{}/{}/'.format(dl_root,version, component), exist_ok=True) + os.makedirs('{}/CAPMoN/original_files/{}/precip/major-ions/'.format(dl_root,version), exist_ok=True) + elif mode == 'nrt': + print("No nrt data for CAPMoN network.") + quit() + else: + print('time mode inapplicable') + quit() + + # create date array, per year + years = pandas.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + + print(years) + + # ozone + os.makedirs('{}/CAPMoN/original_files/{}/{}/'.format(dl_root,version, 'O3'), exist_ok=True) + os.makedirs('{}/CAPMoN/original_files/{}/precip/major-ions/'.format(dl_root,version), exist_ok=True) + + download_location = '{}/CAPMoN/original_files/{}/{}/'.format(dl_root,version, 'O3') + download_location_wetdep = '{}/CAPMoN/original_files/{}/precip/major-ions/'.format(dl_root,version) + + for year in years: + url = base_url + file.format(year) + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + r = requests.get(url, headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + with open(download_location + file.format(year), "wb") as f: + f.write(r.content) + print('Downloaded {}'.format(file.format(year))) + errcode = r.status_code + elif r.status_code == 404: + print("No ozone data found, error 404") + errcode = 200 + elif r.status_code == 403: + print("Permission denied for {}".format(file.format(year))) + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # major ions in wetdep + res = requests.get(baseurl_ions.format(year), headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + if res.status_code == 200: + with open(download_location_wetdep+os.path.basename(baseurl_ions.format(year)), 'wb') as outfile: + outfile.write(res.content) + print('Downloaded {}'.format(os.path.basename(baseurl_ions.format(year)))) + errcode = res.status_code + elif res.status_code == 404: + print("No major ions data found, error 404 {}".format(baseurl_ions.format(year))) + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(res.status_code, n_tries)) + errcode = res.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(baseurl_ions.format(year), n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + # particulate metals + base_url = "https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-particles/particulate-metals/" + file = "AtmosphericParticles-ParticulateMetals-GLBM-MultipleSites-1988_2017.csv" + + os.makedirs('{}/CAPMoN/original_files/{}/Particulate_Metals/'.format(dl_root, version), exist_ok=True) + download_location = '{}/CAPMoN/original_files/{}/Particulate_Metals/'.format(dl_root, version) + + url = base_url + file + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + r = requests.get(url, headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + with open(download_location + file, "wb") as f: + f.write(r.content) + print('Downloaded ' + file) + errcode = r.status_code + elif r.status_code == 404: + print("No metal data found, error 404") + errcode = 200 + elif r.status_code == 403: + print("Permission denied for {}".format(file)) + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/networks-and-studies/canadian-air-and-precipitation-monitoring-network-capmon/Networks_Studies-Reseaux_etudes-CAPMoN-SiteListing-ListeDesSites_EN-FR.csv' + download_location = dl_root+"/CAPMoN/metadata/{}/network_provided/CAPMoN_META_{}.csv" + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + r = requests.get(url_metadata, headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + today = date.today() + + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + with open(download_location.format(version, today.strftime('%Y%m%d')), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded metadata') + errcode = r.status_code + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + + # create json from original metadata file + # json_metadata = {} + # with open('{}/CAPMoN/metadata/{}/network_provided/CAPMoN_META.csv'.format(dl_root, version), 'r', encoding='ISO-8859-1') as file: + # csv_filedata = csv.DictReader(file) + + # for row in csv_filedata: + # key = row['ID']+'_'+row['Measurements_Mesures'].replace('"', '')[:3] + # update_date = today.strftime('%Y-%m-%d') + # for parameter in row: + # row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + # json_metadata[key] = row + + # with open('{}/CAPMoN/metadata/{}/processed/CAPMoN_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_metadata, indent=4)) + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location.format(version, today.strftime('%Y%m%d')), encoding='ISO-8859-1') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['ID']+'_'+row['Measurements_Mesures'].replace('"', '')[:3] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/CAPMoN/metadata/{}/processed/CAPMoN_META.json'.format(dl_root, version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1]), json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + for parameter in json_metadata_now[station]: # loop through all the parameters + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + # is there a new parameter that wasn't in the old file? + if parameter in json_metadata[station].keys(): + pass # parameter (column) is already there + else: + print('{} is new'.format(parameter)) + json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + + # safe + with open('{}/CAPMoN/metadata/{}/processed/CAPMoN_META.json'.format(dl_root, version), 'w', encoding='ISO-8859-1') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/CHILE_SINCA_download.py b/download_scripts/CHILE_SINCA_download.py new file mode 100644 index 0000000000000000000000000000000000000000..0ad23fb4f45db76fb88cdf1ed1dfb8ff05b66881 --- /dev/null +++ b/download_scripts/CHILE_SINCA_download.py @@ -0,0 +1,1102 @@ +from selenium import webdriver +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait # type: ignore +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC +from selenium.common.exceptions import TimeoutException +from selenium.common.exceptions import WebDriverException +from bs4 import BeautifulSoup + + +import time +import datetime +from datetime import date +from datetime import timedelta +import pandas as pd +import os.path +import time +import shutil +import os +import re +import csv +import json +import requests + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + if mode == 'all': + # create download directory + bdate = date(1990, 1, 1).strftime('%Y%m%d')[2:] # first date SINCA was reporting + edate = date.today().strftime('%Y%m%d')[2:] + + elif mode == 'nrt': + bdate = start.strftime('%Y%m%d')[2:] + edate = stop.strftime('%Y%m%d')[2:] + print(bdate) + print(edate) + + else: + print('time mode inapplicable') + + base_url = 'https://sinca.mma.gob.cl/cgi-bin/APUB-MMA/apub.tsindico2.cgi?outtype=xcl¯o=./{}/{}/Cal/{}//{}.{}.ic&from={}&to={}&path=/usr/airviro/data/CONAMA/&lang=esp&rsrc=¯opath=' + + components = {'PM10': 'PM10', + 'PM2.5': 'PM25', + 'PM10disc': 'PM1D', + 'SO2': '0001', + 'NO2': '0003', + 'NOX': '0NOX', + 'NO': '0002', + 'CO': '0004', + 'O3': '0008', + 'Pb': '00Pb', + 'As': 'ARSE', + 'Cu': '00Cu', + 'CH4': '0CH4', + 'NMHC': 'NMHC', + 'HC': 'THCM'} + + time_resolutions = {'diario.diario': 'daily', 'horario.horario': 'hourly'} + + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root, version), 'r') as file: + meta_data = json.load(file) + + if mode == 'nrt': + version = mode #change this in order to create meaningful directories, needs to be after import of metadata + + + for station_ID in meta_data: + region = station_ID.split('_')[1] + station = station_ID.split('_')[2] + print(region) + + # create directory + os.makedirs('{}/CHILE_SINCA/original_files/{}/{}/'.format(dl_root,version, station_ID), exist_ok=True) + download_location = '{}/CHILE_SINCA/original_files/{}/{}/'.format(dl_root,version, station_ID) + + for component in components: + if meta_data[station_ID][component]['values'][-1] == True: # component is measured at this station + variable = components[component] + + for time_resolution in time_resolutions: + + n_tries = 0 + errcode = 999 + url = base_url.format(region, station, variable, variable, time_resolution, bdate, edate) + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + + if 'No such file or directory' in str(r.content): + errcode = 200 + continue + else: + with open(download_location+component+'_'+time_resolutions[time_resolution]+'.csv', 'wb') as outfile: + outfile.write(r.content) + print('Downloaded {} {} {} {}'.format(region, station, variable, time_resolution)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {} {} {} {}'.format(region, station, variable, time_resolution)) + errcode = 200 #skip + continue + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries * 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + else: + continue + + + """ DOWNLOAD VIA WEBSCRAPING +++++++++++++++++++++++++++++++++++++++++ + + # paths and variables + variables_website = ['MP 10','MP 2,5', 'MP 10discreto','MP 2,5discreto', 'SO2', 'NO2', 'NOX', 'NO', 'CO', 'O3', 'Pb', 'As', 'Cu', 'MPS', 'CH4', 'HCNM', 'HC', 'V', 'Ni', 'Se', 'TRS'] + variables_text = ["Material particulado MP 10", "Material particulado MP 2,5", "Material particulado 10 micrometros discreto", "Material particulado 2.5 micrometros discreto", 'Dióxido de azufre', 'Dióxido de nitrógeno', 'Óxidos de nitrógeno', 'Monóxido de nitrógeno', 'Monóxido de carbono', 'Ozono', 'Plomo', 'Arsénico', 'Cobre', 'MPS', 'Metano', 'Hidrocarburos no metánicos', 'Hidrocarburos totales', 'V', 'Ni', 'Se', 'TRS'] + time_resolutions_website = ["registro diario", "registro horario"] + + variables_ghost = ['PM10', 'PM2.5', 'PM10disc', 'PM2.5disc', 'SO2', 'NO2', 'NOX', 'NO','CO', 'O3','Pb', 'As', 'Cu', 'MPS', 'CH4', 'NMHC', 'HC', 'V', 'Ni', 'Se', 'TRS'] # needs to be same order as variables_website! + time_resolution_ghost = ['daily', 'hourly'] + + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + metadata = json.loads(f.read()) + + baseurl = 'https://sinca.mma.gob.cl/' + + if mode == 'all': + # create download directory + os.makedirs('{}/CHILE_SINCA/original_files/{}/temp/'.format(dl_root,version), exist_ok=True) + download_location = '{}/CHILE_SINCA/original_files/{}/temp/'.format(dl_root,version) + + elif mode == 'nrt': + bdate = date(date.today().year, 1, 1).strftime('%Y%m%d')[2:] #"240101" + edate = date((date.today() + timedelta(days=31)).year, (date.today() + timedelta(days=31)).month, 1).strftime('%Y%m%d')[2:] # end date is the first of the upcoming month, for downloading reasons + edate = date.today().strftime('%Y%m%d')[2:] + print(bdate) + print(edate) + + # create download directory + version = mode + os.makedirs('{}/CHILE_SINCA/original_files/{}/temp/'.format(dl_root,version), exist_ok=True) + download_location = '{}/CHILE_SINCA/original_files/{}/temp/'.format(dl_root,version) + + else: + print('time mode inapplicable') + + + # let's go ------------------------------------------------------------------------------ + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + try: + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + #options.add_argument("disable-infobars") + #options.add_argument("--disable-extensions") + #options.add_argument("--disable-gpu") + #options.add_argument("--disable-dev-shm-usage") + # if n_tries > 0: + options.add_argument("--headless=chrome") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.XPATH, '//a[contains(@href, "/index.php/region/index/id/")]'))) # wait till loaded + + # navigate to regions + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + regions = soup.find_all("a", href=re.compile(r"^/index.php/region/index/id/")) + #regions = soup.find_all("a", {"href": "/index.php/region/index/id/V"}) # Valparaiso + + # loop over regions + for region in regions: + + print("Region is "+region.getText()) + #dl_logfile.write('**************************************************************************************************************\n') + #dl_logfile.write("Region is "+region.getText()+'\n') + + driver.get("https://sinca.mma.gob.cl/"+region.get("href")) + time.sleep(2) + + # navigate to station and component + html_region = driver.page_source + soup_region = BeautifulSoup(html_region, features="html.parser") + a_titles = [a.get("title") for a in soup_region.find_all("a", title=True)] # all links + # from all the links, choose only the components + stations_components = [] + for a_title in a_titles: + #for variable_text in variables_text: + if '|' in a_title: # choose iframe with data + stations_components.append(soup_region.find("a", {"title": a_title})) + + # loop through all stations and components of the region + for station_component in stations_components: + + #print(station_component.get("title")) + station = station_component.get("title").split("| ", 1)[1] + component = [x for x in variables_text if x in station_component.get("title")][0] # get component name on website + component_choose_time_res = variables_website[variables_text.index(component)] # get component name for choosing time resolution + component_ghost = variables_ghost[variables_text.index(component)] # get component name accordingly in ghost + + comune = station_component.find_parent().find_parent().find("div", {'class': 'comuna'}).text + station = station_component.find_parent().find_parent().find("a", href=True).text + # print('Comune is {}'.format(comune)) + # print('Station is {}'.format(station)) + + # create storage directory + try: + for station_reference in metadata: # loop through metadata to find station ID of current station + if (metadata[station_reference]['station_name']['values'][-1] == station) and (metadata[station_reference]['commune']['values'][-1] == comune): # match station with previously referenced station reference from old file; some stations have same names, so also filter for communes + station_id = station_reference + else: + pass + + os.makedirs('{}/CHILE_SINCA/original_files/{}/{}/'.format(dl_root,version, station_id), exist_ok=True) + storage_location = '{}/CHILE_SINCA/original_files/{}/{}/'.format(dl_root,version, station_id) + + except: + print("{} no station_id found in old metadata, did not download data from new station".format(station)) + #dl_logfile.write("{} no station_id found in old metadata, did not download data from new station\n".format(station)) + continue # ============================cover this case ============================================== + + # go to data on website + driver.get('https:'+station_component.get("href")) + time.sleep(5) + + driver.switch_to.frame("left") + + # select time resolution + dropdown_element = driver.find_element(By.ID, 'ic') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + + i=0 # iterate time resolutions + for time_resolution in time_resolutions_website: + #select time resolution if existent! + if (component_choose_time_res+' - '+time_resolution) in options: + select.select_by_visible_text(component_choose_time_res+' - '+time_resolution) + + #print("Time resolution is: {}".format(time_resolution)) + time.sleep(5) + + if mode == "all": + start_date = driver.find_element(By.ID, "from").get_attribute("value") + end_date = driver.find_element(By.ID, "to").get_attribute("value") + if mode == "nrt": # update dates + + start = driver.find_element(By.ID, "from") + driver.execute_script("arguments[0].removeAttribute('value')", start) + driver.execute_script("arguments[0].value = {};".format(bdate), start) + start.click() + time.sleep(3) # important! + driver.find_element(By.LINK_TEXT, '1').click() # click on calendar: 1st of January + + end = driver.find_element(By.ID, "to") + driver.execute_script("arguments[0].removeAttribute('value')", end) + driver.execute_script("arguments[0].value = {};".format(edate), end) + end.click() + time.sleep(2) # important! + driver.find_element(By.LINK_TEXT, edate[-2:]).click() # click on calendar: today + + start_date = start.get_attribute("value") + end_date = end.get_attribute("value") + + time.sleep(2) + + driver.switch_to.default_content() + driver.switch_to.frame("right") + + time.sleep(5) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.LINK_TEXT, "Excel CSV"))) # wait till loaded + + driver.find_element(By.LINK_TEXT, "Excel CSV").click() + + # wait until download finished + while not os.path.exists("{}/datos_{}_{}.csv".format(download_location, start_date, end_date)): + time.sleep(1) + + if os.path.isfile("{}/datos_{}_{}.csv".format(download_location, start_date, end_date)): + print('{} {} download successful'.format(station_component.get("title"), time_resolution_ghost[i])) + #dl_logfile.write('{} {} download successful\n'.format(station_component.get("title"), time_resolution_ghost[i])) + shutil.copyfile("{}/datos_{}_{}.csv".format(download_location, start_date, end_date), storage_location+component_ghost+'_'+time_resolution_ghost[i]+'.csv') + + os.remove("{}/datos_{}_{}.csv".format(download_location, start_date, end_date)) + + driver.switch_to.default_content() + driver.switch_to.frame("left") + + i=i+1 + + driver.close() + errcode = 200 + + except WebDriverException as e: + print(e) + #dl_logfile.write(e) + n_tries = n_tries+1 + print("Number of tries: {} ".format(n_tries)) + #dl_logfile.write("Number of tries: {}\n".format(n_tries)) + continue + + except ConnectionRefusedError as e: + print(e) + #dl_logfile.write(e) + n_tries = n_tries+1 + print("Number of tries: {} ".format(n_tries)) + #dl_logfile.write("Number of tries: {}\n".format(n_tries)) + continue + + if n_tries == n_max_tries: + print('Failed downloading CHILE_SINCA data {} times in {} seconds'.format(n_tries, max_time_per_dl))""" + + + + +def download_metadata_webscraper(n_max_tries, max_time_per_dl, version, dl_root): + + + variables_ghost = {'PM10': ['PM10', 'MP 10', "Material particulado MP 10"], + 'PM2.5': ['PM2.5', 'MP 2,5', "Material particulado MP 2,5"], + 'PM10disc': ['PM10disc', 'MP 10discreto', "Material particulado 10 micrometros discreto"], + 'SO2': ['SO2', 'Dióxido de azufre'], + 'NO2': ['NO2', 'Dióxido de nitrógeno'], + 'NOX': ['NOX', 'Óxidos de nitrógeno'], + 'NO': ['NO', 'Monóxido de nitrógeno'], + 'CO': ['CO', 'Monóxido de carbono'], + 'O3': ['O3', 'Ozono', 'Ozono.-'], + 'Pb': ['Pb', 'Plomo'], + 'As': ['As', 'Arsénico'], + 'Cu': ['Cu', 'Cobre'], + 'MPS': ['MPS'], + 'CH4': ['CH4', 'Metano'], + 'NMHC': ['NMHC', 'HCNM', 'Hidrocarburos no metánicos'], + 'HC': ['THCM', 'HCT', 'HC', 'Hidrocarburos totales'], # ??????? + 'V': ['V'], + 'Ni': ['Ni'], + 'Se': ['Se'], + 'TRS': ['TRS']} + + + baseurl = 'https://sinca.mma.gob.cl/index.php/' + today = date.today() + + # create json metadata base file! ============================================================================================= + # parameters = ['station_reference','station_name','region','province','commune','UTM_lon','UTM_lat','timezone','O3_instrument','NO_instrument','NO2_instrument','CO_instrument','CH4_instrument','SO2_instrument','NMHC_instrument','HC_instrument','PM10_instrument','PM2.5_instrument','As_instrument','Cu_instrument','Pb_instrument','comments'] + # n_tries = 0 + # errcode = 999 + # metadata_new = {} + # while (n_tries < n_max_tries) and (errcode != 200): + # try: + # # set up driver + # options = Options() + # #prefs = {'download.default_directory' : download_location} + # #options.add_experimental_option('prefs', prefs) + # options.add_argument("--no-sandbox") + # options.add_argument("--headless") + # svc = webdriver.ChromeService(executable_path=binary_path) + # driver = webdriver.Chrome(service=svc, options=options) + + # # open url + # driver.get(baseurl) + # WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.XPATH, '//a[contains(@href, "/index.php/region/index/id/")]'))) # wait till loaded + + # # navigate to regions + # html = driver.page_source + # soup = BeautifulSoup(html, features="html.parser") + # regions = soup.find_all("a", href=re.compile(r"^/index.php/region/index/id/")) + # #regions = soup.find_all("a", {"href": "/index.php/region/index/id/VIII"}) # Biobio + + # j = 0 + # for region in regions: + # j = j+1 + # region_ind = str(j).zfill(2) + + # print("Region is "+region.getText()) + + # driver.get("https://sinca.mma.gob.cl/"+region.get("href")) + # time.sleep(1) + + # html = driver.page_source + # soup = BeautifulSoup(html, features="html.parser") + # stations = soup.find_all("a", href=re.compile(r"^/index.php/estacion/index/id/"), title=None) + + # k = 0 + # for station in stations: # loop over new stations + # k = k +1 + # station_ind = str(k).zfill(3) + + # station_name_new = station.getText() + # print(station_name_new) + + # driver.get("https://sinca.mma.gob.cl/"+station.get("href")) + # time.sleep(1) + + # # get meta info + # html = driver.page_source + # soup = BeautifulSoup(html, features="html.parser") + + # region = soup.find("th", text="Región").find_next_sibling().getText().replace(',', '') + # province = soup.find("th", text="Provincia").find_next_sibling().getText().replace(',', '') + # commune = soup.find("th", text="Comuna").find_next_sibling().getText().replace(',', '') + # UTM_coordinates = soup.find("th", text="Coordenadas UTM").find_next_sibling().getText().replace(' ', '') + # lon = UTM_coordinates.split('E')[0]+'E' + # lat = UTM_coordinates.split('E')[1].split("\n")[0] + # timezone = soup.find("th", text="Huso horario").find_next_sibling().getText().replace(' ', '') + + # ins_table = soup.find('table', id="medicion") + # if ins_table is not None: # check if there are instruments for air pollution at this station + # instruments = ins_table.find_all("td", {"class": "helpTecnica center"}) + # instruments_per_component = {} + # else: + # continue + + # for instrument in instruments: + # component_sinca = instrument.find_parent().find('a').getText() + + # for variable_ghost in variables_ghost: # map components to ghost standards + # if component_sinca in variables_ghost[variable_ghost]: + # component = variable_ghost + + # #print(component_sinca, 'mapped to -->', component) + + # if "No informado" in instrument.getText(): + # instruments_per_component[component] = '' + # else: + # instrument_name = instrument.getText().strip() + # instrument_name = instrument_name.split("\n")[-1] + # instruments_per_component[component] = instrument_name + + # station_reference = 'CL'+str(region_ind)+'_'+str(station_ind) + # print(station_reference) + + # metadata_new[station_reference] = {} # create inner dictionary + # scraped_metadata = [station_reference, station_name_new, region, province, commune, lon, lat, timezone] + # i=0 + # for parameter in parameters: # loop through the meta parameters + # if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + # metadata_new[station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + # i=i+1 + # elif "comments" == parameter: + # metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + # else: # go through the instruments + # metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + # for component in instruments_per_component: + # if component in parameter: # if instrument matches component, overwrite empty instrument list + # metadata_new[station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + # # safe + # with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + # f.write(json.dumps(metadata_new, indent=4, ensure_ascii=False)) + + # driver.close() + # errcode = 200 + + # except WebDriverException as e: + # print(e) + # n_tries = n_tries+1 + # print("Number of tries: {}".format(n_tries)) + # continue + + # if n_tries == n_max_tries: + # print('Failed downloading CHILE_SINCA metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + metadata_old = json.loads(f.read()) + + station_commune_old = [str(metadata_old[station_reference]['station_name']['values'][-1]).replace(' ', '')+'_'+str(metadata_old[station_reference]['commune']['values'][-1]).replace(' ', '') for station_reference in metadata_old] + print(station_commune_old) # needed to determine if new station appeared + + n_tries = 0 + errcode = 999 + metadata_new = {} + while (n_tries < n_max_tries) and (errcode != 200): + try: + # set up driver + options = Options() + #prefs = {'download.default_directory' : download_location} + #options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.XPATH, '//a[contains(@href, "/index.php/region/index/id/")]'))) # wait till loaded + + # navigate to regions + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + regions = soup.find_all("a", href=re.compile(r"^/index.php/region/index/id/")) + #regions = soup.find_all("a", {"href": "/index.php/region/index/id/VIII"}) # Biobio + + j = 0 + for region in regions: + j = j+1 + region_ind = str(j).zfill(2) + + print("Region is "+region.getText()) + + driver.get("https://sinca.mma.gob.cl/"+region.get("href")) + time.sleep(1) + + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + stations = soup.find_all("a", href=re.compile(r"^/index.php/estacion/index/id/"), title=None) + + k = 0 + for station in stations: # loop over new stations + k = k +1 + station_ind = str(k).zfill(3) + + station_name_new = station.getText() + print(station_name_new) + + driver.get("https://sinca.mma.gob.cl/"+station.get("href")) + time.sleep(1) + + # get meta info + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + + region = soup.find("th", text="Región").find_next_sibling().getText().replace(',', '') + province = soup.find("th", text="Provincia").find_next_sibling().getText().replace(',', '') + commune = soup.find("th", text="Comuna").find_next_sibling().getText().replace(',', '') + UTM_coordinates = soup.find("th", text="Coordenadas UTM").find_next_sibling().getText().replace(' ', '') + lon = UTM_coordinates.split('E')[0]+'E' + lat = UTM_coordinates.split('E')[1].split("\n")[0] + timezone = soup.find("th", text="Huso horario").find_next_sibling().getText().replace(' ', '') + + ins_table = soup.find('table', id="medicion") + if ins_table is not None: # check if there are instruments for air pollution at this station + instruments = ins_table.find_all("td", {"class": "helpTecnica center"}) + instruments_per_component = {} + else: + continue + + for instrument in instruments: + component_sinca = instrument.find_parent().find('a').getText() + + for variable_ghost in variables_ghost: # map components to ghost standards + if component_sinca in variables_ghost[variable_ghost]: + component = variable_ghost + + #print(component_sinca, 'mapped to -->', component) + + if "No informado" in instrument.getText(): + instruments_per_component[component] = '' + else: + instrument_name = instrument.getText().strip() + instrument_name = instrument_name.split("\n")[-1] + instruments_per_component[component] = instrument_name + + + for station_reference in metadata_old: + + if (metadata_old[station_reference]['station_name']['values'][-1] == station_name_new) and (metadata_old[station_reference]['commune']['values'][-1] == commune): # match station with previously referenced station reference from old file; some stations have same names, so also filter for communes + i=0 + metadata_new[station_reference] = {} # create inner dictionary + scraped_metadata = [station_reference, station_name_new, region, province, commune, lon, lat, timezone] + for parameter in metadata_old[station_reference]: # loop through the meta parameters + if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + metadata_new[station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + i=i+1 + elif "comments" == parameter: + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + else: # go through the instruments + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + for component in instruments_per_component: + if component in parameter: # if instrument matches component, overwrite empty instrument list + metadata_new[station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + else: + pass # no match + + # take care of cases of new station! + if str(station_name_new).replace(' ', '')+'_'+str(commune).replace(' ', '') not in station_commune_old: # new station! + new_station_reference = 'CL'+str(region_ind)+'_'+str(station_ind) + print('New station {} {} with new station reference {}'.format(station_name_new, commune, new_station_reference)) + + i=0 + metadata_new[new_station_reference] = {} # create inner dictionary + scraped_metadata = [new_station_reference, station_name_new, region, province, commune, lon, lat, timezone] + for parameter in metadata_old[station_reference]: # loop through the meta parameters + if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + metadata_new[new_station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + i=i+1 + elif "comments" == parameter: + metadata_new[new_station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + else: # go through the instruments + metadata_new[new_station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + for component in instruments_per_component: + if component in parameter: # if instrument matches component, overwrite empty instrument list + metadata_new[new_station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + print("New station written to json") + + else: + pass # match! already taken care of above + + # safe + with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META_{}.json'.format(dl_root,version,today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + f.write(json.dumps(metadata_new, indent=4, ensure_ascii=False)) + + driver.close() + errcode = 200 + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + if n_tries == n_max_tries: + print('Failed downloading CHILE_SINCA metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + + # create json from original metadata file: don't do this anymore, start metadata tracking with new version of GHOST {} ===================================================================================== + """json_metadata = {} + with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META.txt'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['station_reference'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False))""" + + + # read newly scraped file + with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META_{}.json'.format(dl_root,version,today.strftime('%Y%m%d')), 'r', encoding='utf-8') as f: + json_metadata_now = json.loads(f.read()) + + # read standardised file to compare! + k=0 + m=0 + station_abolished=[] + station_new = [] + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + k=k+1 + station_abolished.append(json_metadata[station]['station_name']['values']) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + m=m+1 + station_new.append(json_metadata_now[station]['station_name']['values']) + json_metadata.update({station: json_metadata_now[station]}) + + print('{} stations were abolished'.format(k)) + print('Abolished stations: {}'.format(station_abolished)) + print('{} new stations '.format(m)) + print('New stations: {}'.format(station_new)) + + # safe + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + variables_ghost = {'PM10': ['PM10', 'MP 10', "Material particulado MP 10"], + 'PM2.5': ['PM2.5', 'MP 2,5', "Material particulado MP 2,5"], + 'PM10disc': ['PM10disc', 'MP 10discreto', "Material particulado 10 micrometros discreto"], + 'SO2': ['SO2', 'Dióxido de azufre'], + 'NO2': ['NO2', 'Dióxido de nitrógeno'], + 'NOX': ['NOX', 'Óxidos de nitrógeno'], + 'NO': ['NO', 'Monóxido de nitrógeno'], + 'CO': ['CO', 'Monóxido de carbono'], + 'O3': ['O3', 'Ozono', 'Ozono.-'], + 'Pb': ['Pb', 'Plomo'], + 'As': ['As', 'Arsénico'], + 'Cu': ['Cu', 'Cobre'], + 'MPS': ['MPS'], + 'CH4': ['CH4', 'Metano'], + 'NMHC': ['NMHC', 'HCNM', 'Hidrocarburos no metánicos'], + 'HC': ['THCM', 'HCT', 'HC', 'Hidrocarburos totales']} # ??????? + # 'V': ['V'], + # 'Ni': ['Ni'], + # 'Se': ['Se'], + # 'TRS': ['TRS']} + + + baseurl = 'https://sinca.mma.gob.cl/index.php/' + today = date.today() + tot_number_components = 16 + + #create json metadata base file! ============================================================================================= + """parameters = ['station_reference','station_name','region','province','commune','UTM_lon','UTM_lat','timezone','PM10', 'PM2.5', + 'PM10disc', + 'SO2', + 'NO2', + 'NOX', + 'NO', + 'CO', + 'O3', + 'Pb', + 'As', + 'Cu', + 'MPS', + 'CH4', + 'NMHC', + 'HC','O3_instrument','NO_instrument','NO2_instrument','CO_instrument','CH4_instrument','SO2_instrument','NMHC_instrument','HC_instrument','PM10_instrument','PM2.5_instrument','As_instrument','Cu_instrument','Pb_instrument','comments'] + + + n_tries = 0 + errcode = 999 + + metadata_new = {} + while (n_tries < n_max_tries) and (errcode != 200): + try: + # set up driver + options = Options() + #prefs = {'download.default_directory' : download_location} + #options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.XPATH, '//a[contains(@href, "/index.php/region/index/id/")]'))) # wait till loaded + + # navigate to regions + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + regions = soup.find_all("a", href=re.compile(r"^/index.php/region/index/id/")) + #regions = soup.find_all("a", {"href": "/index.php/region/index/id/VIII"}) # Biobio + + for region in regions: + print("Region is "+region.getText()) + + driver.get("https://sinca.mma.gob.cl/"+region.get("href")) + time.sleep(1) + + # navigate to station and component + html_region = driver.page_source + soup_region = BeautifulSoup(html_region, features="html.parser") + stations = soup_region.find_all("a", href=re.compile(r"^/index.php/estacion/index/id/"), title=None) + + for station in stations: # loop over new stations + + var_list = [False] * tot_number_components # total number of components measured by SINCA + components_stations = [a.get("title") for a in station.find_parent().find_parent().find_all('a', title=True) if '|' in a.get("title")] # find components per station + + for component_station in components_stations: + station_name_new = component_station.split("| ", 1)[1] + component = component_station.split(" |")[0] + + for variable_ghost in variables_ghost: + if component in variables_ghost[variable_ghost]: + ind = list(variables_ghost.keys()).index(variable_ghost) + var_list[ind] = True # component is measured at given station + + print(station_name_new) + + driver.get("https://sinca.mma.gob.cl/"+station.get("href")) + time.sleep(1) + + # get meta info + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + + region = soup.find("th", text="Región").find_next_sibling().getText().replace(',', '') + province = soup.find("th", text="Provincia").find_next_sibling().getText().replace(',', '') + commune = soup.find("th", text="Comuna").find_next_sibling().getText().replace(',', '') + UTM_coordinates = soup.find("th", text="Coordenadas UTM").find_next_sibling().getText().replace(' ', '') + lon = UTM_coordinates.split('E')[0]+'E' + lat = UTM_coordinates.split('E')[1].split("\n")[0] + timezone = soup.find("th", text="Huso horario").find_next_sibling().getText().replace(' ', '') + + ins_table = soup.find('table', id="medicion") + if ins_table is not None: # check if there are instruments for air pollution at this station + instruments = ins_table.find_all("td", {"class": "helpTecnica center"}) + instruments_per_component = {} + else: + continue + + for instrument in instruments: + component_sinca = instrument.find_parent().find('a').getText() + + for variable_ghost in variables_ghost: # map components to ghost standards + if component_sinca in variables_ghost[variable_ghost]: + component = variable_ghost + + #print(component_sinca, 'mapped to -->', component) + + if "No informado" in instrument.getText(): + instruments_per_component[component] = '' + else: + instrument_name = instrument.getText().strip() + instrument_name = instrument_name.split("\n")[-1] + instruments_per_component[component] = instrument_name + + # find station reference + link_vis_data = ins_table.find('a', {"alt": "visualizar serie de tiempo"}) + if link_vis_data is None: + continue + else: + link_vis_data = link_vis_data.get('href') + + station_ID = link_vis_data.split('/Cal/')[0].split('/')[-1] + region_ID = link_vis_data.split('/Cal/')[0].split('/')[-2] + station_reference = 'CL_'+region_ID+'_'+station_ID + + print(station_reference) + + metadata_new[station_reference] = {} # create inner dictionary + scraped_metadata = [station_reference, station_name_new, region, province, commune, lon, lat, timezone] + var_list + i=0 + for parameter in parameters: # loop through the meta parameters + if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + metadata_new[station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + i=i+1 + elif "comments" == parameter: + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + else: # go through the instruments + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + for component in instruments_per_component: + if component in parameter: # if instrument matches component, overwrite empty instrument list + metadata_new[station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + # safe + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(metadata_new, indent=4, ensure_ascii=False)) + + driver.close() + errcode = 200 + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + if n_tries == n_max_tries: + print('Failed downloading CHILE_SINCA metadata {} times in {} seconds'.format(n_tries, max_time_per_dl))""" + + + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + metadata_old = json.loads(f.read()) + + station_commune_old = [str(metadata_old[station_reference]['station_name']['values'][-1]).replace(' ', '')+'_'+str(metadata_old[station_reference]['commune']['values'][-1]).replace(' ', '') for station_reference in metadata_old] + # needed to determine if new station appeared + + n_tries = 0 + errcode = 999 + metadata_new = {} + while (n_tries < n_max_tries) and (errcode != 200): + try: + # set up driver + options = Options() + #prefs = {'download.default_directory' : download_location} + #options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.XPATH, '//a[contains(@href, "/index.php/region/index/id/")]'))) # wait till loaded + + # navigate to regions + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + regions = soup.find_all("a", href=re.compile(r"^/index.php/region/index/id/")) + #regions = soup.find_all("a", {"href": "/index.php/region/index/id/VIII"}) # Biobio + + for region in regions: + + print("Region is "+region.getText()) + + driver.get("https://sinca.mma.gob.cl/"+region.get("href")) + time.sleep(1) + + # navigate to station and component + html_region = driver.page_source + soup_region = BeautifulSoup(html_region, features="html.parser") + stations = soup_region.find_all("a", href=re.compile(r"^/index.php/estacion/index/id/"), title=None) + + for station in stations: # loop over new stations + + var_list = [False] * tot_number_components # total number of components measured by SINCA + components_stations = [a.get("title") for a in station.find_parent().find_parent().find_all('a', title=True) if '|' in a.get("title")] # find components per station + + for component_station in components_stations: + station_name_new = component_station.split("| ", 1)[1] + component = component_station.split(" |")[0] + + for variable_ghost in variables_ghost: + if component in variables_ghost[variable_ghost]: + ind = list(variables_ghost.keys()).index(variable_ghost) + var_list[ind] = True # component is measured at given station + + print(station_name_new) + + driver.get("https://sinca.mma.gob.cl/"+station.get("href")) + time.sleep(1) + + # get meta info + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + + region = soup.find("th", text="Región").find_next_sibling().getText().replace(',', '') + province = soup.find("th", text="Provincia").find_next_sibling().getText().replace(',', '') + commune = soup.find("th", text="Comuna").find_next_sibling().getText().replace(',', '') + UTM_coordinates = soup.find("th", text="Coordenadas UTM").find_next_sibling().getText().replace(' ', '') + lon = UTM_coordinates.split('E')[0]+'E' + lat = UTM_coordinates.split('E')[1].split("\n")[0] + timezone = soup.find("th", text="Huso horario").find_next_sibling().getText().replace(' ', '') + + ins_table = soup.find('table', id="medicion") + if ins_table is not None: # check if there are instruments for air pollution at this station + instruments = ins_table.find_all("td", {"class": "helpTecnica center"}) + instruments_per_component = {} + else: + continue + + for instrument in instruments: + component_sinca = instrument.find_parent().find('a').getText() + + for variable_ghost in variables_ghost: # map components to ghost standards + if component_sinca in variables_ghost[variable_ghost]: + component = variable_ghost + + #print(component_sinca, 'mapped to -->', component) + + if "No informado" in instrument.getText(): + instruments_per_component[component] = '' + else: + instrument_name = instrument.getText().strip() + instrument_name = instrument_name.split("\n")[-1] + instruments_per_component[component] = instrument_name + + # find station reference + link_vis_data = ins_table.find('a', {"alt": "visualizar serie de tiempo"}) + if link_vis_data is None: + continue + else: + link_vis_data = link_vis_data.get('href') + + station_ID = link_vis_data.split('/Cal/')[0].split('/')[-1] + region_ID = link_vis_data.split('/Cal/')[0].split('/')[-2] + #station_reference = 'CL_'+region_ID+'_'+station_ID + + # create json with newly scraped metadata! + for station_reference in metadata_old: + + if (metadata_old[station_reference]['station_name']['values'][-1] == station_name_new) and (metadata_old[station_reference]['commune']['values'][-1] == commune): # match station with previously referenced station reference from old file; some stations have same names, so also filter for communes + i=0 + metadata_new[station_reference] = {} # create inner dictionary + scraped_metadata = [station_reference, station_name_new, region, province, commune, lon, lat, timezone] + var_list + for parameter in metadata_old[station_reference]: # loop through the meta parameters + if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + metadata_new[station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + i=i+1 + elif "comments" == parameter: + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + else: # go through the instruments + metadata_new[station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + for component in instruments_per_component: + if component in parameter: # if instrument matches component, overwrite empty instrument list + metadata_new[station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + else: + pass # no match + + # take care of cases of new station! + if str(station_name_new).replace(' ', '')+'_'+str(commune).replace(' ', '') not in station_commune_old: # new station! + #new_station_reference = 'CL'+str(region_ind)+'_'+str(station_ind) + new_station_reference = 'CL_'+region_ID+'_'+station_ID + + print('New station {} {} with new station reference {}'.format(station_name_new, commune, new_station_reference)) + + i=0 + metadata_new[new_station_reference] = {} # create inner dictionary + scraped_metadata = [new_station_reference, station_name_new, region, province, commune, lon, lat, timezone] + for parameter in metadata_old[station_reference]: # loop through the meta parameters + if ("instrument" not in parameter) and ("comments" not in parameter): # go through all that are not instruments + metadata_new[new_station_reference][parameter] = {"values": [scraped_metadata[i]], "update_time": [today.strftime('%Y-%m-%d')]} + i=i+1 + elif "comments" == parameter: + metadata_new[new_station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} + else: # go through the instruments + metadata_new[new_station_reference][parameter] = {"values": [''], "update_time": [today.strftime('%Y-%m-%d')]} # write in all instruments empty list + for component in instruments_per_component: + if component in parameter: # if instrument matches component, overwrite empty instrument list + metadata_new[new_station_reference][parameter] = {"values": [instruments_per_component[component]], "update_time": [today.strftime('%Y-%m-%d')]} + + print("New station written to json") + + else: + pass # match! already taken care of above + + # safe + with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META_{}.json'.format(dl_root,version, today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + f.write(json.dumps(metadata_new, indent=4, ensure_ascii=False)) + + driver.close() + errcode = 200 + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + if n_tries == n_max_tries: + print('Failed downloading CHILE_SINCA metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + + # # create json from original metadata file: don't do this anymore, start metadata tracking with new version of GHOST {} ===================================================================================== + # json_metadata = {} + # with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META.txt'.format(dl_root,version), 'r') as file: + # csv_filedata = csv.DictReader(file) + + # for row in csv_filedata: + # key = row['station_reference'] + # update_date = today.strftime('%Y-%m-%d') + # for parameter in row: + # row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + # json_metadata[key] = row + + # with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + + # read newly scraped file + with open('{}/CHILE_SINCA/metadata/{}/network_provided/CHILE_SINCA_META_{}.json'.format(dl_root,version, today.strftime('%Y%m%d')), 'r', encoding='utf-8') as f: + json_metadata_now = json.loads(f.read()) + + # read standardised file to compare! + k=0 + m=0 + station_abolished=[] + station_new = [] + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + k=k+1 + station_abolished.append(json_metadata[station]['station_name']['values']) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + m=m+1 + station_new.append(json_metadata_now[station]['station_name']['values']) + json_metadata.update({station: json_metadata_now[station]}) + + print('{} stations were abolished'.format(k)) + print('Abolished stations: {}'.format(station_abolished)) + print('{} new stations '.format(m)) + print('New stations: {}'.format(station_new)) + + # safe + with open('{}/CHILE_SINCA/metadata/{}/processed/CHILE_SINCA_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) \ No newline at end of file diff --git a/download_scripts/CNEMC_download.py b/download_scripts/CNEMC_download.py new file mode 100644 index 0000000000000000000000000000000000000000..6e3590ea51d5c320cda05a9d82dd4cab262a769a --- /dev/null +++ b/download_scripts/CNEMC_download.py @@ -0,0 +1,129 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'https://quotsoft.net/air/data' + + if mode == 'all': + bdate = date(2014, 5, 1) # date before record starts + edate = date.today() + + os.makedirs('{}/CNEMC/original_files/{}/sites/'.format(dl_root, version), exist_ok=True) + os.makedirs('{}/CNEMC/original_files/{}/cities/'.format(dl_root, version), exist_ok=True) + + download_location = dl_root+'/CNEMC/original_files/'+version+'/{}/{}.csv' + + elif mode == 'nrt': + bdate = start # if code is run after 2 am, data from previous day will be available + edate = stop + os.makedirs('{}/CNEMC/original_files/nrt/sites/'.format(dl_root), exist_ok=True) + os.makedirs('{}/CNEMC/original_files/nrt/cities/'.format(dl_root), exist_ok=True) + + download_location = dl_root+'/CNEMC/original_files/nrt/{}/{}.csv' + + else: + print('time mode inapplicable') + + + # create date array, daily; format to YYYYMMDD + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + dates = pd.date_range(bdate, edate, freq='d').strftime('%Y%m%d').tolist() + print(dates) + + # download + for day in dates: + + url = '{}/china_sites_{}.csv'.format(base_url, day) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location.format('sites', day), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, download_location.format('sites', day)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + url = '{}/china_cities_{}.csv'.format(base_url, day) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format('cities', day), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, download_location.format('cities', day)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + time.sleep(1) + + """ + # reorganize files per component + components = ['AQI', 'PM2.5', 'PM2.5_24h', 'PM10', 'PM10_24h','SO2', 'SO2_24h', 'NO2', 'NO2_24h','O3', 'O3_24h', 'O3_8h', 'O3_8h_24h', 'CO', 'CO_24h'] + + if mode == "nrt": + for component in components: + # sites + og_file = pd.read_csv(download_location.format('sites', day)) + comp = og_file[og_file["type"] == component] + + output_path = download_location.format('sites', component+"_{}".format(dates[0][0:4])) + comp.to_csv(output_path, mode='a', header=not os.path.exists(output_path), index=False) + + # check if there is data doubled + new_file = pd.read_csv(output_path).drop_duplicates() + new_file.to_csv(output_path, index=False) + + + # cities + og_file = pd.read_csv(download_location.format('cities', day)) + comp = og_file[og_file["type"] == component] + + output_path = download_location.format('cities', component+"_{}".format(dates[0][0:4])) + comp.to_csv(output_path, mode='a', header=not os.path.exists(output_path), index=False) + + # check if there is data doubled + new_file = pd.read_csv(output_path).drop_duplicates() + new_file.to_csv(output_path, index=False) + + + # delete original files + os.remove(download_location.format('sites', day)) + os.remove(download_location.format('cities', day))""" diff --git a/download_scripts/EANET_download.py b/download_scripts/EANET_download.py new file mode 100644 index 0000000000000000000000000000000000000000..f6fa260376cd49ad6eb7d218e4281a3b499d510e --- /dev/null +++ b/download_scripts/EANET_download.py @@ -0,0 +1,232 @@ +from selenium import webdriver +from bs4 import BeautifulSoup +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +import requests +import time +from datetime import date +from datetime import timedelta +import zipfile + +import os.path +import os +import pandas as pd +import csv +import json + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + url = 'https://monitoring.eanet.asia/document/menu/index#publicData' + today = date.today().strftime('%Y%m%d') #+ timedelta(days = 1)).strftime('%Y%m%d') # problem with timezones??? + + if mode == 'all': + bdate = date(1980, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + + os.makedirs('{}/EANET/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = "{}/EANET/original_files/{}/".format(dl_root, version) + + + elif mode == 'nrt': + print("EANET no nrt") + exit() + + else: + print('time mode inapplicable') + exit() + + + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + driver.get(url) + time.sleep(max_time_per_dl) + + # login + email = driver.find_element(By.ID, "email") + email.send_keys("raphael.grodofzig@bsc.es") + passwd = driver.find_element(By.ID, "passwd") + passwd.send_keys("274s9QZ5") + time.sleep(max_time_per_dl) + driver.find_element(By.NAME, "submitBtn").click() + + time.sleep(max_time_per_dl) + + # find countries + dropdown_element = driver.find_element(By.ID, 'countryCd') + select = Select(dropdown_element) + countries = [] + COUNTRIES = [] + for country in select.options: + if country.text == "-": + pass + else: + countries.append(str(country.text)) + + if country.text == "Korea, Republic of": + COUNTRIES.append("SOUTH_KOREA") + elif country.text == "Lao People's Democratic Republic": + COUNTRIES.append("LAOS") + elif country.text == "Viet Nam": + COUNTRIES.append("VIETNAM") + else: + COUNTRIES.append(str(country.text).upper()) + + print(countries) + print(COUNTRIES) + + #countries = ["Cambodia", "China"] + #COUNTRIES = ["CAMBODIA", "CHINA"] + + # download + i=0 + for country in countries: + # create download directory + os.makedirs(download_location+COUNTRIES[i]+'/', exist_ok=True) + + dropdown_element = driver.find_element(By.ID, 'countryCd') + select = Select(dropdown_element) + select.select_by_visible_text(country) + + print("successfully selected {}".format(country)) + + # start download + driver.find_element(By.CSS_SELECTOR, "input[id='downloadBtn'][type='button']").click() + + # wait until download finished + while not os.path.exists("{}/detail_{}.zip".format(download_location+COUNTRIES[i], today)): + time.sleep(1) + + if os.path.isfile("{}/detail_{}.zip".format(download_location, today)): + print('{} download successful'.format(country)) + + # move to country directory + os.rename("{}/detail_{}.zip".format(download_location, today), "{}/detail_{}.zip".format(download_location+COUNTRIES[i], today)) + + # unzip + with zipfile.ZipFile("{}/detail_{}.zip".format(download_location+COUNTRIES[i], today), 'r') as zip_ref: + zip_ref.extractall(os.path.dirname("{}/detail_{}.zip".format(download_location+COUNTRIES[i], today))) + + + os.remove("{}/detail_{}.zip".format(download_location+COUNTRIES[i], today)) + + i=i+1 + + driver.close() + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'https://www.eanet.asia/wp-content/uploads/2024/01/Site_Information_Acid_Deposition_Monitoring_NMP2023_1117.xlsm' + download_location = dl_root+"/EANET/metadata/"+version+"/network_provided/EANET_META_{}.xlsm" + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + n_tries = 0 + errcode = 999 + today = date.today() + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url_metadata, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location.format(today.strftime('%Y%m%d')), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded metadata') + errcode = r.status_code + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 # increase waiting time + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + #convert to csv + metadata = pd.read_excel(download_location.format(today.strftime('%Y%m%d'))).fillna('') + metadata.to_csv('{}/EANET/metadata/{}/network_provided/EANET_META_{}.csv'.format(dl_root, version, today.strftime('%Y%m%d')), index=None) + os.remove(download_location.format(today.strftime('%Y%m%d'))) + + """ + # create json from original metadata file + json_metadata = {} + with open('{}/EANET/metadata/{}/network_provided/EANET_META_{}.csv'.format(dl_root, version, today.strftime('%Y%m%d')), 'r', encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['Code'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/EANET/metadata/{}/processed/EANET_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + # create json in desired shape from current metadata file + json_metadata_now = {} + with open('{}/EANET/metadata/{}/network_provided/EANET_META_{}.csv'.format(dl_root, version, today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['Code'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/EANET/metadata/{}/processed/EANET_META.json'.format(dl_root, version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station].keys(): # check if column of csv exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('{} not in new metadata file'.format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + for parameter in json_metadata_now[station]: # loop through all the parameters + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + # is there a new parameter that wasn't in the old file? + if parameter in json_metadata[station].keys(): + pass # parameter (column) is already there + else: + print('{} is new'.format(parameter)) + json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + + # safe + with open('{}/EANET/metadata/{}/processed/EANET_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/EBAS_doilist.txt b/download_scripts/EBAS_doilist.txt new file mode 100644 index 0000000000000000000000000000000000000000..5062d7bbc474b2c75573cb0719c0c2288167c1e3 --- /dev/null +++ b/download_scripts/EBAS_doilist.txt @@ -0,0 +1,16985 @@ +https://doi.org/10.48597/XQWK-FUW7 +https://doi.org/10.48597/RT3Z-WXXG +https://doi.org/10.48597/XQ6W-5B4R +https://doi.org/10.48597/NFMZ-YCEP +https://doi.org/10.48597/8D5J-DHSG +https://doi.org/10.48597/MXJY-YQ8T +https://doi.org/10.48597/VC5V-7J7B +https://doi.org/10.48597/BSH6-7EWM +https://doi.org/10.48597/ZKK3-ZBCF +https://doi.org/10.48597/BA9Y-GC5N +https://doi.org/10.48597/SSHR-GA6Y +https://doi.org/10.48597/W3M5-49F2 +https://doi.org/10.48597/3T2N-T3HK +https://doi.org/10.48597/KGHP-HG8D +https://doi.org/10.48597/52AC-E5RR +https://doi.org/10.48597/N6R8-2EFW +https://doi.org/10.48597/BGME-YVQJ +https://doi.org/10.48597/U6GS-QRE4 +https://doi.org/10.48597/WK5E-3BH7 +https://doi.org/10.48597/E4MA-BH5T +https://doi.org/10.48597/8XAS-FVX9 +https://doi.org/10.48597/9X7G-9J9G +https://doi.org/10.48597/ETPT-RAQV +https://doi.org/10.48597/SF65-SSR5 +https://doi.org/10.48597/NXY9-Y8R7 +https://doi.org/10.48597/ARSG-RQQX +https://doi.org/10.48597/3RGV-MGMP +https://doi.org/10.48597/6ABX-NR2P +https://doi.org/10.48597/PXC3-74JP +https://doi.org/10.48597/DXWA-P3JZ +https://doi.org/10.48597/P2Q4-NGDV +https://doi.org/10.48597/KPZ2-N9VM +https://doi.org/10.48597/EV7S-M3ED +https://doi.org/10.48597/PNPG-6688 +https://doi.org/10.48597/65J9-TQZE +https://doi.org/10.48597/ZC6M-28GV +https://doi.org/10.48597/Y52S-55WR +https://doi.org/10.48597/QYP9-TQG4 +https://doi.org/10.48597/KZHC-QJ9D +https://doi.org/10.48597/RCAX-EPTS +https://doi.org/10.48597/Z9UX-QUFQ +https://doi.org/10.48597/RPVJ-YE7B +https://doi.org/10.48597/JEGJ-QNNU +https://doi.org/10.48597/WE5J-PQAN +https://doi.org/10.48597/FFTK-BNJS +https://doi.org/10.48597/9U95-6QHU +https://doi.org/10.48597/YYZ4-9PRT +https://doi.org/10.48597/GNGT-MM5H +https://doi.org/10.48597/2DKF-7KD3 +https://doi.org/10.48597/NPS5-YQ6Q +https://doi.org/10.48597/65DW-36A4 +https://doi.org/10.48597/T2UQ-BP94 +https://doi.org/10.48597/RGSZ-SJ33 +https://doi.org/10.48597/G2BQ-K9CC +https://doi.org/10.48597/JU4S-82WB +https://doi.org/10.48597/B2HD-JJRN +https://doi.org/10.48597/FNDN-X4N7 +https://doi.org/10.48597/Y2S5-BP9F +https://doi.org/10.48597/Y6FB-8WQ5 +https://doi.org/10.48597/UBTR-EXK9 +https://doi.org/10.48597/TZNH-AT9K +https://doi.org/10.48597/6PEY-82ZF +https://doi.org/10.48597/T34M-8DFD +https://doi.org/10.48597/YJQK-ZRQM +https://doi.org/10.48597/3UYR-FJUB +https://doi.org/10.48597/HY3B-J79F +https://doi.org/10.48597/MB5H-NEC5 +https://doi.org/10.48597/7MJ4-WA3B +https://doi.org/10.48597/BY5V-PKRR +https://doi.org/10.48597/E594-43FQ +https://doi.org/10.48597/TY99-ZMX5 +https://doi.org/10.48597/6MKK-HHWW +https://doi.org/10.48597/CKCM-P3B4 +https://doi.org/10.48597/KX4G-Y2PA +https://doi.org/10.48597/62MQ-F8D5 +https://doi.org/10.48597/VD53-2B43 +https://doi.org/10.48597/5D7Y-4B68 +https://doi.org/10.48597/JBPE-37YP +https://doi.org/10.48597/JDKC-4DZ8 +https://doi.org/10.48597/H9UB-CMEB +https://doi.org/10.48597/S7S6-RTGV +https://doi.org/10.48597/WFUQ-3GJW +https://doi.org/10.48597/8DC4-666F +https://doi.org/10.48597/9TBY-JY87 +https://doi.org/10.48597/DCHM-G3EH +https://doi.org/10.48597/5TE3-6NZV +https://doi.org/10.48597/PT7Q-ZS9M +https://doi.org/10.48597/JYFS-NRB2 +https://doi.org/10.48597/SZ8N-TXX4 +https://doi.org/10.48597/NTTT-4KB3 +https://doi.org/10.48597/ZFD6-9QQX +https://doi.org/10.48597/KS5J-Q4Y9 +https://doi.org/10.48597/6AQT-N4RF +https://doi.org/10.48597/87B9-AAAY +https://doi.org/10.48597/ZNKS-7PVJ +https://doi.org/10.48597/5X2E-VS23 +https://doi.org/10.48597/7TWH-K5K8 +https://doi.org/10.48597/S5BV-AG6M +https://doi.org/10.48597/RYRM-MMNX +https://doi.org/10.48597/3KF5-XG8V +https://doi.org/10.48597/25BS-6NUM +https://doi.org/10.48597/RAAD-466E +https://doi.org/10.48597/8ADU-DMFA +https://doi.org/10.48597/YBXC-SX26 +https://doi.org/10.48597/ACRB-XYYG +https://doi.org/10.48597/U6S5-4HA2 +https://doi.org/10.48597/MMQH-5K4A +https://doi.org/10.48597/4XXV-KX7N +https://doi.org/10.48597/C34R-VU3X +https://doi.org/10.48597/TNHZ-25R2 +https://doi.org/10.48597/ZTUB-YT4B +https://doi.org/10.48597/ZBJD-E4RR +https://doi.org/10.48597/A9V3-HKRR +https://doi.org/10.48597/NEVG-HMSY +https://doi.org/10.48597/T9RT-UQR3 +https://doi.org/10.48597/RNB3-W88M +https://doi.org/10.48597/M6QD-EQKQ +https://doi.org/10.48597/Q3XK-SQZ4 +https://doi.org/10.48597/URSV-U93R +https://doi.org/10.48597/7BN7-WDQS +https://doi.org/10.48597/5CKW-RKSC +https://doi.org/10.48597/FZ9V-C8MK +https://doi.org/10.48597/EJ56-WNBF +https://doi.org/10.48597/USP2-3Z2N +https://doi.org/10.48597/5UQC-MHTZ +https://doi.org/10.48597/C4XD-9F32 +https://doi.org/10.48597/6JHC-F4UK +https://doi.org/10.48597/3N84-KYE2 +https://doi.org/10.48597/C8TJ-YE8J +https://doi.org/10.48597/5KSJ-SDXS +https://doi.org/10.48597/CPSZ-J6SK +https://doi.org/10.48597/A3DC-SHB7 +https://doi.org/10.48597/3NY3-HMW2 +https://doi.org/10.48597/K54Y-P45P +https://doi.org/10.48597/HJPY-E295 +https://doi.org/10.48597/XB7B-M43N +https://doi.org/10.48597/EAJE-46W7 +https://doi.org/10.48597/KRDG-2ZX8 +https://doi.org/10.48597/5BK2-TWMH +https://doi.org/10.48597/RTPZ-FTHU +https://doi.org/10.48597/6WPY-84DY +https://doi.org/10.48597/4GZV-4VN5 +https://doi.org/10.48597/2TH8-48KM +https://doi.org/10.48597/8NGU-6Z2Y +https://doi.org/10.48597/5YRB-Y59Y +https://doi.org/10.48597/HG3D-86BU +https://doi.org/10.48597/8GVX-NBJ5 +https://doi.org/10.48597/JPCE-PM4E +https://doi.org/10.48597/KZX9-V6X7 +https://doi.org/10.48597/GR3Y-HCB7 +https://doi.org/10.48597/USMV-YPAA +https://doi.org/10.48597/XXSX-XKTE +https://doi.org/10.48597/GZFP-686K +https://doi.org/10.48597/5FPD-35U8 +https://doi.org/10.48597/2E4J-FB68 +https://doi.org/10.48597/YHHP-83DG +https://doi.org/10.48597/MJZ7-VNZ9 +https://doi.org/10.48597/6C8K-U2A2 +https://doi.org/10.48597/4BZW-WZQZ +https://doi.org/10.48597/DN66-TJEF +https://doi.org/10.48597/528S-FP73 +https://doi.org/10.48597/PEUC-E2HG +https://doi.org/10.48597/HZE9-UAKM +https://doi.org/10.48597/VDJH-RNYD +https://doi.org/10.48597/WZ6F-MJQZ +https://doi.org/10.48597/F9F5-X8FR +https://doi.org/10.48597/RFVS-CWSR +https://doi.org/10.48597/685Z-74JM +https://doi.org/10.48597/NH2D-UC2X +https://doi.org/10.48597/FFGQ-93N5 +https://doi.org/10.48597/E8XP-J6UJ +https://doi.org/10.48597/WEE3-KFU6 +https://doi.org/10.48597/HFMQ-7NCQ +https://doi.org/10.48597/XNZT-TY8U +https://doi.org/10.48597/H3E2-E47R +https://doi.org/10.48597/KR72-7FKU +https://doi.org/10.48597/CK8P-AJXU +https://doi.org/10.48597/BTWF-66Z9 +https://doi.org/10.48597/FMGF-3QGE +https://doi.org/10.48597/ZCS4-YKAR +https://doi.org/10.48597/KHYQ-T23T +https://doi.org/10.48597/U27W-UKEF +https://doi.org/10.48597/7956-PKRC +https://doi.org/10.48597/E6NB-YHWJ +https://doi.org/10.48597/J8C9-8WWT +https://doi.org/10.48597/X5CE-M53M +https://doi.org/10.48597/7F53-XSJA +https://doi.org/10.48597/3UZH-MVNM +https://doi.org/10.48597/QPXF-KR7N +https://doi.org/10.48597/XHXE-8ZP7 +https://doi.org/10.48597/CE6J-MQVN +https://doi.org/10.48597/KUXM-V9NS +https://doi.org/10.48597/Y7C9-AQRF +https://doi.org/10.48597/BH6Q-D66T +https://doi.org/10.48597/QCFB-BMRQ +https://doi.org/10.48597/EZ48-6N85 +https://doi.org/10.48597/PE8Q-7TM5 +https://doi.org/10.48597/VUB9-MBPC +https://doi.org/10.48597/E2FA-UP8J +https://doi.org/10.48597/GM6M-DC4G +https://doi.org/10.48597/ZJUT-QUE6 +https://doi.org/10.48597/8CRF-4NST +https://doi.org/10.48597/W7G2-EE8K +https://doi.org/10.48597/MXAF-KW43 +https://doi.org/10.48597/7NFD-N3FN +https://doi.org/10.48597/FCHD-RE82 +https://doi.org/10.48597/V5JN-4BT8 +https://doi.org/10.48597/XVSZ-HXV5 +https://doi.org/10.48597/FCV7-FGQ7 +https://doi.org/10.48597/2VJM-MT7V +https://doi.org/10.48597/UQQQ-W3P7 +https://doi.org/10.48597/GSZ5-9UTD +https://doi.org/10.48597/VVAT-XG7D +https://doi.org/10.48597/VPDA-NV78 +https://doi.org/10.48597/F7UZ-FPWV +https://doi.org/10.48597/PZQS-99BP +https://doi.org/10.48597/3QE5-5MQA +https://doi.org/10.48597/954J-HS4X +https://doi.org/10.48597/EU8H-PGK2 +https://doi.org/10.48597/XYVF-KPV6 +https://doi.org/10.48597/6DKM-JAF8 +https://doi.org/10.48597/5HNA-2GDP +https://doi.org/10.48597/YT4B-BJZ2 +https://doi.org/10.48597/CCQD-A7TK +https://doi.org/10.48597/TUVA-5PFA +https://doi.org/10.48597/FRGK-7XJ3 +https://doi.org/10.48597/MMWZ-M3F8 +https://doi.org/10.48597/VBAE-S49B +https://doi.org/10.48597/D9V5-XZKJ +https://doi.org/10.48597/VXYW-DW79 +https://doi.org/10.48597/U42S-MVZB +https://doi.org/10.48597/W58D-A9CQ +https://doi.org/10.48597/NW4C-T54E +https://doi.org/10.48597/ANVW-2FB5 +https://doi.org/10.48597/7KDA-HQJZ +https://doi.org/10.48597/YB5Q-N4PE +https://doi.org/10.48597/9F4H-P5XV +https://doi.org/10.48597/ZAPP-37RK +https://doi.org/10.48597/H9MM-GJ7P +https://doi.org/10.48597/XQRV-AMNT +https://doi.org/10.48597/GX9C-R3SX +https://doi.org/10.48597/UMWH-UDKB +https://doi.org/10.48597/PJNP-TN3E +https://doi.org/10.48597/6DC8-7CW5 +https://doi.org/10.48597/VMQW-DY34 +https://doi.org/10.48597/XTW9-N3AS +https://doi.org/10.48597/AKT3-UVEH +https://doi.org/10.48597/U67P-AH55 +https://doi.org/10.48597/QKBC-Y8X2 +https://doi.org/10.48597/B7ZS-VBRE +https://doi.org/10.48597/74HM-H5Q3 +https://doi.org/10.48597/5UHA-VSUP +https://doi.org/10.48597/ZDXP-X23U +https://doi.org/10.48597/87TQ-ED42 +https://doi.org/10.48597/65AU-QYUE +https://doi.org/10.48597/W5PJ-FZ9X +https://doi.org/10.48597/TQMP-Y3CQ +https://doi.org/10.48597/H8WT-N2ZV +https://doi.org/10.48597/4AE5-WFNA +https://doi.org/10.48597/DB7A-FA7J +https://doi.org/10.48597/3VDK-7SRP +https://doi.org/10.48597/DQYE-34D4 +https://doi.org/10.48597/QQXB-XZ8H +https://doi.org/10.48597/44ZK-UXU8 +https://doi.org/10.48597/UW5M-JQTM +https://doi.org/10.48597/RYFP-FC7F +https://doi.org/10.48597/K4HW-36DN +https://doi.org/10.48597/5X8T-EZDZ +https://doi.org/10.48597/WDR5-PPK4 +https://doi.org/10.48597/YJPY-BQKU +https://doi.org/10.48597/W2H4-4JSX +https://doi.org/10.48597/6H4A-3TD6 +https://doi.org/10.48597/WUAF-8D9B +https://doi.org/10.48597/TMD7-3WCC +https://doi.org/10.48597/TZXM-5HD9 +https://doi.org/10.48597/ZDJY-37WS +https://doi.org/10.48597/WT4X-RP2N +https://doi.org/10.48597/DCGJ-3GRF +https://doi.org/10.48597/AFS4-NNNJ +https://doi.org/10.48597/KJ5X-WNH5 +https://doi.org/10.48597/HRH2-2UWE +https://doi.org/10.48597/YRQJ-723H +https://doi.org/10.48597/3DRR-DD5G +https://doi.org/10.48597/J7JT-R25P +https://doi.org/10.48597/KQDW-MXWR +https://doi.org/10.48597/E3MT-DKV9 +https://doi.org/10.48597/BQAF-CYMK +https://doi.org/10.48597/DNRU-NDAA +https://doi.org/10.48597/48RV-4CZW +https://doi.org/10.48597/4ZV3-YPD6 +https://doi.org/10.48597/TDDN-2FKV +https://doi.org/10.48597/M2C6-PV9Q +https://doi.org/10.48597/FKE4-G48H +https://doi.org/10.48597/FMQV-YVNF +https://doi.org/10.48597/2HZM-GBDV +https://doi.org/10.48597/TABK-FSCG +https://doi.org/10.48597/9K69-JM86 +https://doi.org/10.48597/MTRE-XT77 +https://doi.org/10.48597/9MAG-FX2R +https://doi.org/10.48597/SB2H-KHUW +https://doi.org/10.48597/XDVP-24RP +https://doi.org/10.48597/RB2Z-5DJ7 +https://doi.org/10.48597/8NYH-6GUR +https://doi.org/10.48597/P94N-RVYE +https://doi.org/10.48597/JHRJ-ZHK8 +https://doi.org/10.48597/VPP7-G2FT +https://doi.org/10.48597/EA24-ZMMP +https://doi.org/10.48597/HKZ7-6NWF +https://doi.org/10.48597/FMEQ-NW6Y +https://doi.org/10.48597/H6CT-FGKV +https://doi.org/10.48597/MF5G-EWDP +https://doi.org/10.48597/BGM2-Q4X2 +https://doi.org/10.48597/G52E-XRKH +https://doi.org/10.48597/8X75-24XG +https://doi.org/10.48597/H3US-CXCZ +https://doi.org/10.48597/7T9Y-5FXT +https://doi.org/10.48597/RA2J-GVQQ +https://doi.org/10.48597/VNRP-ZRXC +https://doi.org/10.48597/BXA7-DZKK +https://doi.org/10.48597/DBWU-KM3V +https://doi.org/10.48597/FGKS-J8AX +https://doi.org/10.48597/F4WB-9GMJ +https://doi.org/10.48597/P49E-RKUE +https://doi.org/10.48597/4JZ3-WNKY +https://doi.org/10.48597/NDE5-3Z4D +https://doi.org/10.48597/KGFY-PNE2 +https://doi.org/10.48597/FMEB-G3KJ +https://doi.org/10.48597/4YME-U3J3 +https://doi.org/10.48597/5WUN-GTPT +https://doi.org/10.48597/42SG-NAXG +https://doi.org/10.48597/P54C-HESD +https://doi.org/10.48597/QXFQ-THHK +https://doi.org/10.48597/7NE5-3T23 +https://doi.org/10.48597/36BT-DFCZ +https://doi.org/10.48597/8YX3-3MF8 +https://doi.org/10.48597/RRBV-RZNW +https://doi.org/10.48597/Q2VX-CXBK +https://doi.org/10.48597/27FQ-PNS7 +https://doi.org/10.48597/RXJU-S5YC +https://doi.org/10.48597/RMJR-PBBX +https://doi.org/10.48597/M769-P7ZZ +https://doi.org/10.48597/GSAQ-WVQ3 +https://doi.org/10.48597/UPV7-8C5C +https://doi.org/10.48597/MRK9-SFZX +https://doi.org/10.48597/HGNE-3E93 +https://doi.org/10.48597/V9NS-76PK +https://doi.org/10.48597/XWSP-VJJ5 +https://doi.org/10.48597/RYHD-NF3Z +https://doi.org/10.48597/FUSB-XY9E +https://doi.org/10.48597/9VE2-PE97 +https://doi.org/10.48597/WS9A-BQGW +https://doi.org/10.48597/8MG3-YVCA +https://doi.org/10.48597/NYQ5-CZTE +https://doi.org/10.48597/DN5T-5YEX +https://doi.org/10.48597/J2AE-NGA7 +https://doi.org/10.48597/QVYN-E64U +https://doi.org/10.48597/WMEG-BNXE +https://doi.org/10.48597/QXKM-RKNP +https://doi.org/10.48597/5TTZ-MHZ5 +https://doi.org/10.48597/AHVG-UKKX +https://doi.org/10.48597/AFYH-HD4J +https://doi.org/10.48597/AEW6-7SDF +https://doi.org/10.48597/NVWY-A8WJ +https://doi.org/10.48597/VE8X-2TGQ +https://doi.org/10.48597/CEKW-2RPF +https://doi.org/10.48597/7DDQ-W4E4 +https://doi.org/10.48597/GHWZ-F78T +https://doi.org/10.48597/VQX4-5DX3 +https://doi.org/10.48597/APGM-Q2PR +https://doi.org/10.48597/PRGA-J3AW +https://doi.org/10.48597/XPXC-GAEC +https://doi.org/10.48597/RJYD-YSAQ +https://doi.org/10.48597/NDSG-F3AK +https://doi.org/10.48597/5P38-RHRJ +https://doi.org/10.48597/FRNF-X8UR +https://doi.org/10.48597/XWUD-SSMY +https://doi.org/10.48597/FFRU-QHA8 +https://doi.org/10.48597/D98J-69RB +https://doi.org/10.48597/XY3A-REBQ +https://doi.org/10.48597/5NX8-W9HG +https://doi.org/10.48597/XY5Q-K99B +https://doi.org/10.48597/ZQY3-CRQ7 +https://doi.org/10.48597/NQBW-AQTN +https://doi.org/10.48597/WJ3K-E25M +https://doi.org/10.48597/HHZQ-2Y6W +https://doi.org/10.48597/M7TU-9695 +https://doi.org/10.48597/UGYU-NCFJ +https://doi.org/10.48597/58XE-T5NF +https://doi.org/10.48597/66QN-PNYG +https://doi.org/10.48597/7DQE-BVRM +https://doi.org/10.48597/TYV8-CVMF +https://doi.org/10.48597/N5PG-7TGV +https://doi.org/10.48597/Z2JQ-E3JJ +https://doi.org/10.48597/UBCQ-QVMU +https://doi.org/10.48597/QR4N-2VY7 +https://doi.org/10.48597/TJY6-Y6FE +https://doi.org/10.48597/S2T2-GE6A +https://doi.org/10.48597/6Q7V-Z72B +https://doi.org/10.48597/A4RZ-9MRS +https://doi.org/10.48597/JV9E-CH5B +https://doi.org/10.48597/CHNE-VS8U +https://doi.org/10.48597/3WQ2-HF79 +https://doi.org/10.48597/Q9S3-RWDW +https://doi.org/10.48597/KWKP-AKG2 +https://doi.org/10.48597/HWN5-843F +https://doi.org/10.48597/2J7G-SCHA +https://doi.org/10.48597/92TJ-MTXD +https://doi.org/10.48597/UDJ4-BACZ +https://doi.org/10.48597/3T8T-MUVR +https://doi.org/10.48597/4MRS-7GFQ +https://doi.org/10.48597/64H9-9BH4 +https://doi.org/10.48597/NAE2-6NH9 +https://doi.org/10.48597/T2YD-BSEQ +https://doi.org/10.48597/4EAV-6F3F +https://doi.org/10.48597/B69Z-7QAA +https://doi.org/10.48597/RYKN-8TKZ +https://doi.org/10.48597/FNCP-NHH4 +https://doi.org/10.48597/2K3W-YZTX +https://doi.org/10.48597/XZB3-E849 +https://doi.org/10.48597/SWMX-GZ22 +https://doi.org/10.48597/CMKZ-GBPH +https://doi.org/10.48597/YGA9-JP7V +https://doi.org/10.48597/PCRN-S3DD +https://doi.org/10.48597/5CQ8-MYG7 +https://doi.org/10.48597/FQ8P-B7MY +https://doi.org/10.48597/C9YZ-TUPQ +https://doi.org/10.48597/R222-HMTR +https://doi.org/10.48597/U5U6-GRYU +https://doi.org/10.48597/4QZN-J8FF +https://doi.org/10.48597/2Q8C-BHSQ +https://doi.org/10.48597/NC5D-6GFP +https://doi.org/10.48597/ZYDX-GGNA +https://doi.org/10.48597/RY7G-S384 +https://doi.org/10.48597/WW32-TZBH +https://doi.org/10.48597/WGN7-M4Z4 +https://doi.org/10.48597/MKN2-JF5R +https://doi.org/10.48597/YG76-RG52 +https://doi.org/10.48597/Z83G-YMCY +https://doi.org/10.48597/BW3C-95U9 +https://doi.org/10.48597/2W4X-JN4U +https://doi.org/10.48597/46EF-2B2Z +https://doi.org/10.48597/BKQV-WJYH +https://doi.org/10.48597/4K6A-JKUM +https://doi.org/10.48597/N885-J5P6 +https://doi.org/10.48597/DPPC-YTHP +https://doi.org/10.48597/98P7-4PPM +https://doi.org/10.48597/WSRR-3TY9 +https://doi.org/10.48597/RPWT-B5R6 +https://doi.org/10.48597/K5S4-FG9T +https://doi.org/10.48597/D64C-G57Q +https://doi.org/10.48597/GK8R-EK3H +https://doi.org/10.48597/FNSS-5RAR +https://doi.org/10.48597/TCSG-B6K4 +https://doi.org/10.48597/TV8Z-EMZH +https://doi.org/10.48597/K47J-2HDA +https://doi.org/10.48597/97JV-UPTA +https://doi.org/10.48597/665B-X6RH +https://doi.org/10.48597/4HDH-J9VD +https://doi.org/10.48597/YMS6-YVV5 +https://doi.org/10.48597/WUDG-GHMH +https://doi.org/10.48597/3PCG-3J29 +https://doi.org/10.48597/FUJ3-CWET +https://doi.org/10.48597/ZF95-QDXE +https://doi.org/10.48597/6FN6-HNB2 +https://doi.org/10.48597/B2GV-MMF2 +https://doi.org/10.48597/FRBA-WNDQ +https://doi.org/10.48597/MCER-2WVJ +https://doi.org/10.48597/K5N9-JDQE +https://doi.org/10.48597/C29J-2X82 +https://doi.org/10.48597/FSWD-VKFH +https://doi.org/10.48597/JT9Q-B4QA +https://doi.org/10.48597/XF72-UWWN +https://doi.org/10.48597/8RBW-6V73 +https://doi.org/10.48597/27KW-7Z5U +https://doi.org/10.48597/FY3P-9UJD +https://doi.org/10.48597/HAGY-B9HZ +https://doi.org/10.48597/8WCP-CEM6 +https://doi.org/10.48597/U3AP-8ACE +https://doi.org/10.48597/8UC6-8ZP4 +https://doi.org/10.48597/GC82-YF2U +https://doi.org/10.48597/KZWD-EJYA +https://doi.org/10.48597/TCBW-DNE9 +https://doi.org/10.48597/3AYN-6NSB +https://doi.org/10.48597/H36C-7SZ3 +https://doi.org/10.48597/7NW6-WDY6 +https://doi.org/10.48597/MRSV-BMUU +https://doi.org/10.48597/SSUN-9WS8 +https://doi.org/10.48597/22MS-978R +https://doi.org/10.48597/KJNH-VTKW +https://doi.org/10.48597/GTR4-U3P9 +https://doi.org/10.48597/8TGR-UDFE +https://doi.org/10.48597/3ZZE-KDSF +https://doi.org/10.48597/R73H-WXU4 +https://doi.org/10.48597/YTPH-YU2R +https://doi.org/10.48597/HNEW-EUFK +https://doi.org/10.48597/T57A-VY8V +https://doi.org/10.48597/A76Z-RPDT +https://doi.org/10.48597/K42F-4AQJ +https://doi.org/10.48597/R3KJ-W66B +https://doi.org/10.48597/58JQ-SFQX +https://doi.org/10.48597/GR38-TKZM +https://doi.org/10.48597/A8JD-MDKN +https://doi.org/10.48597/UP3Q-EVPD +https://doi.org/10.48597/AHS6-GFQ9 +https://doi.org/10.48597/GEFE-GDD4 +https://doi.org/10.48597/SUFK-TVN6 +https://doi.org/10.48597/D2UJ-ZTDD +https://doi.org/10.48597/NJWE-C6ZW +https://doi.org/10.48597/PH6S-A9JX +https://doi.org/10.48597/T62F-NHR8 +https://doi.org/10.48597/8E4F-MCY7 +https://doi.org/10.48597/EF5G-32HN +https://doi.org/10.48597/A7GB-KUHJ +https://doi.org/10.48597/WSNF-37XE +https://doi.org/10.48597/9YJT-YX2J +https://doi.org/10.48597/J5JD-HEHJ +https://doi.org/10.48597/BN69-UDSK +https://doi.org/10.48597/NP8E-XD62 +https://doi.org/10.48597/3Q93-PT4F +https://doi.org/10.48597/EH9B-9B67 +https://doi.org/10.48597/YUTH-K7BX +https://doi.org/10.48597/D6FR-ZY8A +https://doi.org/10.48597/PGSV-JU4A +https://doi.org/10.48597/CVP4-PSSB +https://doi.org/10.48597/QEZG-ZXUP +https://doi.org/10.48597/UT3E-CNM4 +https://doi.org/10.48597/HPJY-QDVC +https://doi.org/10.48597/DKXK-BQNH +https://doi.org/10.48597/KY8A-H25X +https://doi.org/10.48597/PYKH-MKH7 +https://doi.org/10.48597/3ZWZ-ESZB +https://doi.org/10.48597/6Z9C-SQUU +https://doi.org/10.48597/8SW3-F363 +https://doi.org/10.48597/PHTH-P2YX +https://doi.org/10.48597/UB9P-57T8 +https://doi.org/10.48597/NYAT-KRAY +https://doi.org/10.48597/2ZMK-95CZ +https://doi.org/10.48597/SHA3-RYRT +https://doi.org/10.48597/G7PF-GVZT +https://doi.org/10.48597/ZECQ-YYBJ +https://doi.org/10.48597/UBRJ-WFXZ +https://doi.org/10.48597/RC37-5AFH +https://doi.org/10.48597/4F5X-UPSN +https://doi.org/10.48597/UQCV-2DZR +https://doi.org/10.48597/MXDP-77AH +https://doi.org/10.48597/P6YQ-N7CF +https://doi.org/10.48597/XFEQ-NPUY +https://doi.org/10.48597/6GDJ-C2KA +https://doi.org/10.48597/PDRV-WJFT +https://doi.org/10.48597/W36A-C3QZ +https://doi.org/10.48597/Y22R-ZQUW +https://doi.org/10.48597/V4U5-8U4U +https://doi.org/10.48597/ACTF-FQB2 +https://doi.org/10.48597/KNA6-87D4 +https://doi.org/10.48597/SGUS-M6X2 +https://doi.org/10.48597/CSAE-62TW +https://doi.org/10.48597/7JVP-EF26 +https://doi.org/10.48597/Z8H8-Y2J4 +https://doi.org/10.48597/H26M-58PQ +https://doi.org/10.48597/K3C5-UJAW +https://doi.org/10.48597/CN45-D7ES +https://doi.org/10.48597/8NAM-DQS7 +https://doi.org/10.48597/B4JZ-2SJP +https://doi.org/10.48597/MQTY-YSHV +https://doi.org/10.48597/5R6Y-AXDH +https://doi.org/10.48597/EY8W-4CNP +https://doi.org/10.48597/E5VE-WA5F +https://doi.org/10.48597/TH5X-BTWJ +https://doi.org/10.48597/SP2K-DGGH +https://doi.org/10.48597/7YZQ-R484 +https://doi.org/10.48597/ZQG3-VSYK +https://doi.org/10.48597/AN7K-BM75 +https://doi.org/10.48597/FHMS-NVE8 +https://doi.org/10.48597/QEHF-C54A +https://doi.org/10.48597/255A-84N7 +https://doi.org/10.48597/772B-8AJ2 +https://doi.org/10.48597/7K46-PHW9 +https://doi.org/10.48597/UDQJ-EW8B +https://doi.org/10.48597/4YW7-5YQU +https://doi.org/10.48597/WHJM-YUYW +https://doi.org/10.48597/2TMU-GCUK +https://doi.org/10.48597/73HY-EARF +https://doi.org/10.48597/FZVG-GE8C +https://doi.org/10.48597/8HME-2VJF +https://doi.org/10.48597/24AC-ECVN +https://doi.org/10.48597/TVMK-ACE6 +https://doi.org/10.48597/5DVU-DD83 +https://doi.org/10.48597/ZPA4-228K +https://doi.org/10.48597/YT4X-TJ9M +https://doi.org/10.48597/A9JT-PSTF +https://doi.org/10.48597/NT98-EPY2 +https://doi.org/10.48597/BKNJ-AXFH +https://doi.org/10.48597/42UY-N2X8 +https://doi.org/10.48597/NHCQ-NYC7 +https://doi.org/10.48597/XJ5K-B3N8 +https://doi.org/10.48597/KRZM-NZ4Z +https://doi.org/10.48597/A728-B77A +https://doi.org/10.48597/F9QJ-CRVN +https://doi.org/10.48597/7YC2-XMHF +https://doi.org/10.48597/RGMG-9SAR +https://doi.org/10.48597/Z2Z6-7QAT +https://doi.org/10.48597/WHTX-SPAS +https://doi.org/10.48597/PGGN-DED7 +https://doi.org/10.48597/T7D4-F28F +https://doi.org/10.48597/A3HD-H7SN +https://doi.org/10.48597/8FSS-6K6C +https://doi.org/10.48597/6KBR-J2E5 +https://doi.org/10.48597/ZG82-YAZ8 +https://doi.org/10.48597/DXQJ-TFU6 +https://doi.org/10.48597/KE6U-VR9G +https://doi.org/10.48597/NADR-YT8C +https://doi.org/10.48597/CJ48-F9TE +https://doi.org/10.48597/SFF3-4X7G +https://doi.org/10.48597/YMCT-AMER +https://doi.org/10.48597/959W-F4GF +https://doi.org/10.48597/3P7R-BQYJ +https://doi.org/10.48597/EH7M-ZG68 +https://doi.org/10.48597/32HM-UHWE +https://doi.org/10.48597/BD6M-HWFS +https://doi.org/10.48597/G5D2-7NZ4 +https://doi.org/10.48597/Q3TZ-X5XK +https://doi.org/10.48597/G8EY-SDWX +https://doi.org/10.48597/NB5V-NQYQ +https://doi.org/10.48597/3NU3-7M5T +https://doi.org/10.48597/QF3Y-J9SR +https://doi.org/10.48597/EFRN-6FK6 +https://doi.org/10.48597/R5T2-95T4 +https://doi.org/10.48597/8WTQ-9ZXP +https://doi.org/10.48597/DZ4K-DDXB +https://doi.org/10.48597/HNK4-24Z9 +https://doi.org/10.48597/DGS4-8ZWN +https://doi.org/10.48597/BJ4B-AKJ8 +https://doi.org/10.48597/EM6A-9W5Z +https://doi.org/10.48597/U3ME-MGEZ +https://doi.org/10.48597/7SXM-3WC2 +https://doi.org/10.48597/QH7Q-XP8D +https://doi.org/10.48597/TW7J-UJ4J +https://doi.org/10.48597/TS4B-65W9 +https://doi.org/10.48597/ZDBN-E572 +https://doi.org/10.48597/U6F4-KZV5 +https://doi.org/10.48597/G38Q-ZPTG +https://doi.org/10.48597/KE76-5PKV +https://doi.org/10.48597/Z9AA-XM9K +https://doi.org/10.48597/D9ME-59FZ +https://doi.org/10.48597/G9BQ-NU3J +https://doi.org/10.48597/HT2F-HUA9 +https://doi.org/10.48597/2R4E-YDS5 +https://doi.org/10.48597/AJYY-P3X8 +https://doi.org/10.48597/3VCY-FFR4 +https://doi.org/10.48597/NK59-VAUG +https://doi.org/10.48597/YZ8E-2E9M +https://doi.org/10.48597/C777-5CGZ +https://doi.org/10.48597/GH6M-9U3G +https://doi.org/10.48597/E5VM-WFS6 +https://doi.org/10.48597/GJNG-4XPE +https://doi.org/10.48597/Z8GK-ZKPX +https://doi.org/10.48597/TAZC-2A9H +https://doi.org/10.48597/ZEC6-424Z +https://doi.org/10.48597/MDB2-64RZ +https://doi.org/10.48597/H3BS-WUV9 +https://doi.org/10.48597/2RCZ-Q7EX +https://doi.org/10.48597/NNRJ-D3EK +https://doi.org/10.48597/SWEM-QF2F +https://doi.org/10.48597/A6AU-JWN4 +https://doi.org/10.48597/RBEJ-WWMM +https://doi.org/10.48597/N8ME-3PEB +https://doi.org/10.48597/TMPA-KKUY +https://doi.org/10.48597/APG6-3UHZ +https://doi.org/10.48597/QXTN-E8CB +https://doi.org/10.48597/455K-K35V +https://doi.org/10.48597/9DCT-3B2V +https://doi.org/10.48597/CPN3-YVT8 +https://doi.org/10.48597/M2W8-6EJV +https://doi.org/10.48597/5SY4-ZVMJ +https://doi.org/10.48597/TGW7-GM4S +https://doi.org/10.48597/EK9Z-NCND +https://doi.org/10.48597/286N-RH9Y +https://doi.org/10.48597/9DSS-8S7V +https://doi.org/10.48597/WEVB-YPG4 +https://doi.org/10.48597/V6BS-JB7B +https://doi.org/10.48597/EWRT-CQU8 +https://doi.org/10.48597/5THV-FB2R +https://doi.org/10.48597/RBZE-WXGS +https://doi.org/10.48597/5VAD-VKHX +https://doi.org/10.48597/RW8N-246Q +https://doi.org/10.48597/28YM-BTVR +https://doi.org/10.48597/8588-M2E9 +https://doi.org/10.48597/H95E-FZYQ +https://doi.org/10.48597/Y24D-X3TV +https://doi.org/10.48597/6XAX-S4QF +https://doi.org/10.48597/JZZX-3WB3 +https://doi.org/10.48597/XUFJ-4WJH +https://doi.org/10.48597/W3MK-PT38 +https://doi.org/10.48597/XB3E-TP5T +https://doi.org/10.48597/APYY-QYZE +https://doi.org/10.48597/SKJT-FCJ6 +https://doi.org/10.48597/3A5X-35JG +https://doi.org/10.48597/XBQ5-99UG +https://doi.org/10.48597/HXSK-QTN8 +https://doi.org/10.48597/5KB8-J8VK +https://doi.org/10.48597/865F-9XD9 +https://doi.org/10.48597/CG6T-A6PF +https://doi.org/10.48597/PERA-2KRP +https://doi.org/10.48597/RF69-R4F5 +https://doi.org/10.48597/ENK3-698W +https://doi.org/10.48597/TYJ4-DR8Z +https://doi.org/10.48597/FMXP-ET8X +https://doi.org/10.48597/Y6HJ-HU3B +https://doi.org/10.48597/SYMY-MK5A +https://doi.org/10.48597/PDWH-WQNK +https://doi.org/10.48597/3XTP-ZHYU +https://doi.org/10.48597/MM5R-SW2X +https://doi.org/10.48597/Q8NE-JWHP +https://doi.org/10.48597/7TBV-ADTE +https://doi.org/10.48597/U2ZA-QMHG +https://doi.org/10.48597/NZJS-S9C2 +https://doi.org/10.48597/3MEP-6VVM +https://doi.org/10.48597/5KUB-NVM6 +https://doi.org/10.48597/99UJ-BP8Q +https://doi.org/10.48597/H8W5-ATGA +https://doi.org/10.48597/5JT9-VHHW +https://doi.org/10.48597/RW5Y-3UUH +https://doi.org/10.48597/7VR2-2USK +https://doi.org/10.48597/5K2B-EKPB +https://doi.org/10.48597/CYYP-HNER +https://doi.org/10.48597/N99R-KWA4 +https://doi.org/10.48597/36T8-9HBS +https://doi.org/10.48597/WCH8-878T +https://doi.org/10.48597/ZQXZ-8TR3 +https://doi.org/10.48597/FCMU-JBF8 +https://doi.org/10.48597/6T4T-V4QK +https://doi.org/10.48597/RKCP-PTZK +https://doi.org/10.48597/F5YF-N2K4 +https://doi.org/10.48597/ZZWV-3DT6 +https://doi.org/10.48597/9A7A-EU4U +https://doi.org/10.48597/Y7ZY-QND4 +https://doi.org/10.48597/SPW3-SJFD +https://doi.org/10.48597/R4TV-NC4V +https://doi.org/10.48597/BCD4-ET2J +https://doi.org/10.48597/D6ZA-8N7Q +https://doi.org/10.48597/9V64-JDBY +https://doi.org/10.48597/MQ2E-5F48 +https://doi.org/10.48597/6YRF-WABV +https://doi.org/10.48597/D5AA-X6BA +https://doi.org/10.48597/HUQ2-83FB +https://doi.org/10.48597/XEXH-9HY3 +https://doi.org/10.48597/YSUH-X6G7 +https://doi.org/10.48597/JZF9-KRSY +https://doi.org/10.48597/UD6E-TTY8 +https://doi.org/10.48597/RKQF-PFPV +https://doi.org/10.48597/4V82-MYX4 +https://doi.org/10.48597/3ZBP-VNE9 +https://doi.org/10.48597/SZRX-C2Q4 +https://doi.org/10.48597/BN4J-N5J7 +https://doi.org/10.48597/AGXV-N4MF +https://doi.org/10.48597/T85B-UXMF +https://doi.org/10.48597/PDJQ-ABWA +https://doi.org/10.48597/DANW-7Q5P +https://doi.org/10.48597/JXN2-CGJ3 +https://doi.org/10.48597/XQNP-6AN2 +https://doi.org/10.48597/6WM4-FGCN +https://doi.org/10.48597/PPC5-ATD6 +https://doi.org/10.48597/T7QR-JKEN +https://doi.org/10.48597/RNFP-SHNR +https://doi.org/10.48597/WHGF-QH49 +https://doi.org/10.48597/TM8G-PUQU +https://doi.org/10.48597/MJHX-VAA8 +https://doi.org/10.48597/H6N5-XWR2 +https://doi.org/10.48597/E67S-HA6K +https://doi.org/10.48597/KPE3-6TP4 +https://doi.org/10.48597/J52G-YS8J +https://doi.org/10.48597/KBSK-Z8S5 +https://doi.org/10.48597/Q73U-UNAJ +https://doi.org/10.48597/NQ57-S4HP +https://doi.org/10.48597/DGSG-7UV9 +https://doi.org/10.48597/H4F8-JPVZ +https://doi.org/10.48597/758X-Y9PN +https://doi.org/10.48597/PVME-PH77 +https://doi.org/10.48597/TVNZ-ATV9 +https://doi.org/10.48597/86YF-B7YH +https://doi.org/10.48597/P4YG-KFXV +https://doi.org/10.48597/U3XV-GU5B +https://doi.org/10.48597/9MR8-K6CJ +https://doi.org/10.48597/CEHA-5AYK +https://doi.org/10.48597/UH2F-YX27 +https://doi.org/10.48597/BFXV-U8JW +https://doi.org/10.48597/GWMZ-5HSV +https://doi.org/10.48597/4VBB-JHZQ +https://doi.org/10.48597/7ZPF-UTFJ +https://doi.org/10.48597/FC54-6SXY +https://doi.org/10.48597/3766-VJ8N +https://doi.org/10.48597/8RWS-SWYR +https://doi.org/10.48597/4Q2R-N7AM +https://doi.org/10.48597/S383-Y65K +https://doi.org/10.48597/FXRS-Q68C +https://doi.org/10.48597/QWZ3-DAP6 +https://doi.org/10.48597/9S59-XSCQ +https://doi.org/10.48597/P6GY-UMKE +https://doi.org/10.48597/54ZB-UNHA +https://doi.org/10.48597/RM7T-AQ4B +https://doi.org/10.48597/W8FH-GAP8 +https://doi.org/10.48597/BYMY-KE6C +https://doi.org/10.48597/R6UK-NQZ7 +https://doi.org/10.48597/U7T6-MFPY +https://doi.org/10.48597/CT2F-KDM5 +https://doi.org/10.48597/KNBM-X66V +https://doi.org/10.48597/USQK-PDCE +https://doi.org/10.48597/NCHC-QP3Q +https://doi.org/10.48597/77G8-2PWH +https://doi.org/10.48597/C4US-CMG4 +https://doi.org/10.48597/DEQV-K52K +https://doi.org/10.48597/AVWX-QERX +https://doi.org/10.48597/ACJH-ZWPF +https://doi.org/10.48597/EHX5-SEWU +https://doi.org/10.48597/2CZD-ECP2 +https://doi.org/10.48597/XQPQ-95JP +https://doi.org/10.48597/TA7F-ST23 +https://doi.org/10.48597/7YH9-MC9X +https://doi.org/10.48597/T6EM-TCGH +https://doi.org/10.48597/WENB-PMDA +https://doi.org/10.48597/RSFF-YV9B +https://doi.org/10.48597/VBTS-G3X7 +https://doi.org/10.48597/888P-RRPE +https://doi.org/10.48597/GKYF-EVKS +https://doi.org/10.48597/CGJ2-HYAS +https://doi.org/10.48597/Q4B3-69GJ +https://doi.org/10.48597/TQJR-2VTS +https://doi.org/10.48597/73S4-F7RU +https://doi.org/10.48597/NKZB-QC7X +https://doi.org/10.48597/HU9Z-JYQ3 +https://doi.org/10.48597/K2UM-NQ2S +https://doi.org/10.48597/FGXV-S4JP +https://doi.org/10.48597/5Z8E-VZRU +https://doi.org/10.48597/HPHW-VS8T +https://doi.org/10.48597/JUDZ-FSJD +https://doi.org/10.48597/5NMR-AZD7 +https://doi.org/10.48597/KWJV-5AMP +https://doi.org/10.48597/N6BP-FYT9 +https://doi.org/10.48597/3NE9-U2B3 +https://doi.org/10.48597/PUHR-CBC8 +https://doi.org/10.48597/HV4G-5WJP +https://doi.org/10.48597/M4UN-7AAN +https://doi.org/10.48597/KNXE-X6H9 +https://doi.org/10.48597/Q9VX-CU9W +https://doi.org/10.48597/AY8F-A5QS +https://doi.org/10.48597/VEKZ-QJJ8 +https://doi.org/10.48597/8K6B-XAN6 +https://doi.org/10.48597/4UGS-H9ER +https://doi.org/10.48597/3WHK-U9CM +https://doi.org/10.48597/7UMV-NNEJ +https://doi.org/10.48597/BGVG-NTC5 +https://doi.org/10.48597/6CAT-2TVV +https://doi.org/10.48597/UYH2-NGPR +https://doi.org/10.48597/57G6-QGP5 +https://doi.org/10.48597/6MV4-8K5V +https://doi.org/10.48597/NTUQ-4WGX +https://doi.org/10.48597/F6AQ-65M5 +https://doi.org/10.48597/3TBB-REWA +https://doi.org/10.48597/JHPT-AGJ4 +https://doi.org/10.48597/XY7M-SG7W +https://doi.org/10.48597/NU9G-MXUR +https://doi.org/10.48597/58VD-99R8 +https://doi.org/10.48597/4CTZ-YNWD +https://doi.org/10.48597/7P4X-SAET +https://doi.org/10.48597/PJHU-3DBH +https://doi.org/10.48597/7DX9-98K7 +https://doi.org/10.48597/26JV-A45Z +https://doi.org/10.48597/B2QJ-6MXB +https://doi.org/10.48597/F9A6-9YXQ +https://doi.org/10.48597/U8NQ-9WNH +https://doi.org/10.48597/RUCR-RQV7 +https://doi.org/10.48597/EB3N-RVYB +https://doi.org/10.48597/YKKH-ZCXF +https://doi.org/10.48597/V5XH-TNZ4 +https://doi.org/10.48597/4MQS-7EAB +https://doi.org/10.48597/VCHW-D8XS +https://doi.org/10.48597/KX7D-PMXT +https://doi.org/10.48597/MVQ7-MVP2 +https://doi.org/10.48597/9WJ9-SZH7 +https://doi.org/10.48597/945D-HQVY +https://doi.org/10.48597/Q733-FB5Q +https://doi.org/10.48597/BSCD-ZQ2X +https://doi.org/10.48597/8MD4-98KV +https://doi.org/10.48597/5HCF-8GQD +https://doi.org/10.48597/W9W5-ANC6 +https://doi.org/10.48597/34SF-SS8E +https://doi.org/10.48597/VTPW-KT5E +https://doi.org/10.48597/NJYC-3TJY +https://doi.org/10.48597/EBHU-Q4RS +https://doi.org/10.48597/4NK3-4FYU +https://doi.org/10.48597/95HE-BMNU +https://doi.org/10.48597/6Q72-2HF8 +https://doi.org/10.48597/CHND-Y7YU +https://doi.org/10.48597/2QA8-E975 +https://doi.org/10.48597/APJJ-JG8C +https://doi.org/10.48597/CJW3-5CNJ +https://doi.org/10.48597/E36E-N36N +https://doi.org/10.48597/BYHS-F4ZE +https://doi.org/10.48597/S64J-Q3J3 +https://doi.org/10.48597/89AD-KZ2P +https://doi.org/10.48597/YGQC-CNGK +https://doi.org/10.48597/NSVY-GCC9 +https://doi.org/10.48597/SPRY-N558 +https://doi.org/10.48597/5KKU-TQ6P +https://doi.org/10.48597/N4UM-F26X +https://doi.org/10.48597/GKHA-V88Z +https://doi.org/10.48597/7VMC-NJ2E +https://doi.org/10.48597/MECX-2BM9 +https://doi.org/10.48597/Y4XB-WAVE +https://doi.org/10.48597/DXBF-MVPD +https://doi.org/10.48597/AUBF-RT2A +https://doi.org/10.48597/MDGY-FGE4 +https://doi.org/10.48597/AXAT-VGH9 +https://doi.org/10.48597/UBE4-T6N3 +https://doi.org/10.48597/XGEA-T5TA +https://doi.org/10.48597/V3ST-4SPY +https://doi.org/10.48597/6Q33-77EC +https://doi.org/10.48597/7SW3-A4A4 +https://doi.org/10.48597/RUWN-JGZQ +https://doi.org/10.48597/NGVX-HRDH +https://doi.org/10.48597/TXCJ-WXKH +https://doi.org/10.48597/DUMC-MUU6 +https://doi.org/10.48597/TSJ2-6KY9 +https://doi.org/10.48597/Z8TC-PGX8 +https://doi.org/10.48597/AZ59-MDWG +https://doi.org/10.48597/AQTV-HV6R +https://doi.org/10.48597/VMCT-23ZB +https://doi.org/10.48597/XJD4-25V6 +https://doi.org/10.48597/ADV4-4F8W +https://doi.org/10.48597/ZSXJ-9UX8 +https://doi.org/10.48597/CY4U-D5GR +https://doi.org/10.48597/B4XM-RFAD +https://doi.org/10.48597/UXQ7-9YWM +https://doi.org/10.48597/35TP-ZXSG +https://doi.org/10.48597/8237-JH8W +https://doi.org/10.48597/9VSD-426S +https://doi.org/10.48597/GEM7-Y5RN +https://doi.org/10.48597/3XKA-FQFY +https://doi.org/10.48597/BTHJ-UREZ +https://doi.org/10.48597/PBDY-S4SD +https://doi.org/10.48597/VHW2-UWVF +https://doi.org/10.48597/7EQR-YWC2 +https://doi.org/10.48597/4ZGN-8FYP +https://doi.org/10.48597/A49V-K22S +https://doi.org/10.48597/ZP93-A28Q +https://doi.org/10.48597/4Y5D-4U4M +https://doi.org/10.48597/PPSZ-C9Y7 +https://doi.org/10.48597/4RET-GYHP +https://doi.org/10.48597/PA4S-FEX8 +https://doi.org/10.48597/2BD7-A4SX +https://doi.org/10.48597/K66H-D4XZ +https://doi.org/10.48597/ZSSB-GYAC +https://doi.org/10.48597/39FG-HPWT +https://doi.org/10.48597/B5DM-5GCG +https://doi.org/10.48597/RB4J-KNEZ +https://doi.org/10.48597/H2WS-8P9Y +https://doi.org/10.48597/2SDQ-9XBV +https://doi.org/10.48597/94ZZ-D37X +https://doi.org/10.48597/SRHS-TZ2A +https://doi.org/10.48597/P85A-35N3 +https://doi.org/10.48597/V7YR-XH8Y +https://doi.org/10.48597/8PH6-95Q8 +https://doi.org/10.48597/JJ5F-QWQE +https://doi.org/10.48597/3G5S-YZP8 +https://doi.org/10.48597/TXRP-WB3X +https://doi.org/10.48597/QBCE-ARXC +https://doi.org/10.48597/VK3G-MARY +https://doi.org/10.48597/FBMF-C3ZJ +https://doi.org/10.48597/9WYQ-6KVF +https://doi.org/10.48597/3D6R-SD8D +https://doi.org/10.48597/R538-SAW2 +https://doi.org/10.48597/VSFZ-82BW +https://doi.org/10.48597/9UXQ-XRWH +https://doi.org/10.48597/G6G9-CS2J +https://doi.org/10.48597/EZWH-GKE5 +https://doi.org/10.48597/SR6U-ZK9A +https://doi.org/10.48597/YAN5-YXBK +https://doi.org/10.48597/EZFT-M8Z7 +https://doi.org/10.48597/2P88-S28P +https://doi.org/10.48597/7YC4-AZ6T +https://doi.org/10.48597/WDNW-5TK6 +https://doi.org/10.48597/F8EZ-CM3E +https://doi.org/10.48597/GVM2-Y4WK +https://doi.org/10.48597/Q74C-J8PY +https://doi.org/10.48597/ETVR-Y6XX +https://doi.org/10.48597/AT72-S4QD +https://doi.org/10.48597/M8Z5-63QC +https://doi.org/10.48597/TWR4-UH6Q +https://doi.org/10.48597/FC76-QGVU +https://doi.org/10.48597/EQKQ-8R6G +https://doi.org/10.48597/KHFA-A53T +https://doi.org/10.48597/AVCF-SW3S +https://doi.org/10.48597/756Q-75TV +https://doi.org/10.48597/8S4A-VDZ6 +https://doi.org/10.48597/RZXU-P2H4 +https://doi.org/10.48597/R685-CMSE +https://doi.org/10.48597/NGW6-874Z +https://doi.org/10.48597/8ZRY-6YJ4 +https://doi.org/10.48597/HDXY-SDNQ +https://doi.org/10.48597/8VAA-NQBQ +https://doi.org/10.48597/8ER3-WUDU +https://doi.org/10.48597/5APJ-X9YM +https://doi.org/10.48597/7QUC-4N73 +https://doi.org/10.48597/5HPS-YEZH +https://doi.org/10.48597/CCXT-ZXPV +https://doi.org/10.48597/RA6V-MGQS +https://doi.org/10.48597/TE3R-957T +https://doi.org/10.48597/6GS3-5GA3 +https://doi.org/10.48597/44YH-3UZ4 +https://doi.org/10.48597/3RVE-NDJD +https://doi.org/10.48597/8YZJ-P2UZ +https://doi.org/10.48597/2BKB-59UW +https://doi.org/10.48597/ADAJ-HS5Y +https://doi.org/10.48597/XVKG-EJ9H +https://doi.org/10.48597/6TED-ZJ6K +https://doi.org/10.48597/KKY8-N3N3 +https://doi.org/10.48597/8YN5-3VEV +https://doi.org/10.48597/RYZA-DEQG +https://doi.org/10.48597/G7V5-ASFZ +https://doi.org/10.48597/7V5S-495V +https://doi.org/10.48597/XB7Q-QH69 +https://doi.org/10.48597/9QJZ-PEWD +https://doi.org/10.48597/GARX-PZ4A +https://doi.org/10.48597/8PRH-PV5K +https://doi.org/10.48597/7PWC-APZ5 +https://doi.org/10.48597/4NDT-N42E +https://doi.org/10.48597/Q8D8-DEWM +https://doi.org/10.48597/U6XE-ABXB +https://doi.org/10.48597/KZ25-NJC9 +https://doi.org/10.48597/R4Q9-N4CE +https://doi.org/10.48597/JEDP-6W8X +https://doi.org/10.48597/ZRJA-RRGQ +https://doi.org/10.48597/TXY5-2TZ2 +https://doi.org/10.48597/WAP8-A9UN +https://doi.org/10.48597/ABJ5-YPUN +https://doi.org/10.48597/5359-75DT +https://doi.org/10.48597/US2F-N2DA +https://doi.org/10.48597/6B3D-2AFB +https://doi.org/10.48597/2JQG-XCJZ +https://doi.org/10.48597/WCNU-AE2B +https://doi.org/10.48597/SPHZ-Z37B +https://doi.org/10.48597/FRP9-CAPN +https://doi.org/10.48597/SWHX-86UY +https://doi.org/10.48597/4FDC-6K6K +https://doi.org/10.48597/BZUQ-U33Z +https://doi.org/10.48597/D4NF-ZDT9 +https://doi.org/10.48597/JCJ2-CHVN +https://doi.org/10.48597/P7JB-67NS +https://doi.org/10.48597/23CP-FJT5 +https://doi.org/10.48597/KFKY-MMAS +https://doi.org/10.48597/X9X2-SFM4 +https://doi.org/10.48597/8YZ4-DJNQ +https://doi.org/10.48597/JGYQ-FNEH +https://doi.org/10.48597/35G5-B6UK +https://doi.org/10.48597/2KH6-MYQM +https://doi.org/10.48597/USXQ-VUKT +https://doi.org/10.48597/KKD7-88ME +https://doi.org/10.48597/2YV5-SETN +https://doi.org/10.48597/BGVU-PY5G +https://doi.org/10.48597/8QDC-WDTA +https://doi.org/10.48597/YDZG-7BDR +https://doi.org/10.48597/UMXK-UZ7Z +https://doi.org/10.48597/HUBV-5VHU +https://doi.org/10.48597/29XS-C26A +https://doi.org/10.48597/39ED-85F4 +https://doi.org/10.48597/AWCH-MHBZ +https://doi.org/10.48597/VKT3-XB59 +https://doi.org/10.48597/3B6Z-RTBA +https://doi.org/10.48597/S6JG-7QHQ +https://doi.org/10.48597/NR33-ANDC +https://doi.org/10.48597/TKDP-CFT4 +https://doi.org/10.48597/JXU4-ZWTM +https://doi.org/10.48597/BJT5-AW8Z +https://doi.org/10.48597/S427-VMNN +https://doi.org/10.48597/NTTZ-GK9Y +https://doi.org/10.48597/R6AW-HMQW +https://doi.org/10.48597/CX6U-CVKZ +https://doi.org/10.48597/YFWZ-H8DE +https://doi.org/10.48597/X5GH-YFAK +https://doi.org/10.48597/EPY6-JTZG +https://doi.org/10.48597/7CTT-72JX +https://doi.org/10.48597/DCU5-TP9D +https://doi.org/10.48597/2W9W-RA3Z +https://doi.org/10.48597/7ZNT-PJ7D +https://doi.org/10.48597/PZ8T-76M8 +https://doi.org/10.48597/UX5D-66SY +https://doi.org/10.48597/3WQF-GV3M +https://doi.org/10.48597/EY9B-M79M +https://doi.org/10.48597/HDKA-6GAN +https://doi.org/10.48597/RCKF-2QFY +https://doi.org/10.48597/UGGB-PXC7 +https://doi.org/10.48597/4CGR-87S3 +https://doi.org/10.48597/RXEC-QSE4 +https://doi.org/10.48597/M4KF-BYPC +https://doi.org/10.48597/VRCH-D87V +https://doi.org/10.48597/ASSS-SSKZ +https://doi.org/10.48597/BMAW-TGWX +https://doi.org/10.48597/36NY-GJ4X +https://doi.org/10.48597/9H9P-MFJ8 +https://doi.org/10.48597/74NE-WJG2 +https://doi.org/10.48597/P6BC-YBWZ +https://doi.org/10.48597/EN8D-F5FN +https://doi.org/10.48597/G5KD-EC7W +https://doi.org/10.48597/YQYC-2FNS +https://doi.org/10.48597/868Y-J2CF +https://doi.org/10.48597/BB8C-5EF2 +https://doi.org/10.48597/2HVF-JP88 +https://doi.org/10.48597/JE75-KV6C +https://doi.org/10.48597/5QDQ-WEFZ +https://doi.org/10.48597/M5VX-4PZE +https://doi.org/10.48597/CN7N-68JE +https://doi.org/10.48597/RCNT-FN4Y +https://doi.org/10.48597/MHWG-AJKN +https://doi.org/10.48597/EU2Z-ANKD +https://doi.org/10.48597/63DP-HVH2 +https://doi.org/10.48597/JQAS-A2PY +https://doi.org/10.48597/CT6X-ECZU +https://doi.org/10.48597/GXKR-EXGE +https://doi.org/10.48597/NJBV-EFQB +https://doi.org/10.48597/Q99A-48WW +https://doi.org/10.48597/H3H9-DJTF +https://doi.org/10.48597/PWFQ-F2TX +https://doi.org/10.48597/FMYR-TETY +https://doi.org/10.48597/U2EK-422X +https://doi.org/10.48597/RP45-K5NG +https://doi.org/10.48597/9K5Z-SNFW +https://doi.org/10.48597/8FKV-H4Z7 +https://doi.org/10.48597/W3KF-AGDS +https://doi.org/10.48597/2JV3-Z4QC +https://doi.org/10.48597/7DY2-3Y77 +https://doi.org/10.48597/4GF9-9EWT +https://doi.org/10.48597/DM35-4G6Z +https://doi.org/10.48597/54ZM-9D7G +https://doi.org/10.48597/XEKK-KTZ5 +https://doi.org/10.48597/ZS8U-FYRS +https://doi.org/10.48597/2QTJ-6U3Y +https://doi.org/10.48597/8DEG-YMK9 +https://doi.org/10.48597/RPPF-Q6TE +https://doi.org/10.48597/NZUR-9ESM +https://doi.org/10.48597/JYY8-B4ER +https://doi.org/10.48597/CWTK-94RH +https://doi.org/10.48597/PQXT-NCS9 +https://doi.org/10.48597/8ZRD-M45S +https://doi.org/10.48597/MPR7-UUSQ +https://doi.org/10.48597/WD6V-FJ4N +https://doi.org/10.48597/BMAR-HPPH +https://doi.org/10.48597/SVKF-GQDX +https://doi.org/10.48597/QXY9-PDNC +https://doi.org/10.48597/A3JN-FUFZ +https://doi.org/10.48597/KTF6-ET6J +https://doi.org/10.48597/XFQS-G9EM +https://doi.org/10.48597/VK6E-4BE5 +https://doi.org/10.48597/46U3-4E6R +https://doi.org/10.48597/H6TR-3AAV +https://doi.org/10.48597/J58T-AHTU +https://doi.org/10.48597/P2PY-HS7Z +https://doi.org/10.48597/HUWD-2TMS +https://doi.org/10.48597/HDY2-CFSU +https://doi.org/10.48597/9NUC-QXV4 +https://doi.org/10.48597/N5MQ-AGBF +https://doi.org/10.48597/EY2H-3RD7 +https://doi.org/10.48597/4HB9-T2KU +https://doi.org/10.48597/BMMD-7V8K +https://doi.org/10.48597/PRNU-VVCH +https://doi.org/10.48597/VSHS-8TKV +https://doi.org/10.48597/5V5U-7ATV +https://doi.org/10.48597/NXC6-YPNJ +https://doi.org/10.48597/YJX2-RJQC +https://doi.org/10.48597/Y68W-AYMT +https://doi.org/10.48597/XRWR-QDUM +https://doi.org/10.48597/MM55-TEBY +https://doi.org/10.48597/7HBE-PEQK +https://doi.org/10.48597/26TA-6Z87 +https://doi.org/10.48597/88B6-9UUX +https://doi.org/10.48597/D3Z5-ZFRP +https://doi.org/10.48597/ZUTH-7F56 +https://doi.org/10.48597/JKEQ-WQP6 +https://doi.org/10.48597/BYCB-A859 +https://doi.org/10.48597/RDHW-DZY4 +https://doi.org/10.48597/2K3F-HJNM +https://doi.org/10.48597/72MJ-2RM2 +https://doi.org/10.48597/S6CN-DXGU +https://doi.org/10.48597/F272-9444 +https://doi.org/10.48597/ZKMZ-396Y +https://doi.org/10.48597/5UCA-RTH6 +https://doi.org/10.48597/EEXH-JBCN +https://doi.org/10.48597/R9SS-DEFB +https://doi.org/10.48597/9R9Z-5GYW +https://doi.org/10.48597/7XG9-CJXT +https://doi.org/10.48597/5CMK-NXCY +https://doi.org/10.48597/9TNQ-H3JB +https://doi.org/10.48597/4NW7-283W +https://doi.org/10.48597/QRVZ-WA5B +https://doi.org/10.48597/5JJQ-B4UH +https://doi.org/10.48597/WQMB-ZV94 +https://doi.org/10.48597/5R4G-SAEK +https://doi.org/10.48597/VAXQ-334S +https://doi.org/10.48597/GQ98-G8W8 +https://doi.org/10.48597/3BTZ-PN35 +https://doi.org/10.48597/F53S-PCQA +https://doi.org/10.48597/W9JE-J4WU +https://doi.org/10.48597/VZDC-JMAM +https://doi.org/10.48597/3HTJ-7Y2T +https://doi.org/10.48597/T9D2-27X8 +https://doi.org/10.48597/4FCB-4W4A +https://doi.org/10.48597/SPBY-UPDW +https://doi.org/10.48597/SRUR-XPK8 +https://doi.org/10.48597/9SPJ-9DYW +https://doi.org/10.48597/V7ZC-XRMW +https://doi.org/10.48597/DHBX-DHH5 +https://doi.org/10.48597/3C9Z-5NAC +https://doi.org/10.48597/ZZ85-CGKM +https://doi.org/10.48597/2U6N-EWXB +https://doi.org/10.48597/CSDC-84EP +https://doi.org/10.48597/FHPM-EUNQ +https://doi.org/10.48597/GCYA-GPFY +https://doi.org/10.48597/4XNC-TVE3 +https://doi.org/10.48597/TAP2-GGHH +https://doi.org/10.48597/3AK7-Q8RU +https://doi.org/10.48597/NEJR-NAKD +https://doi.org/10.48597/TY8N-KJUJ +https://doi.org/10.48597/PHCY-R275 +https://doi.org/10.48597/ZF5F-UUB5 +https://doi.org/10.48597/GH6D-EZ2E +https://doi.org/10.48597/M6RC-TP9M +https://doi.org/10.48597/HZPY-EEQ4 +https://doi.org/10.48597/5X92-WCWS +https://doi.org/10.48597/FKQZ-NQMW +https://doi.org/10.48597/NQTQ-X3K2 +https://doi.org/10.48597/F5FW-472B +https://doi.org/10.48597/4Y9R-PS36 +https://doi.org/10.48597/EBW4-QESX +https://doi.org/10.48597/9N87-7D87 +https://doi.org/10.48597/XB4U-SGJW +https://doi.org/10.48597/U8V3-6KNR +https://doi.org/10.48597/UHQ5-JBWH +https://doi.org/10.48597/SGRH-DDPC +https://doi.org/10.48597/3882-CNRQ +https://doi.org/10.48597/SJAZ-QKG9 +https://doi.org/10.48597/3TGB-5ZVJ +https://doi.org/10.48597/URGM-TWSA +https://doi.org/10.48597/UQKB-YEU7 +https://doi.org/10.48597/9NGE-FEW6 +https://doi.org/10.48597/Z5XR-GTNQ +https://doi.org/10.48597/CK83-4HHA +https://doi.org/10.48597/JGKP-P9F5 +https://doi.org/10.48597/SJVR-7GNE +https://doi.org/10.48597/XQMA-HPE5 +https://doi.org/10.48597/P3PR-H83N +https://doi.org/10.48597/FJG9-UUMX +https://doi.org/10.48597/VYAP-SWZ7 +https://doi.org/10.48597/ZMJW-3FMR +https://doi.org/10.48597/X37R-JBYN +https://doi.org/10.48597/RDYR-69K8 +https://doi.org/10.48597/E2N6-AGGG +https://doi.org/10.48597/HXMP-9PYU +https://doi.org/10.48597/X5YE-RZEB +https://doi.org/10.48597/9S9S-HV85 +https://doi.org/10.48597/NC2P-ZESE +https://doi.org/10.48597/SSWK-ERZZ +https://doi.org/10.48597/PV8H-DQ28 +https://doi.org/10.48597/U6J4-3S8D +https://doi.org/10.48597/BBES-M66W +https://doi.org/10.48597/JFWP-HFPZ +https://doi.org/10.48597/DEVS-QRCR +https://doi.org/10.48597/AFZ7-R2E4 +https://doi.org/10.48597/5RDZ-FHES +https://doi.org/10.48597/VMNF-MNEA +https://doi.org/10.48597/RXUE-H3ED +https://doi.org/10.48597/9TWE-6J2A +https://doi.org/10.48597/VN2G-9AMN +https://doi.org/10.48597/GAG6-YCA9 +https://doi.org/10.48597/HSSZ-PHUA +https://doi.org/10.48597/HEJ8-4MUD +https://doi.org/10.48597/WPKR-SF8Q +https://doi.org/10.48597/29MM-NVMR +https://doi.org/10.48597/5UZ9-VY7Z +https://doi.org/10.48597/3GR2-ZK3S +https://doi.org/10.48597/THRR-HV46 +https://doi.org/10.48597/5QHR-SGVQ +https://doi.org/10.48597/DP26-HWE7 +https://doi.org/10.48597/KHGE-YTFB +https://doi.org/10.48597/WUFR-YVQZ +https://doi.org/10.48597/HQZQ-ZYJU +https://doi.org/10.48597/6KC4-PHCR +https://doi.org/10.48597/XS49-84Y8 +https://doi.org/10.48597/EHBB-3AB5 +https://doi.org/10.48597/HJH9-TYA3 +https://doi.org/10.48597/KB3Q-K6FV +https://doi.org/10.48597/UJ2H-CQCH +https://doi.org/10.48597/5JT4-VEE2 +https://doi.org/10.48597/7ZA5-ZP8R +https://doi.org/10.48597/MY26-DD9F +https://doi.org/10.48597/3HMJ-GH9S +https://doi.org/10.48597/WW2G-Y3JE +https://doi.org/10.48597/RDZZ-7N9W +https://doi.org/10.48597/JDFC-84S5 +https://doi.org/10.48597/YTD3-DMME +https://doi.org/10.48597/Q2V8-JQF4 +https://doi.org/10.48597/J8MA-2DFY +https://doi.org/10.48597/MME6-ZVDY +https://doi.org/10.48597/ZKT3-7TYX +https://doi.org/10.48597/CDHM-Y42S +https://doi.org/10.48597/ZSN8-CGCE +https://doi.org/10.48597/J6RQ-Q82X +https://doi.org/10.48597/292U-N4C9 +https://doi.org/10.48597/Q56H-SMHJ +https://doi.org/10.48597/42KS-EU4R +https://doi.org/10.48597/J7EC-KTCK +https://doi.org/10.48597/JKHS-E7XP +https://doi.org/10.48597/ABXM-77EU +https://doi.org/10.48597/HT2W-G4CE +https://doi.org/10.48597/5NZS-KERK +https://doi.org/10.48597/ERRK-32QM +https://doi.org/10.48597/5A59-9SZ4 +https://doi.org/10.48597/5H7P-XWDJ +https://doi.org/10.48597/GABY-WT8R +https://doi.org/10.48597/XX2F-XG9D +https://doi.org/10.48597/6YMM-M456 +https://doi.org/10.48597/K3UQ-ZGSK +https://doi.org/10.48597/U5TX-ZUVU +https://doi.org/10.48597/4YNZ-BGVW +https://doi.org/10.48597/7B54-U5T8 +https://doi.org/10.48597/BWHP-CQXM +https://doi.org/10.48597/WTJS-5YNG +https://doi.org/10.48597/2EWW-H4MX +https://doi.org/10.48597/HUFT-CCHF +https://doi.org/10.48597/PCB6-H476 +https://doi.org/10.48597/Q7U2-276M +https://doi.org/10.48597/76AE-NNP4 +https://doi.org/10.48597/AN9A-NKJW +https://doi.org/10.48597/BX6P-CZR2 +https://doi.org/10.48597/S695-JUM7 +https://doi.org/10.48597/SZK6-RPSZ +https://doi.org/10.48597/QSXW-9759 +https://doi.org/10.48597/39BV-5QYM +https://doi.org/10.48597/YBV5-UNK6 +https://doi.org/10.48597/GADB-H84M +https://doi.org/10.48597/93SK-YDNC +https://doi.org/10.48597/J866-EN6Z +https://doi.org/10.48597/Q88H-CNDF +https://doi.org/10.48597/H5ZZ-Q6RF +https://doi.org/10.48597/BP2K-GA47 +https://doi.org/10.48597/4EYE-H2KD +https://doi.org/10.48597/3GE5-R4BA +https://doi.org/10.48597/XPZV-UKJB +https://doi.org/10.48597/FMET-C5XE +https://doi.org/10.48597/7D89-PUGN +https://doi.org/10.48597/38DE-NWFT +https://doi.org/10.48597/PG3X-QKGJ +https://doi.org/10.48597/29X6-98KC +https://doi.org/10.48597/GVMN-J285 +https://doi.org/10.48597/WQUR-ABYX +https://doi.org/10.48597/W5Z6-QSN3 +https://doi.org/10.48597/F8UC-KJJE +https://doi.org/10.48597/QSH4-66DG +https://doi.org/10.48597/Q76T-F5BN +https://doi.org/10.48597/6C98-XNVH +https://doi.org/10.48597/Y78Y-KMWM +https://doi.org/10.48597/UGQZ-W758 +https://doi.org/10.48597/3DP4-SB8S +https://doi.org/10.48597/FE54-99PF +https://doi.org/10.48597/4Z9S-YNCJ +https://doi.org/10.48597/8SNN-BD8F +https://doi.org/10.48597/2GU4-DSA8 +https://doi.org/10.48597/6BAD-P6Q3 +https://doi.org/10.48597/QF7C-WN6X +https://doi.org/10.48597/Y55C-U67P +https://doi.org/10.48597/WAK2-53DS +https://doi.org/10.48597/2Y8P-ZCUQ +https://doi.org/10.48597/X2CA-366K +https://doi.org/10.48597/FC8S-KW98 +https://doi.org/10.48597/XBBQ-TFUY +https://doi.org/10.48597/TTF9-XSBN +https://doi.org/10.48597/S4MM-DBCU +https://doi.org/10.48597/Z453-J2QK +https://doi.org/10.48597/RNAX-DY9X +https://doi.org/10.48597/2SK2-X7RW +https://doi.org/10.48597/5SUH-APJB +https://doi.org/10.48597/Z3A6-XGTS +https://doi.org/10.48597/KQET-Z65S +https://doi.org/10.48597/QMEG-SKCW +https://doi.org/10.48597/56FX-P83W +https://doi.org/10.48597/53RQ-HK24 +https://doi.org/10.48597/NQYT-7CMN +https://doi.org/10.48597/PVDD-U4EZ +https://doi.org/10.48597/WJ2A-8Q3G +https://doi.org/10.48597/8BTZ-K3AP +https://doi.org/10.48597/VWM9-9KZK +https://doi.org/10.48597/WSP5-2PVU +https://doi.org/10.48597/NY4P-HSTX +https://doi.org/10.48597/32J5-SC2K +https://doi.org/10.48597/FA7E-JTJW +https://doi.org/10.48597/J36B-XKV2 +https://doi.org/10.48597/7UC4-46DX +https://doi.org/10.48597/QXZR-CJJW +https://doi.org/10.48597/YV3B-QU8P +https://doi.org/10.48597/7JM2-FYQ8 +https://doi.org/10.48597/49P8-GC5H +https://doi.org/10.48597/27SA-RVZ8 +https://doi.org/10.48597/QD4U-PZ92 +https://doi.org/10.48597/4RAM-XGFW +https://doi.org/10.48597/46JP-SF96 +https://doi.org/10.48597/HFWZ-8C5T +https://doi.org/10.48597/B3GC-Z3XT +https://doi.org/10.48597/4V2B-DCUM +https://doi.org/10.48597/F83R-TZYT +https://doi.org/10.48597/V2AR-9CHX +https://doi.org/10.48597/WEJ2-EVAR +https://doi.org/10.48597/2JEC-FUND +https://doi.org/10.48597/QUJ2-TPGT +https://doi.org/10.48597/9XK4-6UKT +https://doi.org/10.48597/NG9K-GGAX +https://doi.org/10.48597/8NGM-GTFF +https://doi.org/10.48597/MPWQ-HH5G +https://doi.org/10.48597/NRDH-UXCE +https://doi.org/10.48597/SDTK-CF82 +https://doi.org/10.48597/MU7J-WMER +https://doi.org/10.48597/T3ZK-EFAE +https://doi.org/10.48597/9ZZR-VHAT +https://doi.org/10.48597/UB7C-W94F +https://doi.org/10.48597/UY8K-MXA2 +https://doi.org/10.48597/5Z52-HCUD +https://doi.org/10.48597/MSD2-BN2B +https://doi.org/10.48597/MYEX-HJ9S +https://doi.org/10.48597/WXK3-85WM +https://doi.org/10.48597/6URX-CVZT +https://doi.org/10.48597/Z4AV-U5RS +https://doi.org/10.48597/DQZK-ZWN8 +https://doi.org/10.48597/VPFP-QT7B +https://doi.org/10.48597/3HGP-XKEU +https://doi.org/10.48597/S5MW-MR53 +https://doi.org/10.48597/8FBF-DEAT +https://doi.org/10.48597/987C-PEND +https://doi.org/10.48597/42PW-XF3J +https://doi.org/10.48597/QBD3-2VTB +https://doi.org/10.48597/C3A9-CGGH +https://doi.org/10.48597/HC55-G9CB +https://doi.org/10.48597/JFF9-ZHGS +https://doi.org/10.48597/JVJZ-HGU5 +https://doi.org/10.48597/QWPF-FFB7 +https://doi.org/10.48597/HZV3-Q6WA +https://doi.org/10.48597/4UKN-M2EV +https://doi.org/10.48597/6XH7-WB9T +https://doi.org/10.48597/HY72-V3HW +https://doi.org/10.48597/4CXW-3CWF +https://doi.org/10.48597/PQ9K-ANVH +https://doi.org/10.48597/GRFJ-V2Q4 +https://doi.org/10.48597/Y3A5-Q2DN +https://doi.org/10.48597/PC2Q-T2U9 +https://doi.org/10.48597/VHKW-AH49 +https://doi.org/10.48597/9YGT-WPUF +https://doi.org/10.48597/M45Y-CZB8 +https://doi.org/10.48597/DRPF-DDD7 +https://doi.org/10.48597/FS8V-2F5R +https://doi.org/10.48597/GK55-7JGP +https://doi.org/10.48597/GR2R-KP39 +https://doi.org/10.48597/FUD7-D4FP +https://doi.org/10.48597/QHWA-68GY +https://doi.org/10.48597/DH3R-B4Q6 +https://doi.org/10.48597/3SKW-22U9 +https://doi.org/10.48597/9AHP-Y2R4 +https://doi.org/10.48597/9RQE-QK8R +https://doi.org/10.48597/QNWF-A56C +https://doi.org/10.48597/SY9W-68SV +https://doi.org/10.48597/WDCE-8PXG +https://doi.org/10.48597/V2C7-BWEY +https://doi.org/10.48597/QZFQ-RRC8 +https://doi.org/10.48597/BBED-UXQU +https://doi.org/10.48597/TBZ2-N4EU +https://doi.org/10.48597/UKFZ-2KGW +https://doi.org/10.48597/M3BZ-N3P9 +https://doi.org/10.48597/NUYV-TT6R +https://doi.org/10.48597/QPBD-62CF +https://doi.org/10.48597/W6XF-FPSJ +https://doi.org/10.48597/UHRR-8N48 +https://doi.org/10.48597/GEMM-2ZUP +https://doi.org/10.48597/5GBT-GBKY +https://doi.org/10.48597/NXCT-E7GB +https://doi.org/10.48597/JQGC-NHXY +https://doi.org/10.48597/ZH8C-7XJZ +https://doi.org/10.48597/R96A-9XY7 +https://doi.org/10.48597/X3PQ-2YJ2 +https://doi.org/10.48597/PEEX-HBW6 +https://doi.org/10.48597/SD8T-CTRQ +https://doi.org/10.48597/EKVX-XUC9 +https://doi.org/10.48597/6F9P-J6AR +https://doi.org/10.48597/MZQM-5MG8 +https://doi.org/10.48597/43VT-J7U6 +https://doi.org/10.48597/XTEZ-EU4E +https://doi.org/10.48597/GK8X-7SP3 +https://doi.org/10.48597/Z2Y3-2Y3V +https://doi.org/10.48597/KCZW-QP9Y +https://doi.org/10.48597/H4HB-8CPV +https://doi.org/10.48597/XAQ2-NZPJ +https://doi.org/10.48597/U9ZW-8JME +https://doi.org/10.48597/G6A2-HVPS +https://doi.org/10.48597/W9PS-CQXQ +https://doi.org/10.48597/JTRY-VZPS +https://doi.org/10.48597/92NZ-6DUS +https://doi.org/10.48597/U4R7-R94P +https://doi.org/10.48597/VQRF-EG2M +https://doi.org/10.48597/4TED-PSXN +https://doi.org/10.48597/YYKE-ZF7V +https://doi.org/10.48597/QMWN-RE55 +https://doi.org/10.48597/ZEM7-FBEW +https://doi.org/10.48597/652F-Z8X6 +https://doi.org/10.48597/SMP4-5YKT +https://doi.org/10.48597/J8ZR-57B4 +https://doi.org/10.48597/8MXX-8Z7U +https://doi.org/10.48597/P5SB-EPSN +https://doi.org/10.48597/YXKE-H2FA +https://doi.org/10.48597/YWNC-7BQV +https://doi.org/10.48597/P74B-44V7 +https://doi.org/10.48597/UPNE-NQMS +https://doi.org/10.48597/CTYB-72E2 +https://doi.org/10.48597/EH2Q-RCJ4 +https://doi.org/10.48597/MB7F-PDAV +https://doi.org/10.48597/TCF6-PVYP +https://doi.org/10.48597/J3RH-R3UE +https://doi.org/10.48597/4YJ8-C3YC +https://doi.org/10.48597/KQJE-UT6J +https://doi.org/10.48597/RTXT-URJR +https://doi.org/10.48597/3J4J-9YU3 +https://doi.org/10.48597/DUC8-V3VG +https://doi.org/10.48597/WQMD-UK22 +https://doi.org/10.48597/YP4R-DATZ +https://doi.org/10.48597/CJ83-VYRJ +https://doi.org/10.48597/TMUV-Z525 +https://doi.org/10.48597/UMK7-PA44 +https://doi.org/10.48597/6V3W-WWVN +https://doi.org/10.48597/75F4-6AZY +https://doi.org/10.48597/ST9C-4UC4 +https://doi.org/10.48597/Z438-TJVY +https://doi.org/10.48597/KMNC-3RRS +https://doi.org/10.48597/3T4G-EXYU +https://doi.org/10.48597/X8H8-Y9DJ +https://doi.org/10.48597/V5Q5-ZAC7 +https://doi.org/10.48597/7MHK-S3FB +https://doi.org/10.48597/55NC-BAHJ +https://doi.org/10.48597/X4BA-N9XD +https://doi.org/10.48597/3KTK-V4W2 +https://doi.org/10.48597/FUEF-E2HD +https://doi.org/10.48597/NW9Y-T4T2 +https://doi.org/10.48597/C5EH-8GCC +https://doi.org/10.48597/ZEDQ-3WY5 +https://doi.org/10.48597/34N2-TVJP +https://doi.org/10.48597/N9EB-C2C8 +https://doi.org/10.48597/AGES-WJNA +https://doi.org/10.48597/SDXA-2G94 +https://doi.org/10.48597/NEJK-YHBN +https://doi.org/10.48597/BCYT-6Y4J +https://doi.org/10.48597/RUG6-UX4K +https://doi.org/10.48597/JY8Q-98NZ +https://doi.org/10.48597/7U95-EHWU +https://doi.org/10.48597/JEQ9-MWGQ +https://doi.org/10.48597/E4XC-HW9T +https://doi.org/10.48597/ZQ78-5CPG +https://doi.org/10.48597/FWP9-KWXF +https://doi.org/10.48597/V7RW-HEAK +https://doi.org/10.48597/3ZU3-7MC4 +https://doi.org/10.48597/GD43-EW6U +https://doi.org/10.48597/Z8R4-7QWJ +https://doi.org/10.48597/KBV5-NDBJ +https://doi.org/10.48597/UDC9-9FYB +https://doi.org/10.48597/25FU-X7CV +https://doi.org/10.48597/Y84M-738T +https://doi.org/10.48597/38E9-244Y +https://doi.org/10.48597/VZT8-AXQS +https://doi.org/10.48597/HTD8-HRZC +https://doi.org/10.48597/D7UC-H5N2 +https://doi.org/10.48597/X8PB-7W2T +https://doi.org/10.48597/5864-95M5 +https://doi.org/10.48597/UBWG-WEPM +https://doi.org/10.48597/VVMM-2598 +https://doi.org/10.48597/Q4BT-AU27 +https://doi.org/10.48597/FM4F-GT9H +https://doi.org/10.48597/4MG7-YAEV +https://doi.org/10.48597/DUFV-85Y6 +https://doi.org/10.48597/MYTT-Z3G2 +https://doi.org/10.48597/25WG-HVUC +https://doi.org/10.48597/JCMW-ACZW +https://doi.org/10.48597/Z87H-8PQZ +https://doi.org/10.48597/HDYG-83KQ +https://doi.org/10.48597/G7CB-Z8YN +https://doi.org/10.48597/24ZS-3P5G +https://doi.org/10.48597/3HFX-9MAV +https://doi.org/10.48597/WHPT-TQ9C +https://doi.org/10.48597/E3AX-NZZY +https://doi.org/10.48597/HNTC-NKFS +https://doi.org/10.48597/783D-KR6P +https://doi.org/10.48597/T6AD-ZQP6 +https://doi.org/10.48597/UGZX-46EQ +https://doi.org/10.48597/FMAV-SBH3 +https://doi.org/10.48597/UN4B-TA9D +https://doi.org/10.48597/9P4V-5GNU +https://doi.org/10.48597/3YJR-RZPS +https://doi.org/10.48597/ANPG-ASDY +https://doi.org/10.48597/GHSF-8CCE +https://doi.org/10.48597/GTHN-CQR7 +https://doi.org/10.48597/8JZN-J44C +https://doi.org/10.48597/ZJ6Y-VKYW +https://doi.org/10.48597/Z4WH-RM3Z +https://doi.org/10.48597/ZBXT-9KB9 +https://doi.org/10.48597/6M5B-65MV +https://doi.org/10.48597/TXCS-25MX +https://doi.org/10.48597/GBQA-PCCR +https://doi.org/10.48597/W26A-F9PJ +https://doi.org/10.48597/E73S-DKZ5 +https://doi.org/10.48597/KKRC-GR2G +https://doi.org/10.48597/HDAX-CBAZ +https://doi.org/10.48597/D5RK-NBCU +https://doi.org/10.48597/V823-X8MM +https://doi.org/10.48597/M636-9NHY +https://doi.org/10.48597/W4UV-8FC7 +https://doi.org/10.48597/Q4JA-PMUD +https://doi.org/10.48597/37Z3-WTQG +https://doi.org/10.48597/995P-EP5D +https://doi.org/10.48597/S96F-UCN8 +https://doi.org/10.48597/ZXQT-FWG7 +https://doi.org/10.48597/ETQQ-PQRU +https://doi.org/10.48597/AY75-YDAT +https://doi.org/10.48597/Z52G-GY5Z +https://doi.org/10.48597/F4Q4-49V4 +https://doi.org/10.48597/459D-9WEW +https://doi.org/10.48597/WAHK-RMX6 +https://doi.org/10.48597/CUH4-RR4C +https://doi.org/10.48597/57GP-KXAH +https://doi.org/10.48597/8QWV-NWA5 +https://doi.org/10.48597/DP6N-G8U5 +https://doi.org/10.48597/8EJ2-N5C5 +https://doi.org/10.48597/DHCJ-232T +https://doi.org/10.48597/SZ4A-726T +https://doi.org/10.48597/BSF4-JKDP +https://doi.org/10.48597/SBHW-G59Q +https://doi.org/10.48597/GBH6-23U5 +https://doi.org/10.48597/PQGM-2VAP +https://doi.org/10.48597/SSGS-EKYN +https://doi.org/10.48597/T3DY-V2FB +https://doi.org/10.48597/ZNS7-S5CE +https://doi.org/10.48597/4MDB-8W72 +https://doi.org/10.48597/65T5-WZ3B +https://doi.org/10.48597/95ZM-AF7X +https://doi.org/10.48597/KD36-U9UC +https://doi.org/10.48597/4HME-YKKE +https://doi.org/10.48597/UYHV-JK3U +https://doi.org/10.48597/TZ5N-BDGF +https://doi.org/10.48597/CPYY-VMTD +https://doi.org/10.48597/Z5QV-JQKK +https://doi.org/10.48597/PERN-XKHE +https://doi.org/10.48597/3AV9-YEM2 +https://doi.org/10.48597/DSAK-KXH9 +https://doi.org/10.48597/9Q5C-W47K +https://doi.org/10.48597/NGA3-QZ85 +https://doi.org/10.48597/U9J8-GYD8 +https://doi.org/10.48597/ENHW-G8YB +https://doi.org/10.48597/348U-SDNA +https://doi.org/10.48597/QCQF-TSCX +https://doi.org/10.48597/Z6UB-UHY9 +https://doi.org/10.48597/6NPT-Q6JJ +https://doi.org/10.48597/TBGW-T5WP +https://doi.org/10.48597/KCBQ-KEFZ +https://doi.org/10.48597/U45Z-9KNH +https://doi.org/10.48597/MTQU-MPTB +https://doi.org/10.48597/EPKC-6BA5 +https://doi.org/10.48597/PQAX-7YTE +https://doi.org/10.48597/KQ4S-8BZX +https://doi.org/10.48597/F6WK-E9XB +https://doi.org/10.48597/6266-BPXT +https://doi.org/10.48597/KZVG-NC7E +https://doi.org/10.48597/UJ46-73AC +https://doi.org/10.48597/D8GB-UFR3 +https://doi.org/10.48597/8QWS-2E3J +https://doi.org/10.48597/H3QW-76S7 +https://doi.org/10.48597/59JP-ACT9 +https://doi.org/10.48597/N8C9-N2YS +https://doi.org/10.48597/23XH-5MJU +https://doi.org/10.48597/U73Q-6Y4D +https://doi.org/10.48597/9DKZ-RNHT +https://doi.org/10.48597/WTX8-89SB +https://doi.org/10.48597/QHS3-EVA6 +https://doi.org/10.48597/E2K9-C5SZ +https://doi.org/10.48597/7HSR-7BBU +https://doi.org/10.48597/VW9T-JD3N +https://doi.org/10.48597/66WP-S338 +https://doi.org/10.48597/CYFQ-G3GM +https://doi.org/10.48597/ZANN-SYF7 +https://doi.org/10.48597/CA9R-G8N5 +https://doi.org/10.48597/SR6W-BB5W +https://doi.org/10.48597/D8WK-EN2Q +https://doi.org/10.48597/R64S-GH7G +https://doi.org/10.48597/3FRW-PEDT +https://doi.org/10.48597/WVBM-T8G9 +https://doi.org/10.48597/KKMM-F2PM +https://doi.org/10.48597/PSNC-A2AZ +https://doi.org/10.48597/RUAS-FM7Y +https://doi.org/10.48597/VXQV-4SYZ +https://doi.org/10.48597/TEGD-6G42 +https://doi.org/10.48597/4YA6-2SQF +https://doi.org/10.48597/VNAW-CPVP +https://doi.org/10.48597/YRRS-ZAKB +https://doi.org/10.48597/WJJD-8N78 +https://doi.org/10.48597/XRG4-JN78 +https://doi.org/10.48597/N37K-623Q +https://doi.org/10.48597/FY7T-QPU6 +https://doi.org/10.48597/H4EX-5H2C +https://doi.org/10.48597/R3AB-X353 +https://doi.org/10.48597/X3RS-G2CR +https://doi.org/10.48597/N2FW-CSTZ +https://doi.org/10.48597/JMZP-ASVH +https://doi.org/10.48597/CCWR-A8AE +https://doi.org/10.48597/YSC3-C2DA +https://doi.org/10.48597/TMPP-WKZM +https://doi.org/10.48597/Y9U9-ZN2X +https://doi.org/10.48597/67K4-U8MC +https://doi.org/10.48597/8X3Z-SVGK +https://doi.org/10.48597/A9UC-9SKR +https://doi.org/10.48597/VJ4R-TMNR +https://doi.org/10.48597/RFG9-K9JV +https://doi.org/10.48597/VQR3-SW45 +https://doi.org/10.48597/G2U6-EXQF +https://doi.org/10.48597/BB88-RWY8 +https://doi.org/10.48597/GVQN-6U67 +https://doi.org/10.48597/UWQE-YHSE +https://doi.org/10.48597/TT3S-JPA4 +https://doi.org/10.48597/HVHP-32Q6 +https://doi.org/10.48597/8YBH-VGKH +https://doi.org/10.48597/RTR5-SX8Q +https://doi.org/10.48597/MN68-ZJG5 +https://doi.org/10.48597/TEMW-KYGY +https://doi.org/10.48597/WE4E-9VUU +https://doi.org/10.48597/MEDS-ZA46 +https://doi.org/10.48597/3QWJ-K3X3 +https://doi.org/10.48597/SZJQ-H6GJ +https://doi.org/10.48597/22U8-WK52 +https://doi.org/10.48597/XGMP-5VS6 +https://doi.org/10.48597/4VEX-3MHY +https://doi.org/10.48597/2WRW-NF2U +https://doi.org/10.48597/MNSS-27ZV +https://doi.org/10.48597/NNDW-JVVB +https://doi.org/10.48597/RJQN-HCX6 +https://doi.org/10.48597/9P3B-NE4X +https://doi.org/10.48597/FJHV-9962 +https://doi.org/10.48597/FYYB-XKVF +https://doi.org/10.48597/EST5-XB6M +https://doi.org/10.48597/SPR8-RD8Y +https://doi.org/10.48597/TYVQ-N2KN +https://doi.org/10.48597/9NY2-MSVP +https://doi.org/10.48597/62FY-4BT4 +https://doi.org/10.48597/AEG2-CDFQ +https://doi.org/10.48597/V299-J9A8 +https://doi.org/10.48597/TYSS-PAYX +https://doi.org/10.48597/CJM9-CHWT +https://doi.org/10.48597/UVXA-AX43 +https://doi.org/10.48597/A9MR-VAZ9 +https://doi.org/10.48597/K2GS-KVEQ +https://doi.org/10.48597/TX86-YVYG +https://doi.org/10.48597/4F29-9NY2 +https://doi.org/10.48597/JTP8-BZX7 +https://doi.org/10.48597/WU8G-KG7X +https://doi.org/10.48597/RRKY-NXFY +https://doi.org/10.48597/X2HE-C2TP +https://doi.org/10.48597/Q46E-BZDR +https://doi.org/10.48597/X69P-5WNT +https://doi.org/10.48597/543V-P36R +https://doi.org/10.48597/UVF4-BQ9H +https://doi.org/10.48597/EH4J-UEQ5 +https://doi.org/10.48597/TJ77-6PZ2 +https://doi.org/10.48597/G5WH-UT6C +https://doi.org/10.48597/W3DY-VJGZ +https://doi.org/10.48597/UUYY-CYBE +https://doi.org/10.48597/65FH-BU88 +https://doi.org/10.48597/4T7T-WWXA +https://doi.org/10.48597/CCQY-JJTN +https://doi.org/10.48597/W7E3-9K9Y +https://doi.org/10.48597/N3X6-YW2K +https://doi.org/10.48597/H76K-FKME +https://doi.org/10.48597/FNYC-UXF5 +https://doi.org/10.48597/B4N5-RTR6 +https://doi.org/10.48597/N5QC-4GMK +https://doi.org/10.48597/2YVK-N436 +https://doi.org/10.48597/QRDR-ATVR +https://doi.org/10.48597/GH37-88PV +https://doi.org/10.48597/NC3M-2REW +https://doi.org/10.48597/YZTF-DCPV +https://doi.org/10.48597/XJHB-WS3Y +https://doi.org/10.48597/PTHU-NFXP +https://doi.org/10.48597/U5F2-R6DZ +https://doi.org/10.48597/E96J-W3C3 +https://doi.org/10.48597/SSQW-TSJT +https://doi.org/10.48597/SCDH-H2HH +https://doi.org/10.48597/Z9SP-82DW +https://doi.org/10.48597/PZHE-5BV2 +https://doi.org/10.48597/5GFG-HSJG +https://doi.org/10.48597/68N3-8N2G +https://doi.org/10.48597/Q7TR-YMUK +https://doi.org/10.48597/MQHA-USTQ +https://doi.org/10.48597/VC8K-W5UN +https://doi.org/10.48597/TSKC-PB67 +https://doi.org/10.48597/793F-EFUM +https://doi.org/10.48597/7HEU-QS2C +https://doi.org/10.48597/YAFY-F22D +https://doi.org/10.48597/3UB8-VYPN +https://doi.org/10.48597/XD8R-SEPV +https://doi.org/10.48597/F584-XHZF +https://doi.org/10.48597/ZTM9-GPXV +https://doi.org/10.48597/6VXA-S279 +https://doi.org/10.48597/F6DJ-6G5B +https://doi.org/10.48597/KX23-YM9A +https://doi.org/10.48597/S98E-QFYP +https://doi.org/10.48597/SG59-PTZU +https://doi.org/10.48597/4NAT-TFUC +https://doi.org/10.48597/XKAQ-QFC5 +https://doi.org/10.48597/Y3HU-XJJX +https://doi.org/10.48597/C48U-9MQT +https://doi.org/10.48597/ZET9-5HW2 +https://doi.org/10.48597/9SCV-DDSG +https://doi.org/10.48597/EZT6-BZJ7 +https://doi.org/10.48597/E6MH-YG58 +https://doi.org/10.48597/HVPY-2R2M +https://doi.org/10.48597/ZKTQ-CSA9 +https://doi.org/10.48597/HPEN-TWJK +https://doi.org/10.48597/NZRK-NYAK +https://doi.org/10.48597/J27M-NANF +https://doi.org/10.48597/DJ7T-6ZFV +https://doi.org/10.48597/PN8B-US6R +https://doi.org/10.48597/4M6H-5KUY +https://doi.org/10.48597/S29W-TJMH +https://doi.org/10.48597/9VNV-EWZV +https://doi.org/10.48597/FFHQ-UR7B +https://doi.org/10.48597/2262-WHFW +https://doi.org/10.48597/422P-8G6Q +https://doi.org/10.48597/QCKZ-UFSX +https://doi.org/10.48597/E4AS-N3G9 +https://doi.org/10.48597/MBZG-EW5W +https://doi.org/10.48597/D2FS-TVFR +https://doi.org/10.48597/TPJW-J6KB +https://doi.org/10.48597/Z6HR-KYFS +https://doi.org/10.48597/T3SB-DZPE +https://doi.org/10.48597/56AK-69X5 +https://doi.org/10.48597/RGN9-6X8E +https://doi.org/10.48597/KTKU-RQJ5 +https://doi.org/10.48597/9HKN-S3TQ +https://doi.org/10.48597/G43B-3RPD +https://doi.org/10.48597/QCPF-4Y7M +https://doi.org/10.48597/FZSP-CPS2 +https://doi.org/10.48597/DPB2-KAFC +https://doi.org/10.48597/7Q5P-5N5A +https://doi.org/10.48597/6EUH-RYDF +https://doi.org/10.48597/ADVF-6RSF +https://doi.org/10.48597/PZ5N-QTTA +https://doi.org/10.48597/JK6K-MA4D +https://doi.org/10.48597/5F56-UEE8 +https://doi.org/10.48597/6W2F-SZF4 +https://doi.org/10.48597/HDV8-ZKRB +https://doi.org/10.48597/6RFM-MYF9 +https://doi.org/10.48597/8AKE-MJ5X +https://doi.org/10.48597/8NSK-7UWW +https://doi.org/10.48597/NCZQ-D3VW +https://doi.org/10.48597/5JEN-Y2RJ +https://doi.org/10.48597/G8V2-V496 +https://doi.org/10.48597/VNRY-5E4J +https://doi.org/10.48597/XNW8-VQQS +https://doi.org/10.48597/B3DT-PACU +https://doi.org/10.48597/5JJZ-WRZ3 +https://doi.org/10.48597/EB3A-67TG +https://doi.org/10.48597/K549-UR5N +https://doi.org/10.48597/WTDY-HTGN +https://doi.org/10.48597/QPH6-554Y +https://doi.org/10.48597/A68X-2JEH +https://doi.org/10.48597/4JBT-YXMG +https://doi.org/10.48597/K454-8DCN +https://doi.org/10.48597/28UM-B7QM +https://doi.org/10.48597/EMQF-WX7U +https://doi.org/10.48597/39Q3-SYXY +https://doi.org/10.48597/BB5G-27Y3 +https://doi.org/10.48597/BDPP-SCVH +https://doi.org/10.48597/KC7S-5HN4 +https://doi.org/10.48597/UAVW-PXGV +https://doi.org/10.48597/SY9M-J58J +https://doi.org/10.48597/MQEF-GKP2 +https://doi.org/10.48597/XSBJ-43AE +https://doi.org/10.48597/A56P-WV33 +https://doi.org/10.48597/QDYS-SWRZ +https://doi.org/10.48597/U7TJ-6K3F +https://doi.org/10.48597/FRNH-CS7C +https://doi.org/10.48597/DRVT-JQV3 +https://doi.org/10.48597/BQV3-MKN5 +https://doi.org/10.48597/QT4G-2PNZ +https://doi.org/10.48597/JK5T-AGBH +https://doi.org/10.48597/WMZY-5CWC +https://doi.org/10.48597/4G72-GHUB +https://doi.org/10.48597/26FY-HVDZ +https://doi.org/10.48597/FT5X-TQ9M +https://doi.org/10.48597/Q97D-W8XY +https://doi.org/10.48597/VP9B-YRZX +https://doi.org/10.48597/ASYS-ZC4P +https://doi.org/10.48597/Y38Z-YVTD +https://doi.org/10.48597/YWFD-GHVT +https://doi.org/10.48597/Z9DJ-MF8M +https://doi.org/10.48597/F9KM-BCSE +https://doi.org/10.48597/UFGU-P3F5 +https://doi.org/10.48597/U6X8-TA8F +https://doi.org/10.48597/UTMF-WBE5 +https://doi.org/10.48597/PQ7C-RTXS +https://doi.org/10.48597/NWPU-XH8V +https://doi.org/10.48597/DYUS-8UKD +https://doi.org/10.48597/FDXT-QKZ2 +https://doi.org/10.48597/GETP-4K45 +https://doi.org/10.48597/JP4Q-YV66 +https://doi.org/10.48597/F6D9-75GS +https://doi.org/10.48597/BGYK-YF4H +https://doi.org/10.48597/BYQY-M4U7 +https://doi.org/10.48597/YPK9-TXH4 +https://doi.org/10.48597/QJNR-MSJB +https://doi.org/10.48597/4MGD-8KUZ +https://doi.org/10.48597/RWKE-SKS7 +https://doi.org/10.48597/P3PG-5KZG +https://doi.org/10.48597/5JKX-UUKQ +https://doi.org/10.48597/XCKJ-B22A +https://doi.org/10.48597/5CWS-C3RB +https://doi.org/10.48597/D24E-UZBM +https://doi.org/10.48597/D4A9-YNS2 +https://doi.org/10.48597/SF4P-FGYR +https://doi.org/10.48597/QZSV-CVG6 +https://doi.org/10.48597/ENAT-Z6AF +https://doi.org/10.48597/FGHV-4FQT +https://doi.org/10.48597/7YE8-PEB3 +https://doi.org/10.48597/V7CS-4P3X +https://doi.org/10.48597/ZQ96-X5NF +https://doi.org/10.48597/5NNX-QEGK +https://doi.org/10.48597/YGK2-APAB +https://doi.org/10.48597/T52X-5GV4 +https://doi.org/10.48597/NZAW-GQFB +https://doi.org/10.48597/GWYN-4YVK +https://doi.org/10.48597/ANZB-WZKA +https://doi.org/10.48597/2MDG-CD6Z +https://doi.org/10.48597/AYCF-T2XC +https://doi.org/10.48597/YCYP-R5WP +https://doi.org/10.48597/5YP7-M7PS +https://doi.org/10.48597/2UCW-G9R8 +https://doi.org/10.48597/VWDU-26SD +https://doi.org/10.48597/B4GM-KS4J +https://doi.org/10.48597/5VZ2-6D2T +https://doi.org/10.48597/AVCT-FPNE +https://doi.org/10.48597/89FJ-JH3V +https://doi.org/10.48597/4CAC-MX7R +https://doi.org/10.48597/WZSZ-HUW8 +https://doi.org/10.48597/BJXY-KHBV +https://doi.org/10.48597/734H-ZJ4D +https://doi.org/10.48597/JZFV-3CU7 +https://doi.org/10.48597/WHHC-DU6Q +https://doi.org/10.48597/JCWT-PVKE +https://doi.org/10.48597/3E69-ZZ95 +https://doi.org/10.48597/8BBM-ABAH +https://doi.org/10.48597/HWVE-6YDE +https://doi.org/10.48597/M4VY-SB34 +https://doi.org/10.48597/X3Q8-GSZX +https://doi.org/10.48597/FJW7-SX3U +https://doi.org/10.48597/CHCY-6KPC +https://doi.org/10.48597/SSCP-BTNG +https://doi.org/10.48597/EJ92-TQJH +https://doi.org/10.48597/RP9S-9PKU +https://doi.org/10.48597/M24R-JBPU +https://doi.org/10.48597/NC26-ZPD9 +https://doi.org/10.48597/YUAT-WF9B +https://doi.org/10.48597/5QV3-GM7F +https://doi.org/10.48597/BRQ2-RS78 +https://doi.org/10.48597/XKWD-GZ6Z +https://doi.org/10.48597/FD6W-CBM2 +https://doi.org/10.48597/K9VF-R2JK +https://doi.org/10.48597/Q77X-8UZN +https://doi.org/10.48597/8F75-HP4E +https://doi.org/10.48597/2J7F-VNK8 +https://doi.org/10.48597/FMQT-SRQR +https://doi.org/10.48597/XMGH-9QKD +https://doi.org/10.48597/AJK2-RCTU +https://doi.org/10.48597/BJMQ-ZZYA +https://doi.org/10.48597/XN7W-5PG2 +https://doi.org/10.48597/YMDZ-9ZDF +https://doi.org/10.48597/E3CC-MC6G +https://doi.org/10.48597/WB3P-DWWK +https://doi.org/10.48597/46EZ-89UF +https://doi.org/10.48597/HPGJ-7J9D +https://doi.org/10.48597/5JX8-2JC2 +https://doi.org/10.48597/SBTC-3QM2 +https://doi.org/10.48597/3USC-HZYH +https://doi.org/10.48597/GHCT-8YWF +https://doi.org/10.48597/J7ZY-X6GJ +https://doi.org/10.48597/ACHM-XBKT +https://doi.org/10.48597/4JAX-24NE +https://doi.org/10.48597/VA36-JMX8 +https://doi.org/10.48597/EAAA-DKCJ +https://doi.org/10.48597/T8P4-HZZK +https://doi.org/10.48597/PTMB-MRUY +https://doi.org/10.48597/RNNW-3JDR +https://doi.org/10.48597/FWN6-36BS +https://doi.org/10.48597/DBNM-6KNZ +https://doi.org/10.48597/Q9NE-M4KG +https://doi.org/10.48597/UK3P-4673 +https://doi.org/10.48597/PJEG-FWBA +https://doi.org/10.48597/MT8F-QTS5 +https://doi.org/10.48597/Q6A3-ZEN7 +https://doi.org/10.48597/SVSH-TQ3B +https://doi.org/10.48597/4R2Y-ANBE +https://doi.org/10.48597/E5JB-H7UV +https://doi.org/10.48597/QRUZ-AW9N +https://doi.org/10.48597/ZJCB-S23H +https://doi.org/10.48597/TAER-YH7N +https://doi.org/10.48597/X8JP-PAV8 +https://doi.org/10.48597/8ENT-CX4E +https://doi.org/10.48597/DXHJ-Y85R +https://doi.org/10.48597/NHST-WD79 +https://doi.org/10.48597/4558-KTHE +https://doi.org/10.48597/E5DT-YSFY +https://doi.org/10.48597/V6AH-BNJM +https://doi.org/10.48597/TNMS-9RC5 +https://doi.org/10.48597/A8RA-9T62 +https://doi.org/10.48597/3MB8-ZH79 +https://doi.org/10.48597/5C65-84C8 +https://doi.org/10.48597/PUUP-X2KA +https://doi.org/10.48597/S39F-P8VE +https://doi.org/10.48597/694N-BUGW +https://doi.org/10.48597/YH5H-7DSX +https://doi.org/10.48597/K8JZ-R5K5 +https://doi.org/10.48597/B3V9-V2QF +https://doi.org/10.48597/5KZS-WTUY +https://doi.org/10.48597/8ZCV-MPAR +https://doi.org/10.48597/DHGS-A3UP +https://doi.org/10.48597/NP2J-RNH6 +https://doi.org/10.48597/M8R6-UQNR +https://doi.org/10.48597/2N2B-43QK +https://doi.org/10.48597/QSTW-PC2X +https://doi.org/10.48597/EKHZ-X5XJ +https://doi.org/10.48597/5T9T-HGF9 +https://doi.org/10.48597/6UXG-TWU2 +https://doi.org/10.48597/3S66-8N4W +https://doi.org/10.48597/F4AV-R2Y3 +https://doi.org/10.48597/MDKF-HVXD +https://doi.org/10.48597/EWCR-Z8CC +https://doi.org/10.48597/7EHT-X4HR +https://doi.org/10.48597/E7VD-WTZY +https://doi.org/10.48597/8NJP-3NBP +https://doi.org/10.48597/V3FC-C472 +https://doi.org/10.48597/AVF6-MKHB +https://doi.org/10.48597/Y479-BJA4 +https://doi.org/10.48597/ER99-XFXH +https://doi.org/10.48597/5TZX-7VJB +https://doi.org/10.48597/SYDS-T8EW +https://doi.org/10.48597/JYEY-VCAM +https://doi.org/10.48597/DH3D-XBBZ +https://doi.org/10.48597/HU2U-QPVT +https://doi.org/10.48597/3JDW-Q893 +https://doi.org/10.48597/3ZCJ-5XRC +https://doi.org/10.48597/EFNW-88K8 +https://doi.org/10.48597/FV6K-AZRM +https://doi.org/10.48597/MNCP-5QRJ +https://doi.org/10.48597/RJ4F-Z7UV +https://doi.org/10.48597/3BZY-WEC3 +https://doi.org/10.48597/6355-B8EW +https://doi.org/10.48597/V52Q-5P4A +https://doi.org/10.48597/WSYB-Z295 +https://doi.org/10.48597/UN4Z-2S5Y +https://doi.org/10.48597/C9RK-PCXW +https://doi.org/10.48597/CBCK-VZ2X +https://doi.org/10.48597/8CF6-KKRW +https://doi.org/10.48597/CMZ8-NKMG +https://doi.org/10.48597/59YS-5G7K +https://doi.org/10.48597/9P43-UJC2 +https://doi.org/10.48597/NQPJ-4QMJ +https://doi.org/10.48597/B242-H84H +https://doi.org/10.48597/AM6X-7WF3 +https://doi.org/10.48597/F7PK-PQKF +https://doi.org/10.48597/N6JH-FAV2 +https://doi.org/10.48597/XBKU-EGYF +https://doi.org/10.48597/8YHT-Q949 +https://doi.org/10.48597/V9VS-7ZF4 +https://doi.org/10.48597/A75P-TRE4 +https://doi.org/10.48597/4DSN-FHCX +https://doi.org/10.48597/CDQD-W3DG +https://doi.org/10.48597/HNK2-W2VM +https://doi.org/10.48597/SHVZ-9DV4 +https://doi.org/10.48597/K5HK-76FY +https://doi.org/10.48597/T87G-9MTN +https://doi.org/10.48597/GW78-EAMK +https://doi.org/10.48597/WSX6-ZP5E +https://doi.org/10.48597/BAG9-5884 +https://doi.org/10.48597/HGDN-JWUZ +https://doi.org/10.48597/VDBX-GMKP +https://doi.org/10.48597/9VRC-D5RT +https://doi.org/10.48597/442U-26MP +https://doi.org/10.48597/34D5-7MG9 +https://doi.org/10.48597/3AHJ-5Q32 +https://doi.org/10.48597/R5ET-KA45 +https://doi.org/10.48597/9B98-AXHD +https://doi.org/10.48597/9XQA-T6M6 +https://doi.org/10.48597/TTXC-R8QY +https://doi.org/10.48597/2T2J-BR6F +https://doi.org/10.48597/XNSM-EAAP +https://doi.org/10.48597/GUUY-8DND +https://doi.org/10.48597/THZD-DTSQ +https://doi.org/10.48597/PB9Z-TYMU +https://doi.org/10.48597/5XNF-HBGH +https://doi.org/10.48597/QAN8-2EQH +https://doi.org/10.48597/8JJ9-XJN2 +https://doi.org/10.48597/RZKJ-TPP4 +https://doi.org/10.48597/VNXG-HX59 +https://doi.org/10.48597/U9EN-UF5W +https://doi.org/10.48597/93U8-2V3A +https://doi.org/10.48597/YB6H-H2A6 +https://doi.org/10.48597/K2P8-Y96J +https://doi.org/10.48597/3UQN-E7WR +https://doi.org/10.48597/BZF3-SQUB +https://doi.org/10.48597/ESZE-KBW3 +https://doi.org/10.48597/BC3W-ANAA +https://doi.org/10.48597/9DMX-V4RC +https://doi.org/10.48597/NBP7-NWTN +https://doi.org/10.48597/J35Q-QFXM +https://doi.org/10.48597/BRNP-2SFN +https://doi.org/10.48597/E4EY-J55Q +https://doi.org/10.48597/7XCN-BPKU +https://doi.org/10.48597/492E-5JQ9 +https://doi.org/10.48597/A9V2-AFPY +https://doi.org/10.48597/VRMP-3UCA +https://doi.org/10.48597/VSH7-U2WR +https://doi.org/10.48597/7EQ9-G9UN +https://doi.org/10.48597/HCJP-QM6G +https://doi.org/10.48597/JZVR-2GZR +https://doi.org/10.48597/C3E5-UGRZ +https://doi.org/10.48597/99YT-22SX +https://doi.org/10.48597/NU57-6UDJ +https://doi.org/10.48597/5XDV-UQYG +https://doi.org/10.48597/6FFJ-B8JS +https://doi.org/10.48597/5X8D-2JUF +https://doi.org/10.48597/6UPW-HC9H +https://doi.org/10.48597/V3MN-G5X2 +https://doi.org/10.48597/5S6K-H39X +https://doi.org/10.48597/HBD5-WR99 +https://doi.org/10.48597/N697-NBY6 +https://doi.org/10.48597/JKQH-ZUSF +https://doi.org/10.48597/SRE6-BF28 +https://doi.org/10.48597/8VZ6-TZJA +https://doi.org/10.48597/ERJW-SCNZ +https://doi.org/10.48597/NP7U-DYX8 +https://doi.org/10.48597/PUHN-F4QQ +https://doi.org/10.48597/KMRF-476Y +https://doi.org/10.48597/QSKE-AJKZ +https://doi.org/10.48597/PXCQ-Z4A6 +https://doi.org/10.48597/RMQR-TQNQ +https://doi.org/10.48597/PZKN-RW6E +https://doi.org/10.48597/Q72E-9MMW +https://doi.org/10.48597/88SP-XV62 +https://doi.org/10.48597/WT2U-Y7QR +https://doi.org/10.48597/NASN-PAXB +https://doi.org/10.48597/USBT-9CSM +https://doi.org/10.48597/U7ZR-GUU4 +https://doi.org/10.48597/N3UX-J8T5 +https://doi.org/10.48597/5TNT-KK2K +https://doi.org/10.48597/QZ9U-DJQU +https://doi.org/10.48597/V2JW-VG6B +https://doi.org/10.48597/JMVU-WSUF +https://doi.org/10.48597/26SN-S6TW +https://doi.org/10.48597/CMQB-83B8 +https://doi.org/10.48597/MFN5-GU5R +https://doi.org/10.48597/Q9QJ-KQCH +https://doi.org/10.48597/4MES-VPNU +https://doi.org/10.48597/242K-MFK9 +https://doi.org/10.48597/B3NA-BYQK +https://doi.org/10.48597/WNUS-J42G +https://doi.org/10.48597/M8GM-M6KW +https://doi.org/10.48597/KN5C-ZRQ9 +https://doi.org/10.48597/SG6B-DRBW +https://doi.org/10.48597/Q7XZ-3VDW +https://doi.org/10.48597/XQGA-KB4P +https://doi.org/10.48597/QB4A-UUM8 +https://doi.org/10.48597/2F7D-C2B5 +https://doi.org/10.48597/VCSK-6NFM +https://doi.org/10.48597/AWV7-7H2U +https://doi.org/10.48597/XH5G-A65K +https://doi.org/10.48597/HXB2-NKND +https://doi.org/10.48597/AGY9-QWTB +https://doi.org/10.48597/9X2T-Z4ZE +https://doi.org/10.48597/5NNB-V69W +https://doi.org/10.48597/7PWJ-KQZ4 +https://doi.org/10.48597/3PAH-32ZQ +https://doi.org/10.48597/XW6X-XWTP +https://doi.org/10.48597/SFW2-QVUW +https://doi.org/10.48597/S5FW-HDWH +https://doi.org/10.48597/QB5G-VWHY +https://doi.org/10.48597/PX66-B6FZ +https://doi.org/10.48597/MEMK-SKS5 +https://doi.org/10.48597/VWS2-NKBS +https://doi.org/10.48597/29BM-J3X9 +https://doi.org/10.48597/EJAQ-ANQ2 +https://doi.org/10.48597/KSFZ-9VMF +https://doi.org/10.48597/XCHJ-WYXH +https://doi.org/10.48597/UHF6-AUVM +https://doi.org/10.48597/NEKT-X8TX +https://doi.org/10.48597/CHVH-SKVB +https://doi.org/10.48597/JKSX-GHSA +https://doi.org/10.48597/WFA2-PY83 +https://doi.org/10.48597/WPKH-M47S +https://doi.org/10.48597/5M5W-6P3P +https://doi.org/10.48597/636C-AWSY +https://doi.org/10.48597/4EXZ-FGA4 +https://doi.org/10.48597/NH29-CVG3 +https://doi.org/10.48597/EYE4-ZMHZ +https://doi.org/10.48597/C525-R4HB +https://doi.org/10.48597/GC47-FCBP +https://doi.org/10.48597/AN3A-YDXU +https://doi.org/10.48597/N9KA-27DG +https://doi.org/10.48597/D9GS-PJPK +https://doi.org/10.48597/JADJ-SBTM +https://doi.org/10.48597/CZ2X-RK2B +https://doi.org/10.48597/BGEE-475V +https://doi.org/10.48597/PWA9-G2ZN +https://doi.org/10.48597/S8FT-QD2U +https://doi.org/10.48597/PDX7-HFKE +https://doi.org/10.48597/DF77-E8AH +https://doi.org/10.48597/BKKR-5KYB +https://doi.org/10.48597/SSTJ-79VZ +https://doi.org/10.48597/XBWC-EE6B +https://doi.org/10.48597/QYJQ-NVEK +https://doi.org/10.48597/7XKS-AZZT +https://doi.org/10.48597/RYMH-UYSX +https://doi.org/10.48597/U8ZE-KMWQ +https://doi.org/10.48597/32EA-YJUH +https://doi.org/10.48597/QEB8-RH4Y +https://doi.org/10.48597/KMSZ-DN7B +https://doi.org/10.48597/G2BE-2N9Z +https://doi.org/10.48597/WV9S-FVKC +https://doi.org/10.48597/R5VF-E8JM +https://doi.org/10.48597/7HF7-W49U +https://doi.org/10.48597/F3VA-PPE5 +https://doi.org/10.48597/H29W-UPTV +https://doi.org/10.48597/64PQ-X9F2 +https://doi.org/10.48597/3HSU-28MU +https://doi.org/10.48597/J2AH-4GH6 +https://doi.org/10.48597/8NDX-V6DQ +https://doi.org/10.48597/DH9Z-WA5Q +https://doi.org/10.48597/BQP8-NF9P +https://doi.org/10.48597/TAJF-5AKS +https://doi.org/10.48597/936Y-8UTP +https://doi.org/10.48597/9BBF-2WGR +https://doi.org/10.48597/8GAB-S2KZ +https://doi.org/10.48597/76VZ-5UZT +https://doi.org/10.48597/8NT9-7JRX +https://doi.org/10.48597/VZCN-XX2J +https://doi.org/10.48597/YVSR-5ZCP +https://doi.org/10.48597/4635-CYPK +https://doi.org/10.48597/488A-GSAK +https://doi.org/10.48597/56B2-RUUR +https://doi.org/10.48597/UVES-VF34 +https://doi.org/10.48597/MU76-RTUE +https://doi.org/10.48597/4B7T-98FP +https://doi.org/10.48597/W9EA-VVCE +https://doi.org/10.48597/M3ZY-JCJG +https://doi.org/10.48597/UWNF-V329 +https://doi.org/10.48597/MD9G-EK4C +https://doi.org/10.48597/XQYA-C7ZF +https://doi.org/10.48597/EDEM-F38B +https://doi.org/10.48597/JKYZ-4QCF +https://doi.org/10.48597/SWSC-K78B +https://doi.org/10.48597/GMPP-52B7 +https://doi.org/10.48597/WBA2-WUV6 +https://doi.org/10.48597/CDDW-YGVH +https://doi.org/10.48597/C6GF-9QUH +https://doi.org/10.48597/4NN7-GZHV +https://doi.org/10.48597/Q5NN-G2FB +https://doi.org/10.48597/WNRW-U8AQ +https://doi.org/10.48597/CGNX-5WSG +https://doi.org/10.48597/FT7U-UA85 +https://doi.org/10.48597/SAW4-JCBD +https://doi.org/10.48597/QTHT-P55V +https://doi.org/10.48597/V58E-ABSD +https://doi.org/10.48597/R9PQ-ZUP5 +https://doi.org/10.48597/BBZ7-4TCC +https://doi.org/10.48597/RNQS-RMVS +https://doi.org/10.48597/ZMWC-GZHE +https://doi.org/10.48597/9BCX-Y235 +https://doi.org/10.48597/HGFA-UZMC +https://doi.org/10.48597/48CB-976Q +https://doi.org/10.48597/NVNY-WWKM +https://doi.org/10.48597/UURG-6Q9Q +https://doi.org/10.48597/78U2-X8NP +https://doi.org/10.48597/PCG3-CAX7 +https://doi.org/10.48597/7DR3-MVGM +https://doi.org/10.48597/VJTM-995X +https://doi.org/10.48597/VJBV-WQNR +https://doi.org/10.48597/MG3V-E64C +https://doi.org/10.48597/NR6W-RHG5 +https://doi.org/10.48597/4M34-873S +https://doi.org/10.48597/EV7B-656H +https://doi.org/10.48597/YM5G-SA4R +https://doi.org/10.48597/SYZD-TJGD +https://doi.org/10.48597/HAR8-C8P5 +https://doi.org/10.48597/6X87-F9BX +https://doi.org/10.48597/YGBT-K889 +https://doi.org/10.48597/X8GS-HZP8 +https://doi.org/10.48597/ZVT2-6SUF +https://doi.org/10.48597/HZX7-WE7Z +https://doi.org/10.48597/PW2Q-WTZG +https://doi.org/10.48597/XXT8-P5DA +https://doi.org/10.48597/Q9MQ-2V9R +https://doi.org/10.48597/T8EZ-STE5 +https://doi.org/10.48597/FN9W-Z4Z9 +https://doi.org/10.48597/8U6J-QTKV +https://doi.org/10.48597/ZQAP-PAH5 +https://doi.org/10.48597/24E4-BBHF +https://doi.org/10.48597/DXJQ-QYVY +https://doi.org/10.48597/G33B-FQUR +https://doi.org/10.48597/4ESW-9CTK +https://doi.org/10.48597/QCBD-CAZ4 +https://doi.org/10.48597/3B8N-UH7D +https://doi.org/10.48597/Y73U-4GZA +https://doi.org/10.48597/75WG-WV57 +https://doi.org/10.48597/WH7C-GASF +https://doi.org/10.48597/XPBU-9GGM +https://doi.org/10.48597/HGRZ-B8ZB +https://doi.org/10.48597/ACCB-RJQD +https://doi.org/10.48597/BNJD-GK6Y +https://doi.org/10.48597/EXTU-R3SV +https://doi.org/10.48597/VZZS-X7ER +https://doi.org/10.48597/4EE2-8ERQ +https://doi.org/10.48597/DSEZ-UKT5 +https://doi.org/10.48597/QMQN-R2M9 +https://doi.org/10.48597/SFVA-SAHN +https://doi.org/10.48597/RE7D-CVXV +https://doi.org/10.48597/J9GD-EDHP +https://doi.org/10.48597/KGGA-X9D4 +https://doi.org/10.48597/3R7B-CBZD +https://doi.org/10.48597/AFHQ-JFE8 +https://doi.org/10.48597/X7A4-76Q4 +https://doi.org/10.48597/4A7J-ZGFB +https://doi.org/10.48597/ZMZZ-H2CE +https://doi.org/10.48597/GE3Q-JQJS +https://doi.org/10.48597/K3DC-QF4Z +https://doi.org/10.48597/G5KY-F49Y +https://doi.org/10.48597/Q7AD-BYF2 +https://doi.org/10.48597/TZEH-A7W6 +https://doi.org/10.48597/EKZT-W3EQ +https://doi.org/10.48597/9MMX-8UA6 +https://doi.org/10.48597/D5RE-7Q7W +https://doi.org/10.48597/7WJ7-VYVA +https://doi.org/10.48597/TRBF-WEHZ +https://doi.org/10.48597/EUG8-XXJZ +https://doi.org/10.48597/5N8W-ZTCD +https://doi.org/10.48597/26R8-FZBB +https://doi.org/10.48597/32T4-XPSM +https://doi.org/10.48597/M686-HY72 +https://doi.org/10.48597/6W38-8H88 +https://doi.org/10.48597/DEGP-NCEW +https://doi.org/10.48597/W22D-RG22 +https://doi.org/10.48597/6XNU-S3SG +https://doi.org/10.48597/UQKZ-3R8P +https://doi.org/10.48597/H526-R4NQ +https://doi.org/10.48597/556D-BPRJ +https://doi.org/10.48597/2NB5-UCKS +https://doi.org/10.48597/ZBSH-NSUQ +https://doi.org/10.48597/JKWR-CS2R +https://doi.org/10.48597/F8CV-YA4N +https://doi.org/10.48597/FGRV-P656 +https://doi.org/10.48597/QUG5-5JFX +https://doi.org/10.48597/4TDX-M6YD +https://doi.org/10.48597/SQ53-39PC +https://doi.org/10.48597/U2RE-CN4X +https://doi.org/10.48597/3GSW-PZ6F +https://doi.org/10.48597/7QZN-KZ6M +https://doi.org/10.48597/FECA-VU2Y +https://doi.org/10.48597/CDUZ-Q3EA +https://doi.org/10.48597/Q8QC-T2C2 +https://doi.org/10.48597/CVZ8-3F2Q +https://doi.org/10.48597/F2R5-87SV +https://doi.org/10.48597/NUV2-7R6B +https://doi.org/10.48597/VPDE-WMGD +https://doi.org/10.48597/EPHV-7JCD +https://doi.org/10.48597/STHB-CRTP +https://doi.org/10.48597/CNMU-T74H +https://doi.org/10.48597/3G7K-X5WA +https://doi.org/10.48597/JCP7-PW73 +https://doi.org/10.48597/A6CG-2FF2 +https://doi.org/10.48597/UHB8-TSUY +https://doi.org/10.48597/PVH9-CNJ2 +https://doi.org/10.48597/T4AN-TJYC +https://doi.org/10.48597/U7QF-BP2G +https://doi.org/10.48597/QJ9Y-5VB7 +https://doi.org/10.48597/36YN-UP64 +https://doi.org/10.48597/5N45-MNVK +https://doi.org/10.48597/UXRM-4W3Q +https://doi.org/10.48597/X4YF-H8ES +https://doi.org/10.48597/NZVR-7XT6 +https://doi.org/10.48597/SKVA-K2P8 +https://doi.org/10.48597/87TC-RM62 +https://doi.org/10.48597/DENR-NGV4 +https://doi.org/10.48597/9ND6-25RU +https://doi.org/10.48597/DTGP-9E7N +https://doi.org/10.48597/CURW-9ABD +https://doi.org/10.48597/SUMX-87VZ +https://doi.org/10.48597/7Z6F-G3RR +https://doi.org/10.48597/NV8Q-KC62 +https://doi.org/10.48597/JSNQ-6B9N +https://doi.org/10.48597/8TBM-5QF5 +https://doi.org/10.48597/MW89-BNHQ +https://doi.org/10.48597/G7PS-MFVH +https://doi.org/10.48597/TZME-TUQB +https://doi.org/10.48597/3N4A-Z2J8 +https://doi.org/10.48597/TG8X-A965 +https://doi.org/10.48597/7MC3-GQZT +https://doi.org/10.48597/U9MG-44WK +https://doi.org/10.48597/2E3H-V5E7 +https://doi.org/10.48597/FKV4-UKBV +https://doi.org/10.48597/87CV-Y845 +https://doi.org/10.48597/BR4Q-JFV6 +https://doi.org/10.48597/UZTA-DYYD +https://doi.org/10.48597/Y83P-77KQ +https://doi.org/10.48597/WYUD-SVQH +https://doi.org/10.48597/8CSM-2V6B +https://doi.org/10.48597/XDRR-D7AX +https://doi.org/10.48597/M4AT-G9TA +https://doi.org/10.48597/GUE5-DYUJ +https://doi.org/10.48597/VM6J-Y7WK +https://doi.org/10.48597/JYPK-JXXS +https://doi.org/10.48597/8RFH-9FSF +https://doi.org/10.48597/MJDT-NCFU +https://doi.org/10.48597/TUVA-W8RZ +https://doi.org/10.48597/TJPN-4B2S +https://doi.org/10.48597/948W-PF7B +https://doi.org/10.48597/ZFMC-V8V3 +https://doi.org/10.48597/J85T-NJVJ +https://doi.org/10.48597/GTQC-5MMV +https://doi.org/10.48597/2N77-C57A +https://doi.org/10.48597/767Q-GW2U +https://doi.org/10.48597/QKR3-73MZ +https://doi.org/10.48597/8TWF-M4YD +https://doi.org/10.48597/QGUP-GR5G +https://doi.org/10.48597/85HX-D2WX +https://doi.org/10.48597/74YB-GWX6 +https://doi.org/10.48597/NSYB-K88Z +https://doi.org/10.48597/ETNX-F5WN +https://doi.org/10.48597/YGVK-9CPN +https://doi.org/10.48597/9DWA-H54T +https://doi.org/10.48597/YMN8-YYAW +https://doi.org/10.48597/KJMR-5GDN +https://doi.org/10.48597/5WMT-6M4K +https://doi.org/10.48597/AE4Q-XBV6 +https://doi.org/10.48597/MJHN-GEY2 +https://doi.org/10.48597/BDV5-WN6C +https://doi.org/10.48597/MXX6-W3SB +https://doi.org/10.48597/STGQ-4633 +https://doi.org/10.48597/9493-4488 +https://doi.org/10.48597/A49T-99XU +https://doi.org/10.48597/6HWX-YDHP +https://doi.org/10.48597/G6VR-QECZ +https://doi.org/10.48597/8XSN-ZBKW +https://doi.org/10.48597/EC5T-ZMHZ +https://doi.org/10.48597/CGRW-RA3J +https://doi.org/10.48597/Q7HM-JGNW +https://doi.org/10.48597/K556-PZ73 +https://doi.org/10.48597/2MDM-GFRA +https://doi.org/10.48597/TBZ9-G3C7 +https://doi.org/10.48597/4QBN-P5DJ +https://doi.org/10.48597/SHWM-JUH9 +https://doi.org/10.48597/8J8H-M8YH +https://doi.org/10.48597/G7AK-3Z7Y +https://doi.org/10.48597/XSFA-DSNJ +https://doi.org/10.48597/PGED-RUJ5 +https://doi.org/10.48597/F2E6-UJ8S +https://doi.org/10.48597/SQUD-XV35 +https://doi.org/10.48597/FPPC-FW55 +https://doi.org/10.48597/WKEU-Q4BH +https://doi.org/10.48597/MMV6-UDKZ +https://doi.org/10.48597/39BY-2FZ3 +https://doi.org/10.48597/MNQH-3BFW +https://doi.org/10.48597/JVZZ-4GFS +https://doi.org/10.48597/BSHS-3DV7 +https://doi.org/10.48597/5ZGV-UQF9 +https://doi.org/10.48597/7FMP-7DUZ +https://doi.org/10.48597/MAPB-HWDC +https://doi.org/10.48597/H4YA-RV4Q +https://doi.org/10.48597/EAME-ENW2 +https://doi.org/10.48597/MSUT-M3J6 +https://doi.org/10.48597/7VH6-RMDD +https://doi.org/10.48597/52MF-5HR8 +https://doi.org/10.48597/NW79-6NKM +https://doi.org/10.48597/537G-X46Y +https://doi.org/10.48597/D9GV-FWVW +https://doi.org/10.48597/6KNM-W7AS +https://doi.org/10.48597/99TQ-XRC4 +https://doi.org/10.48597/TV33-SEU6 +https://doi.org/10.48597/A9RV-3R7H +https://doi.org/10.48597/GQVR-RE8J +https://doi.org/10.48597/VCFD-UFDR +https://doi.org/10.48597/RWFB-YVJM +https://doi.org/10.48597/TP8M-UBHU +https://doi.org/10.48597/RZZ3-HMQM +https://doi.org/10.48597/JWZK-UNCR +https://doi.org/10.48597/ZVS4-6JJN +https://doi.org/10.48597/7USK-FXY3 +https://doi.org/10.48597/V5SC-H5M8 +https://doi.org/10.48597/U47W-X3RH +https://doi.org/10.48597/GA3X-3UYD +https://doi.org/10.48597/H7A5-642V +https://doi.org/10.48597/5DSZ-8BWS +https://doi.org/10.48597/RMGD-GD5M +https://doi.org/10.48597/8ZQR-URKE +https://doi.org/10.48597/2JXR-9P4U +https://doi.org/10.48597/QXZV-XFCD +https://doi.org/10.48597/G6DV-8UBN +https://doi.org/10.48597/8GWZ-FEDA +https://doi.org/10.48597/5M3Q-CDJU +https://doi.org/10.48597/FJ4J-E7UA +https://doi.org/10.48597/T3WZ-KVNC +https://doi.org/10.48597/ASG8-GJP7 +https://doi.org/10.48597/2F64-XU4Z +https://doi.org/10.48597/TKUZ-ZVCY +https://doi.org/10.48597/DF3D-G38G +https://doi.org/10.48597/97PE-Y4K8 +https://doi.org/10.48597/7MWV-6JED +https://doi.org/10.48597/67QZ-JJ6E +https://doi.org/10.48597/H5XZ-WGE8 +https://doi.org/10.48597/VT7X-TQC7 +https://doi.org/10.48597/CDXE-PTVA +https://doi.org/10.48597/JCZE-AF7B +https://doi.org/10.48597/GRQT-9GFM +https://doi.org/10.48597/RN5C-2D3R +https://doi.org/10.48597/CXDA-FEPE +https://doi.org/10.48597/ERQE-7GKF +https://doi.org/10.48597/KQQ8-6Z84 +https://doi.org/10.48597/QY6W-S6JW +https://doi.org/10.48597/CFVU-982P +https://doi.org/10.48597/MMX3-GPF6 +https://doi.org/10.48597/MUUW-RZJK +https://doi.org/10.48597/YFHV-SWH3 +https://doi.org/10.48597/DJUQ-WYHX +https://doi.org/10.48597/YMYT-6R28 +https://doi.org/10.48597/9TP8-FQHR +https://doi.org/10.48597/52SX-FYMD +https://doi.org/10.48597/FVU4-NSRH +https://doi.org/10.48597/FC32-FUFQ +https://doi.org/10.48597/ZRFF-ST72 +https://doi.org/10.48597/HE5N-T8VT +https://doi.org/10.48597/3VUB-RGT4 +https://doi.org/10.48597/XJND-6G5R +https://doi.org/10.48597/ZP8S-TPCD +https://doi.org/10.48597/3UKQ-CVFB +https://doi.org/10.48597/29UV-DJGD +https://doi.org/10.48597/MYZQ-ECTJ +https://doi.org/10.48597/K7H9-6YVZ +https://doi.org/10.48597/25KH-XBSU +https://doi.org/10.48597/3SCM-TF5G +https://doi.org/10.48597/DRAP-583E +https://doi.org/10.48597/RBKJ-NA35 +https://doi.org/10.48597/JZWW-QSZT +https://doi.org/10.48597/VWVF-S987 +https://doi.org/10.48597/A48U-CT9Y +https://doi.org/10.48597/JN6E-AY3S +https://doi.org/10.48597/CD6S-PXBE +https://doi.org/10.48597/PNMC-KXQZ +https://doi.org/10.48597/JRNH-U3WH +https://doi.org/10.48597/Q2JT-KGQ5 +https://doi.org/10.48597/V9X9-HHVW +https://doi.org/10.48597/8TAH-23PZ +https://doi.org/10.48597/9E9S-SMQ2 +https://doi.org/10.48597/HBDU-SCYT +https://doi.org/10.48597/APDP-MYQK +https://doi.org/10.48597/VUYU-EFFQ +https://doi.org/10.48597/GPCZ-FMHA +https://doi.org/10.48597/SDDJ-VYFT +https://doi.org/10.48597/JNFU-X6R8 +https://doi.org/10.48597/3J3P-VJDB +https://doi.org/10.48597/MYGR-N2UE +https://doi.org/10.48597/AGW5-RAKU +https://doi.org/10.48597/5DJ2-8PD7 +https://doi.org/10.48597/979C-BUAW +https://doi.org/10.48597/DZ5P-2C9H +https://doi.org/10.48597/ZM2T-9CQX +https://doi.org/10.48597/7RG6-4WC6 +https://doi.org/10.48597/22RR-TP4N +https://doi.org/10.48597/Q8RG-EAN5 +https://doi.org/10.48597/9RSJ-8NTG +https://doi.org/10.48597/MP4V-AFDZ +https://doi.org/10.48597/9AWX-4KMW +https://doi.org/10.48597/UWBA-YNGR +https://doi.org/10.48597/TFKP-P6BV +https://doi.org/10.48597/V29Z-875S +https://doi.org/10.48597/4K3X-MQ9B +https://doi.org/10.48597/7WWW-WH4P +https://doi.org/10.48597/7DBJ-UHNY +https://doi.org/10.48597/MREY-C5ZH +https://doi.org/10.48597/4JPM-85TA +https://doi.org/10.48597/9WST-GK22 +https://doi.org/10.48597/K6ZP-W4ZW +https://doi.org/10.48597/X4G6-E2BN +https://doi.org/10.48597/32EA-CSUK +https://doi.org/10.48597/SRZ6-6V5Z +https://doi.org/10.48597/KK87-BU5Q +https://doi.org/10.48597/B2EE-EQU4 +https://doi.org/10.48597/W67T-KUF6 +https://doi.org/10.48597/RH53-N7UA +https://doi.org/10.48597/DHQ7-Y7WA +https://doi.org/10.48597/7EJN-Z89G +https://doi.org/10.48597/E93F-CBXG +https://doi.org/10.48597/6TDP-VY8M +https://doi.org/10.48597/WS82-JRGE +https://doi.org/10.48597/XBZV-ACCU +https://doi.org/10.48597/9FHX-WEMB +https://doi.org/10.48597/AC6D-N56G +https://doi.org/10.48597/2CR6-K47Z +https://doi.org/10.48597/DGVZ-RFEU +https://doi.org/10.48597/4FR5-V8KB +https://doi.org/10.48597/NNG7-4FC3 +https://doi.org/10.48597/7VMC-8BKV +https://doi.org/10.48597/D6VC-7R83 +https://doi.org/10.48597/92G2-8NZQ +https://doi.org/10.48597/B2BQ-KZZ3 +https://doi.org/10.48597/8642-6S66 +https://doi.org/10.48597/AY4N-MRD3 +https://doi.org/10.48597/JNFC-M8C9 +https://doi.org/10.48597/S5JM-T6JZ +https://doi.org/10.48597/XBPU-W2YP +https://doi.org/10.48597/YUP6-TWC5 +https://doi.org/10.48597/T3G6-M3U8 +https://doi.org/10.48597/GXPA-GPRQ +https://doi.org/10.48597/KQPX-CPJR +https://doi.org/10.48597/X65T-84RU +https://doi.org/10.48597/R63H-MR4D +https://doi.org/10.48597/MX27-U8V2 +https://doi.org/10.48597/4NMA-MGQW +https://doi.org/10.48597/Z4QA-TRSA +https://doi.org/10.48597/JFG2-2DDP +https://doi.org/10.48597/S9HY-EBBA +https://doi.org/10.48597/68RF-56GN +https://doi.org/10.48597/DDZW-WKR9 +https://doi.org/10.48597/TZUQ-QRS4 +https://doi.org/10.48597/W5ZH-YXNV +https://doi.org/10.48597/XX8T-3QZ7 +https://doi.org/10.48597/MR44-NBK2 +https://doi.org/10.48597/PYH5-T6GV +https://doi.org/10.48597/JTT2-9AG4 +https://doi.org/10.48597/WM8C-NBQY +https://doi.org/10.48597/ZWAT-QQQK +https://doi.org/10.48597/XJDK-D9UB +https://doi.org/10.48597/PGME-TEVJ +https://doi.org/10.48597/HHC2-7MTY +https://doi.org/10.48597/4PWP-F5J3 +https://doi.org/10.48597/7935-KP2P +https://doi.org/10.48597/TGSB-F4T6 +https://doi.org/10.48597/UWDD-RJ58 +https://doi.org/10.48597/UNXH-ESBX +https://doi.org/10.48597/PF33-GHDB +https://doi.org/10.48597/3C88-4DPK +https://doi.org/10.48597/DE9P-J6P9 +https://doi.org/10.48597/9WR4-QSVH +https://doi.org/10.48597/UKK3-DB3D +https://doi.org/10.48597/P2UT-CT8N +https://doi.org/10.48597/DEXC-AS2W +https://doi.org/10.48597/KNE2-3U8F +https://doi.org/10.48597/2MBX-H5WE +https://doi.org/10.48597/8AJ9-35XE +https://doi.org/10.48597/3R7P-V3NU +https://doi.org/10.48597/8KB5-453U +https://doi.org/10.48597/3MY2-T72Z +https://doi.org/10.48597/JKYD-CXQW +https://doi.org/10.48597/K8R9-H95T +https://doi.org/10.48597/E75H-GW5M +https://doi.org/10.48597/4SU8-77BN +https://doi.org/10.48597/NJFT-SCTE +https://doi.org/10.48597/3QCP-5BHT +https://doi.org/10.48597/22J9-VHEW +https://doi.org/10.48597/7UJQ-R6V4 +https://doi.org/10.48597/KEHA-7ZQR +https://doi.org/10.48597/GVQ2-FXHA +https://doi.org/10.48597/RNHJ-BHW8 +https://doi.org/10.48597/SY5E-H8D9 +https://doi.org/10.48597/9Y73-4DN3 +https://doi.org/10.48597/ZNNT-5VKX +https://doi.org/10.48597/BQYJ-V759 +https://doi.org/10.48597/7BZ4-Q8M3 +https://doi.org/10.48597/MKUX-KZSY +https://doi.org/10.48597/GR72-8SKR +https://doi.org/10.48597/HQ2K-KXGW +https://doi.org/10.48597/DX9U-877K +https://doi.org/10.48597/CSXG-B8PC +https://doi.org/10.48597/SARP-PAWG +https://doi.org/10.48597/XZKE-NWVM +https://doi.org/10.48597/PF5C-DVNG +https://doi.org/10.48597/KCQ3-GK7K +https://doi.org/10.48597/MT6F-VBHH +https://doi.org/10.48597/JNU7-8KYF +https://doi.org/10.48597/XCXE-HJED +https://doi.org/10.48597/4RBQ-H7S9 +https://doi.org/10.48597/UTZD-NUGP +https://doi.org/10.48597/Y447-8HYA +https://doi.org/10.48597/XPGW-VKP3 +https://doi.org/10.48597/QNB5-NXM2 +https://doi.org/10.48597/N4CM-ZGGP +https://doi.org/10.48597/MYYJ-M55V +https://doi.org/10.48597/DAZY-NEMA +https://doi.org/10.48597/3MK2-RTZC +https://doi.org/10.48597/FJ4B-VWXA +https://doi.org/10.48597/PSGM-83P2 +https://doi.org/10.48597/7T3A-ACM5 +https://doi.org/10.48597/FERN-VEPT +https://doi.org/10.48597/FP7T-HUYQ +https://doi.org/10.48597/6WRQ-NUTB +https://doi.org/10.48597/WYU7-WE66 +https://doi.org/10.48597/4T48-BQGU +https://doi.org/10.48597/8DEH-JEF8 +https://doi.org/10.48597/2CB5-M8WM +https://doi.org/10.48597/PTYP-CEPZ +https://doi.org/10.48597/RFB4-4MGR +https://doi.org/10.48597/3KG3-SHYD +https://doi.org/10.48597/ECJ3-VQZU +https://doi.org/10.48597/TATF-JSJV +https://doi.org/10.48597/CWDJ-VNK4 +https://doi.org/10.48597/FR7T-TX9S +https://doi.org/10.48597/SSG9-2KVM +https://doi.org/10.48597/ME9D-GE9W +https://doi.org/10.48597/ZXZ9-XEXB +https://doi.org/10.48597/NZZ7-HEQB +https://doi.org/10.48597/9W22-FNHM +https://doi.org/10.48597/K55A-Z9P2 +https://doi.org/10.48597/TETH-VK6T +https://doi.org/10.48597/PZ3T-YPMD +https://doi.org/10.48597/FHDN-7VE6 +https://doi.org/10.48597/NCF2-252B +https://doi.org/10.48597/8TJ3-HTEC +https://doi.org/10.48597/34E9-9JKN +https://doi.org/10.48597/XU8G-ZUCM +https://doi.org/10.48597/VX7N-QSVB +https://doi.org/10.48597/7TJH-KAWP +https://doi.org/10.48597/QTP9-3XY2 +https://doi.org/10.48597/4QQ8-HD52 +https://doi.org/10.48597/F3N3-4DZC +https://doi.org/10.48597/ZJFH-9F5Z +https://doi.org/10.48597/7G38-69QN +https://doi.org/10.48597/AQU7-FQDE +https://doi.org/10.48597/ZKQU-Y4FA +https://doi.org/10.48597/XSVM-UP3H +https://doi.org/10.48597/7HZQ-8QXS +https://doi.org/10.48597/AY8T-3ZZH +https://doi.org/10.48597/GEKS-VMYX +https://doi.org/10.48597/4WRW-FJ2Z +https://doi.org/10.48597/9C64-58KS +https://doi.org/10.48597/ZUP5-ATGD +https://doi.org/10.48597/K22R-NWZW +https://doi.org/10.48597/JUUU-8RYF +https://doi.org/10.48597/XZ79-PK53 +https://doi.org/10.48597/EAMS-6TEU +https://doi.org/10.48597/CRDQ-P5E7 +https://doi.org/10.48597/5E9Q-DBND +https://doi.org/10.48597/YSDB-CNG2 +https://doi.org/10.48597/KED2-AWNK +https://doi.org/10.48597/SC76-NFZ5 +https://doi.org/10.48597/C8WN-U23G +https://doi.org/10.48597/735R-QWMD +https://doi.org/10.48597/BRUT-JB64 +https://doi.org/10.48597/UEPQ-UPET +https://doi.org/10.48597/ERSV-6HP2 +https://doi.org/10.48597/UGKM-5CYG +https://doi.org/10.48597/9ZPG-QX9S +https://doi.org/10.48597/HHXZ-DJD2 +https://doi.org/10.48597/9QCV-9CKV +https://doi.org/10.48597/ZHDR-2QTR +https://doi.org/10.48597/ZUAD-SF5U +https://doi.org/10.48597/HWCX-AC4F +https://doi.org/10.48597/AZK8-AQ2M +https://doi.org/10.48597/CEEH-7AT3 +https://doi.org/10.48597/X34N-9N43 +https://doi.org/10.48597/2Q69-MZ5F +https://doi.org/10.48597/XQDN-693Z +https://doi.org/10.48597/BS8N-NF2F +https://doi.org/10.48597/EQHF-8G2R +https://doi.org/10.48597/MEEJ-Q2S5 +https://doi.org/10.48597/MGAB-75XF +https://doi.org/10.48597/DPGJ-BRTH +https://doi.org/10.48597/M2UU-VEVP +https://doi.org/10.48597/GHMQ-NUSB +https://doi.org/10.48597/V2US-8C67 +https://doi.org/10.48597/4F3P-WBRS +https://doi.org/10.48597/PBCH-35VG +https://doi.org/10.48597/846Z-WQYA +https://doi.org/10.48597/PKRU-ZF3Q +https://doi.org/10.48597/SM8X-5SVK +https://doi.org/10.48597/466W-DX8G +https://doi.org/10.48597/DG2N-B3MJ +https://doi.org/10.48597/R2KG-F9WM +https://doi.org/10.48597/4ZC3-SPJM +https://doi.org/10.48597/JYYP-PUJT +https://doi.org/10.48597/38C5-TTU6 +https://doi.org/10.48597/5WUF-WVEK +https://doi.org/10.48597/UDFB-D652 +https://doi.org/10.48597/MEE8-T673 +https://doi.org/10.48597/4FPN-NUWR +https://doi.org/10.48597/C2YM-5EV5 +https://doi.org/10.48597/R37S-NWZE +https://doi.org/10.48597/7ZKR-MY59 +https://doi.org/10.48597/G6RY-XGK7 +https://doi.org/10.48597/TKYZ-V3V3 +https://doi.org/10.48597/NTFD-845X +https://doi.org/10.48597/5XZH-8NAJ +https://doi.org/10.48597/SEE9-R34V +https://doi.org/10.48597/E8C4-AD5X +https://doi.org/10.48597/Y8XR-V49U +https://doi.org/10.48597/N5XF-FXMT +https://doi.org/10.48597/3MAQ-X9BY +https://doi.org/10.48597/Q7S6-9Z5J +https://doi.org/10.48597/9BYT-UATR +https://doi.org/10.48597/5ESW-A88P +https://doi.org/10.48597/ZQSR-KMMS +https://doi.org/10.48597/8FAT-6BHJ +https://doi.org/10.48597/HHMJ-UFBF +https://doi.org/10.48597/7BDR-EXTE +https://doi.org/10.48597/5G9V-W9H9 +https://doi.org/10.48597/K87G-ET2D +https://doi.org/10.48597/EJX2-CAUS +https://doi.org/10.48597/MCUQ-KRGJ +https://doi.org/10.48597/H4QE-PXWS +https://doi.org/10.48597/6W63-Z7HX +https://doi.org/10.48597/HAMC-5CUQ +https://doi.org/10.48597/BTFY-4Y8X +https://doi.org/10.48597/WTP4-U2MF +https://doi.org/10.48597/VSRG-UFHQ +https://doi.org/10.48597/DYC3-N58Q +https://doi.org/10.48597/UFB6-ZUDH +https://doi.org/10.48597/SS8J-XGJH +https://doi.org/10.48597/AQ46-WC6R +https://doi.org/10.48597/WRZY-C8J8 +https://doi.org/10.48597/7CXQ-8N25 +https://doi.org/10.48597/YTPV-NTES +https://doi.org/10.48597/WUUK-KEWC +https://doi.org/10.48597/4SUD-EHJJ +https://doi.org/10.48597/DETN-32QV +https://doi.org/10.48597/T8HZ-JT6R +https://doi.org/10.48597/WGCT-ZDGD +https://doi.org/10.48597/P34A-QPRX +https://doi.org/10.48597/XW87-PBSG +https://doi.org/10.48597/KJTB-S7CB +https://doi.org/10.48597/RPTN-JYJ5 +https://doi.org/10.48597/3NU9-PWBX +https://doi.org/10.48597/BKNE-9YG8 +https://doi.org/10.48597/N252-NQDR +https://doi.org/10.48597/3M8V-KZ42 +https://doi.org/10.48597/W93W-TSX5 +https://doi.org/10.48597/W6T5-U2TX +https://doi.org/10.48597/D3BV-7FC2 +https://doi.org/10.48597/2W4N-9YWF +https://doi.org/10.48597/3RN9-7HHK +https://doi.org/10.48597/BM9J-QCCT +https://doi.org/10.48597/2T5Z-A98G +https://doi.org/10.48597/RD47-KZSJ +https://doi.org/10.48597/PMNY-CBPP +https://doi.org/10.48597/HK4H-R2HV +https://doi.org/10.48597/83Z2-EUAC +https://doi.org/10.48597/QD96-HVT6 +https://doi.org/10.48597/JA9S-XC6S +https://doi.org/10.48597/NYCS-JJ9A +https://doi.org/10.48597/QVBN-NPPJ +https://doi.org/10.48597/Z4Y6-HNQH +https://doi.org/10.48597/YBD7-NQJU +https://doi.org/10.48597/C6HU-32PB +https://doi.org/10.48597/GXT8-4QYK +https://doi.org/10.48597/YV3Q-GQJJ +https://doi.org/10.48597/RSYM-KSS6 +https://doi.org/10.48597/F82Y-8TAM +https://doi.org/10.48597/GXQN-PT4R +https://doi.org/10.48597/88G3-639T +https://doi.org/10.48597/TCNG-9QPN +https://doi.org/10.48597/DJAJ-52XR +https://doi.org/10.48597/HCSX-32CA +https://doi.org/10.48597/X6B4-RW36 +https://doi.org/10.48597/XTGH-5DT4 +https://doi.org/10.48597/U3MD-VUVP +https://doi.org/10.48597/HEG8-MBBF +https://doi.org/10.48597/25UR-N5VZ +https://doi.org/10.48597/3TX4-UP28 +https://doi.org/10.48597/FYXW-2ZNA +https://doi.org/10.48597/FFZB-86DG +https://doi.org/10.48597/TJNX-ETR4 +https://doi.org/10.48597/4NKZ-YAHK +https://doi.org/10.48597/Y98W-8WPW +https://doi.org/10.48597/9JWT-86AU +https://doi.org/10.48597/PK85-SKCH +https://doi.org/10.48597/F23C-N5X9 +https://doi.org/10.48597/F6DF-9P7S +https://doi.org/10.48597/G2KW-4ZEZ +https://doi.org/10.48597/Z6BJ-AR3N +https://doi.org/10.48597/CW2X-U3CW +https://doi.org/10.48597/F9HG-W7QZ +https://doi.org/10.48597/XVU2-ZS4H +https://doi.org/10.48597/N23E-5RMN +https://doi.org/10.48597/SRDQ-FEYT +https://doi.org/10.48597/WK5T-4MD5 +https://doi.org/10.48597/4A8H-ZAPW +https://doi.org/10.48597/HSCN-UB5P +https://doi.org/10.48597/565A-339R +https://doi.org/10.48597/86DK-7TNQ +https://doi.org/10.48597/ZVGQ-GGB4 +https://doi.org/10.48597/MW4U-XKAH +https://doi.org/10.48597/GCA6-TDC9 +https://doi.org/10.48597/5BZP-3PXS +https://doi.org/10.48597/Y6Y5-8FYY +https://doi.org/10.48597/68MS-UNCH +https://doi.org/10.48597/KXN5-2P47 +https://doi.org/10.48597/P4AS-Q2DD +https://doi.org/10.48597/C7TC-KH6Q +https://doi.org/10.48597/4HW3-N35B +https://doi.org/10.48597/ANAM-ZTHW +https://doi.org/10.48597/S6JS-ZCQH +https://doi.org/10.48597/YTAA-ASG9 +https://doi.org/10.48597/RQKY-DVWV +https://doi.org/10.48597/FWTR-H5UJ +https://doi.org/10.48597/MH3F-NJ4K +https://doi.org/10.48597/79K2-PMA3 +https://doi.org/10.48597/5VJS-PEKR +https://doi.org/10.48597/TDJN-ZY2Z +https://doi.org/10.48597/G8U6-6RCU +https://doi.org/10.48597/24JD-A44B +https://doi.org/10.48597/7MGW-WQKF +https://doi.org/10.48597/F47P-PPHT +https://doi.org/10.48597/UTZE-GBG3 +https://doi.org/10.48597/8TQD-CBFW +https://doi.org/10.48597/PAAX-5FYQ +https://doi.org/10.48597/APCT-5FFN +https://doi.org/10.48597/7WGK-R4D6 +https://doi.org/10.48597/Y5US-JZTG +https://doi.org/10.48597/KVDY-MBRE +https://doi.org/10.48597/3SYQ-25N6 +https://doi.org/10.48597/KCFR-ZXZR +https://doi.org/10.48597/JQPM-A6N8 +https://doi.org/10.48597/5TUC-8AHP +https://doi.org/10.48597/UJMW-U5E3 +https://doi.org/10.48597/NNE8-WWEB +https://doi.org/10.48597/KSPX-2ZVW +https://doi.org/10.48597/NE9F-5RN5 +https://doi.org/10.48597/T85T-XFDB +https://doi.org/10.48597/V598-4NMF +https://doi.org/10.48597/9QCE-DZPP +https://doi.org/10.48597/BYD6-65FQ +https://doi.org/10.48597/TPMY-S68F +https://doi.org/10.48597/T9S2-JDF8 +https://doi.org/10.48597/N3NZ-W3KS +https://doi.org/10.48597/WTUV-G6NZ +https://doi.org/10.48597/SEPE-TJ78 +https://doi.org/10.48597/CA7Q-UQ26 +https://doi.org/10.48597/WUFY-HG5G +https://doi.org/10.48597/3ZBP-VCUT +https://doi.org/10.48597/JK3K-BJNB +https://doi.org/10.48597/RWB7-955R +https://doi.org/10.48597/S3VH-V8H3 +https://doi.org/10.48597/X7DZ-G6K3 +https://doi.org/10.48597/4MVM-X6G6 +https://doi.org/10.48597/E5EX-PQVB +https://doi.org/10.48597/WQQG-UF66 +https://doi.org/10.48597/XENK-CMFU +https://doi.org/10.48597/T3UR-HAXZ +https://doi.org/10.48597/7R7D-DDSQ +https://doi.org/10.48597/SPHF-9C9V +https://doi.org/10.48597/XTYT-8ZF2 +https://doi.org/10.48597/33Q8-GW9Q +https://doi.org/10.48597/CQW8-WJ29 +https://doi.org/10.48597/9N65-9B2M +https://doi.org/10.48597/CHEK-XE73 +https://doi.org/10.48597/29VC-HH3G +https://doi.org/10.48597/AKT8-P7MZ +https://doi.org/10.48597/KWXD-KGPQ +https://doi.org/10.48597/JKGT-Q736 +https://doi.org/10.48597/SQX4-RDNA +https://doi.org/10.48597/UWWP-85C3 +https://doi.org/10.48597/45GP-9DYZ +https://doi.org/10.48597/BV6Z-58FY +https://doi.org/10.48597/U434-USEP +https://doi.org/10.48597/EHYU-CRBY +https://doi.org/10.48597/Z775-TMQ5 +https://doi.org/10.48597/WK3P-W5BY +https://doi.org/10.48597/TKCY-YSXN +https://doi.org/10.48597/U4DP-9NQ3 +https://doi.org/10.48597/ZHY9-UN5T +https://doi.org/10.48597/FYAS-3X4J +https://doi.org/10.48597/BPCN-4ZP2 +https://doi.org/10.48597/BWXM-VSTE +https://doi.org/10.48597/RP9A-NA67 +https://doi.org/10.48597/4GVN-WD89 +https://doi.org/10.48597/RDZ8-324F +https://doi.org/10.48597/B2A5-GHVM +https://doi.org/10.48597/FQZF-D7YG +https://doi.org/10.48597/58AV-69V5 +https://doi.org/10.48597/WHAB-5ADQ +https://doi.org/10.48597/49NY-3UK7 +https://doi.org/10.48597/26K2-U2G8 +https://doi.org/10.48597/22QC-5YBV +https://doi.org/10.48597/7RDU-MY8P +https://doi.org/10.48597/Y3TY-GUHZ +https://doi.org/10.48597/8T8M-7GVU +https://doi.org/10.48597/U6HE-M23G +https://doi.org/10.48597/DRXC-8XEP +https://doi.org/10.48597/3A8N-EP6B +https://doi.org/10.48597/5XBD-Z9QH +https://doi.org/10.48597/BEKW-BSSW +https://doi.org/10.48597/T87M-ZNCE +https://doi.org/10.48597/5XZK-D7JT +https://doi.org/10.48597/4TJ9-5AWC +https://doi.org/10.48597/CS74-HXRU +https://doi.org/10.48597/W2TA-XEK3 +https://doi.org/10.48597/CDT6-A92H +https://doi.org/10.48597/2Q73-77B9 +https://doi.org/10.48597/AJ8C-JFPE +https://doi.org/10.48597/RUB4-JDBH +https://doi.org/10.48597/X7TS-DR73 +https://doi.org/10.48597/HFGE-YXUU +https://doi.org/10.48597/5AW4-TBK6 +https://doi.org/10.48597/X9DW-FDRS +https://doi.org/10.48597/NGRN-2HRQ +https://doi.org/10.48597/ZSJV-23FS +https://doi.org/10.48597/6KUQ-NEKY +https://doi.org/10.48597/S5XZ-N56W +https://doi.org/10.48597/CYM6-RQPH +https://doi.org/10.48597/DWRP-6QUM +https://doi.org/10.48597/Z7P2-WXG6 +https://doi.org/10.48597/4PRD-7GX8 +https://doi.org/10.48597/RC76-K2G9 +https://doi.org/10.48597/9B27-6BWG +https://doi.org/10.48597/TEJG-GJ7Z +https://doi.org/10.48597/KZH6-2MRT +https://doi.org/10.48597/PFAR-JYUF +https://doi.org/10.48597/HK85-B9BW +https://doi.org/10.48597/3MRX-3KB7 +https://doi.org/10.48597/CNU6-K8TA +https://doi.org/10.48597/C8XQ-F6XK +https://doi.org/10.48597/WFU9-4CG5 +https://doi.org/10.48597/QJXT-3CN4 +https://doi.org/10.48597/6BPU-JUPP +https://doi.org/10.48597/NN9P-WHPM +https://doi.org/10.48597/AEF5-GCUD +https://doi.org/10.48597/FDSA-5FGU +https://doi.org/10.48597/BWY7-XVPE +https://doi.org/10.48597/GKXB-JN8F +https://doi.org/10.48597/69QD-B4VW +https://doi.org/10.48597/Q4U3-SKQV +https://doi.org/10.48597/T7VP-K9CM +https://doi.org/10.48597/R9GK-QBZ2 +https://doi.org/10.48597/ZW2R-7KXF +https://doi.org/10.48597/KHKY-PVK4 +https://doi.org/10.48597/P6BD-2WCC +https://doi.org/10.48597/TVHG-ENV8 +https://doi.org/10.48597/ZT56-U779 +https://doi.org/10.48597/XA8U-4TK9 +https://doi.org/10.48597/M475-Z7UH +https://doi.org/10.48597/HFMZ-YZ8A +https://doi.org/10.48597/B38Y-J23Y +https://doi.org/10.48597/3YYZ-RXQT +https://doi.org/10.48597/J5ME-QM76 +https://doi.org/10.48597/7SQM-9VK5 +https://doi.org/10.48597/8W23-PR9X +https://doi.org/10.48597/PG2J-DU6G +https://doi.org/10.48597/VJXP-DWX5 +https://doi.org/10.48597/W83E-PQT5 +https://doi.org/10.48597/3MC5-VW4X +https://doi.org/10.48597/9HF3-JDSJ +https://doi.org/10.48597/FDP3-MG5A +https://doi.org/10.48597/Y3ST-9NEK +https://doi.org/10.48597/HQBZ-N863 +https://doi.org/10.48597/ZTY7-PZEP +https://doi.org/10.48597/XYU2-SNDG +https://doi.org/10.48597/CY5N-U446 +https://doi.org/10.48597/JYU8-E79U +https://doi.org/10.48597/UXKG-58HM +https://doi.org/10.48597/6M67-6R3T +https://doi.org/10.48597/CXD9-6KSM +https://doi.org/10.48597/ZYW8-KEDB +https://doi.org/10.48597/ZJY8-XP95 +https://doi.org/10.48597/4553-53MC +https://doi.org/10.48597/M9FG-666Q +https://doi.org/10.48597/3EGD-ZXJX +https://doi.org/10.48597/6C5X-PFHB +https://doi.org/10.48597/XJGB-TE6V +https://doi.org/10.48597/S7VY-XJV7 +https://doi.org/10.48597/3VM8-73FE +https://doi.org/10.48597/9PFA-UAA8 +https://doi.org/10.48597/K33G-JH66 +https://doi.org/10.48597/BMQN-T6RF +https://doi.org/10.48597/3VYP-K66H +https://doi.org/10.48597/AGVN-6QCT +https://doi.org/10.48597/B98T-USSA +https://doi.org/10.48597/XB5B-XNTA +https://doi.org/10.48597/KMYJ-KEAS +https://doi.org/10.48597/2MPT-B8VF +https://doi.org/10.48597/TDE5-6JNU +https://doi.org/10.48597/RX8C-9AN8 +https://doi.org/10.48597/3CF3-SSN5 +https://doi.org/10.48597/8GYN-5GHA +https://doi.org/10.48597/KNFU-WM94 +https://doi.org/10.48597/BRSG-EGDN +https://doi.org/10.48597/EEMT-UH9Y +https://doi.org/10.48597/UGZK-E8VM +https://doi.org/10.48597/S6PK-TZWZ +https://doi.org/10.48597/CV3H-ADWJ +https://doi.org/10.48597/YXXA-BW5C +https://doi.org/10.48597/DB2T-XE5R +https://doi.org/10.48597/8WBW-UCJ2 +https://doi.org/10.48597/6B7X-U82A +https://doi.org/10.48597/MM2G-Z2YM +https://doi.org/10.48597/4CA5-VF3R +https://doi.org/10.48597/FUXX-7QSE +https://doi.org/10.48597/BYF7-J6ZW +https://doi.org/10.48597/4455-J45G +https://doi.org/10.48597/X47U-2EKE +https://doi.org/10.48597/TJTD-DSQF +https://doi.org/10.48597/WDZK-6B4N +https://doi.org/10.48597/DWBC-KTQT +https://doi.org/10.48597/JAD4-MMFM +https://doi.org/10.48597/KCBM-UQHW +https://doi.org/10.48597/T5PP-AX2N +https://doi.org/10.48597/3MF2-CA7G +https://doi.org/10.48597/S3GC-A3F3 +https://doi.org/10.48597/VQKZ-MRZ2 +https://doi.org/10.48597/TRTW-6JCB +https://doi.org/10.48597/5Q2X-8BFC +https://doi.org/10.48597/WVXM-4KWN +https://doi.org/10.48597/ZHTK-BGBT +https://doi.org/10.48597/XHPN-CVJ8 +https://doi.org/10.48597/MJ36-H3FK +https://doi.org/10.48597/5C7D-SHM4 +https://doi.org/10.48597/GHXR-55GT +https://doi.org/10.48597/BQPB-MP8K +https://doi.org/10.48597/P5N4-F2MS +https://doi.org/10.48597/ET3A-K8K8 +https://doi.org/10.48597/XGAB-HMG4 +https://doi.org/10.48597/CJGF-H5ZC +https://doi.org/10.48597/7RV9-GHXN +https://doi.org/10.48597/VVWG-VHQK +https://doi.org/10.48597/AP7H-FAZZ +https://doi.org/10.48597/SEUD-MYJQ +https://doi.org/10.48597/DQYF-T9EF +https://doi.org/10.48597/3QTQ-3U6G +https://doi.org/10.48597/P46H-7K29 +https://doi.org/10.48597/ETMM-HG95 +https://doi.org/10.48597/CCQS-YWD5 +https://doi.org/10.48597/ZQHH-ER2G +https://doi.org/10.48597/4ACF-S43E +https://doi.org/10.48597/MRWD-VCM3 +https://doi.org/10.48597/6FRG-F354 +https://doi.org/10.48597/2AV7-PJ5E +https://doi.org/10.48597/4N6H-9UEJ +https://doi.org/10.48597/D9DW-5F8K +https://doi.org/10.48597/M5CH-WAY9 +https://doi.org/10.48597/EV4T-PEX2 +https://doi.org/10.48597/Z59W-57TG +https://doi.org/10.48597/9YGE-FTCR +https://doi.org/10.48597/X5GR-RUXU +https://doi.org/10.48597/ATRT-65MN +https://doi.org/10.48597/WDDN-PNF3 +https://doi.org/10.48597/E3BV-2STB +https://doi.org/10.48597/Y5NZ-T57Z +https://doi.org/10.48597/9W74-XARM +https://doi.org/10.48597/C3NM-4QXT +https://doi.org/10.48597/4XPJ-QDMB +https://doi.org/10.48597/CWY5-26AU +https://doi.org/10.48597/KWNE-M8MQ +https://doi.org/10.48597/ZXRM-N9JY +https://doi.org/10.48597/ZAXW-U6GX +https://doi.org/10.48597/EWBJ-2SEG +https://doi.org/10.48597/KVN5-3Q34 +https://doi.org/10.48597/FP6P-RKMD +https://doi.org/10.48597/CFNC-RPWQ +https://doi.org/10.48597/UAAY-Z28U +https://doi.org/10.48597/6BTB-EUUA +https://doi.org/10.48597/8AUR-ZKUC +https://doi.org/10.48597/DAFX-EWMV +https://doi.org/10.48597/QADF-A933 +https://doi.org/10.48597/Y6YS-UWHE +https://doi.org/10.48597/895F-K96M +https://doi.org/10.48597/ETSZ-Y8PJ +https://doi.org/10.48597/7R4R-QFBR +https://doi.org/10.48597/G4Q6-G972 +https://doi.org/10.48597/CPRU-XRR6 +https://doi.org/10.48597/3244-5MNS +https://doi.org/10.48597/6MXQ-SQP9 +https://doi.org/10.48597/97MD-ATWU +https://doi.org/10.48597/NYJ4-B9EH +https://doi.org/10.48597/CSJB-FW54 +https://doi.org/10.48597/UVGK-EXJ3 +https://doi.org/10.48597/PEHQ-WRJV +https://doi.org/10.48597/KQDM-MBTX +https://doi.org/10.48597/MYEW-GV9M +https://doi.org/10.48597/7TXM-USFM +https://doi.org/10.48597/JFYR-TQQC +https://doi.org/10.48597/3KUV-ANTW +https://doi.org/10.48597/JKSG-7GMD +https://doi.org/10.48597/HYKH-VAB8 +https://doi.org/10.48597/NSXD-EVTH +https://doi.org/10.48597/XWPM-6SRZ +https://doi.org/10.48597/HAKS-42BE +https://doi.org/10.48597/GY6U-JHRH +https://doi.org/10.48597/AY2P-KQ6R +https://doi.org/10.48597/Z8MR-RJ7Q +https://doi.org/10.48597/J45K-7R8Y +https://doi.org/10.48597/3MKM-PR94 +https://doi.org/10.48597/KFXX-TPDH +https://doi.org/10.48597/D5MZ-8YQU +https://doi.org/10.48597/2BHD-B7Z7 +https://doi.org/10.48597/M7JZ-Q6N7 +https://doi.org/10.48597/VBNW-AK3W +https://doi.org/10.48597/YBJ7-PP7K +https://doi.org/10.48597/56DP-8VK3 +https://doi.org/10.48597/GUNE-J44F +https://doi.org/10.48597/8B62-7BEN +https://doi.org/10.48597/DVDT-JA2V +https://doi.org/10.48597/V9WK-WGJT +https://doi.org/10.48597/SQ22-8KQB +https://doi.org/10.48597/F6RJ-FWHM +https://doi.org/10.48597/HFMK-35HT +https://doi.org/10.48597/4P3W-RZHS +https://doi.org/10.48597/D2US-J8FX +https://doi.org/10.48597/R6Z8-B8K4 +https://doi.org/10.48597/AACE-3F2U +https://doi.org/10.48597/T6ZB-GPN2 +https://doi.org/10.48597/H7ZK-ZT84 +https://doi.org/10.48597/ARSX-NMZ7 +https://doi.org/10.48597/796J-FZRK +https://doi.org/10.48597/STMA-STEW +https://doi.org/10.48597/HMSK-MXXU +https://doi.org/10.48597/6ZBQ-27UP +https://doi.org/10.48597/B8PU-NWHP +https://doi.org/10.48597/6GG6-TDY5 +https://doi.org/10.48597/C2EF-VXM5 +https://doi.org/10.48597/46QD-C6B8 +https://doi.org/10.48597/C2H3-WWAP +https://doi.org/10.48597/JKE7-AABD +https://doi.org/10.48597/N5NT-BCZ4 +https://doi.org/10.48597/V384-KSJN +https://doi.org/10.48597/KA6T-KGWK +https://doi.org/10.48597/FZQ9-UQ2J +https://doi.org/10.48597/266S-5RJH +https://doi.org/10.48597/XWHF-X6M6 +https://doi.org/10.48597/5GUZ-PYZM +https://doi.org/10.48597/6G2E-86DM +https://doi.org/10.48597/PNWX-3YHE +https://doi.org/10.48597/RCQ5-2NVC +https://doi.org/10.48597/HZ56-KC9N +https://doi.org/10.48597/SKP4-33S5 +https://doi.org/10.48597/VGU4-4YRT +https://doi.org/10.48597/CHW2-YNVA +https://doi.org/10.48597/58JQ-JMXE +https://doi.org/10.48597/W2A6-44F8 +https://doi.org/10.48597/RGC4-VS3Q +https://doi.org/10.48597/BD9M-D6BD +https://doi.org/10.48597/K2TP-44M5 +https://doi.org/10.48597/MJ9K-4HUC +https://doi.org/10.48597/2JK3-ETVS +https://doi.org/10.48597/Y6HH-KY5R +https://doi.org/10.48597/FMAM-6YFJ +https://doi.org/10.48597/E3DR-8EQ2 +https://doi.org/10.48597/X4N6-SDXU +https://doi.org/10.48597/286U-AKNP +https://doi.org/10.48597/GBWD-QVAR +https://doi.org/10.48597/WUS5-DHW2 +https://doi.org/10.48597/MKE4-KU7Y +https://doi.org/10.48597/WMUX-S6V5 +https://doi.org/10.48597/2XM7-7H6J +https://doi.org/10.48597/H72G-QUHX +https://doi.org/10.48597/72YK-45BE +https://doi.org/10.48597/FK8Z-HJY6 +https://doi.org/10.48597/JHPM-HNF5 +https://doi.org/10.48597/SE63-Q2F9 +https://doi.org/10.48597/F5ZR-8BHD +https://doi.org/10.48597/5CRK-RN2Z +https://doi.org/10.48597/A5X4-ES6E +https://doi.org/10.48597/R7X8-22BZ +https://doi.org/10.48597/B5F7-XKRS +https://doi.org/10.48597/ZEP7-DTNK +https://doi.org/10.48597/D999-PRD4 +https://doi.org/10.48597/MM36-FUP9 +https://doi.org/10.48597/YUZJ-89G8 +https://doi.org/10.48597/MZKT-VNST +https://doi.org/10.48597/G4GS-S2BD +https://doi.org/10.48597/XGKT-SDQN +https://doi.org/10.48597/UTKG-CFN9 +https://doi.org/10.48597/XBNB-W5GW +https://doi.org/10.48597/S24M-PXMH +https://doi.org/10.48597/7BAH-YDPE +https://doi.org/10.48597/QK25-3E2U +https://doi.org/10.48597/R2RQ-DGKR +https://doi.org/10.48597/QZE6-SUAT +https://doi.org/10.48597/6SE9-KXJ8 +https://doi.org/10.48597/XH7T-PKUY +https://doi.org/10.48597/P8ZS-R4ZB +https://doi.org/10.48597/C7QT-UJRW +https://doi.org/10.48597/BGPY-UDA9 +https://doi.org/10.48597/SATQ-T8XM +https://doi.org/10.48597/HTV9-FKGV +https://doi.org/10.48597/KGDS-6EQG +https://doi.org/10.48597/YFV7-BMP8 +https://doi.org/10.48597/K9NH-4FG4 +https://doi.org/10.48597/KFCB-GJTT +https://doi.org/10.48597/YZSR-NHF8 +https://doi.org/10.48597/DF4X-JUFS +https://doi.org/10.48597/6TA5-49ND +https://doi.org/10.48597/JY67-92MS +https://doi.org/10.48597/PW7P-D3C6 +https://doi.org/10.48597/PDA3-FCXD +https://doi.org/10.48597/FXJW-AA2B +https://doi.org/10.48597/SUNW-DP6U +https://doi.org/10.48597/SYCE-GQ5N +https://doi.org/10.48597/AFQT-M94V +https://doi.org/10.48597/97DJ-FXQF +https://doi.org/10.48597/KW2S-4NQZ +https://doi.org/10.48597/772A-HCD9 +https://doi.org/10.48597/AKTN-WH94 +https://doi.org/10.48597/PNE6-ZDNX +https://doi.org/10.48597/E2BB-RKGD +https://doi.org/10.48597/BD8C-AHW5 +https://doi.org/10.48597/XYU7-URYW +https://doi.org/10.48597/HQDM-CJ5M +https://doi.org/10.48597/52UD-8W2T +https://doi.org/10.48597/4CG9-YZ22 +https://doi.org/10.48597/K5ER-WK95 +https://doi.org/10.48597/VRF4-WSPC +https://doi.org/10.48597/UCPK-MM9N +https://doi.org/10.48597/SGS7-95UP +https://doi.org/10.48597/T4X5-9TG7 +https://doi.org/10.48597/K7GN-GNH5 +https://doi.org/10.48597/XCMY-8P6J +https://doi.org/10.48597/NUGF-CHJ3 +https://doi.org/10.48597/YG5B-JFYZ +https://doi.org/10.48597/AZYV-YYJW +https://doi.org/10.48597/9GT6-QJKJ +https://doi.org/10.48597/JECK-XJ9C +https://doi.org/10.48597/ZU56-5ZD9 +https://doi.org/10.48597/66VC-5Z7H +https://doi.org/10.48597/525V-KVF8 +https://doi.org/10.48597/3YTF-62UU +https://doi.org/10.48597/RX72-E77N +https://doi.org/10.48597/MNN8-DZ5Z +https://doi.org/10.48597/76J2-B8FD +https://doi.org/10.48597/8NNN-9QF7 +https://doi.org/10.48597/G8H5-A74N +https://doi.org/10.48597/7KB5-FG5A +https://doi.org/10.48597/4HFV-65TP +https://doi.org/10.48597/85AT-8E5J +https://doi.org/10.48597/AAF3-U34J +https://doi.org/10.48597/CPRP-YCTM +https://doi.org/10.48597/JTQH-P9GS +https://doi.org/10.48597/4XVQ-X8QU +https://doi.org/10.48597/7MTP-8BRE +https://doi.org/10.48597/CCJT-733F +https://doi.org/10.48597/US5X-4BNE +https://doi.org/10.48597/DJKX-6WSP +https://doi.org/10.48597/EWQ7-9UGA +https://doi.org/10.48597/ETJZ-U56D +https://doi.org/10.48597/SH4Y-P9AP +https://doi.org/10.48597/R2M6-JS6K +https://doi.org/10.48597/7M7Y-C4N2 +https://doi.org/10.48597/MH3A-HDZD +https://doi.org/10.48597/W4F8-JHVW +https://doi.org/10.48597/XMBS-K85E +https://doi.org/10.48597/DVKJ-R2WK +https://doi.org/10.48597/8E8J-GBM2 +https://doi.org/10.48597/WFP9-PH7R +https://doi.org/10.48597/WFZ5-3GJB +https://doi.org/10.48597/R5YQ-FZV6 +https://doi.org/10.48597/FCWB-DQFY +https://doi.org/10.48597/N5JP-JCTN +https://doi.org/10.48597/DZD2-VWEG +https://doi.org/10.48597/V8NA-XPJ7 +https://doi.org/10.48597/3EBZ-FMRA +https://doi.org/10.48597/WUW3-MB4T +https://doi.org/10.48597/P6EH-4NQG +https://doi.org/10.48597/77XG-AFR6 +https://doi.org/10.48597/5ZNP-E5T2 +https://doi.org/10.48597/UDAA-HGWN +https://doi.org/10.48597/MD29-SG4H +https://doi.org/10.48597/TG8V-E77W +https://doi.org/10.48597/4DZ9-8FFP +https://doi.org/10.48597/3937-C4RG +https://doi.org/10.48597/FB8E-MUYM +https://doi.org/10.48597/K3GW-GGQ8 +https://doi.org/10.48597/BHP4-RP3A +https://doi.org/10.48597/R7EN-P9XP +https://doi.org/10.48597/UTXR-FB4J +https://doi.org/10.48597/FCB2-5FWX +https://doi.org/10.48597/CMPD-CPEF +https://doi.org/10.48597/BH8K-P893 +https://doi.org/10.48597/QBEM-4UW3 +https://doi.org/10.48597/9UQ7-DVNB +https://doi.org/10.48597/P4Q2-UZKT +https://doi.org/10.48597/4EDP-NSV8 +https://doi.org/10.48597/UVG3-9SHU +https://doi.org/10.48597/CSAY-C72F +https://doi.org/10.48597/DR79-4NDM +https://doi.org/10.48597/JCN7-EN6Y +https://doi.org/10.48597/YCX4-7VRE +https://doi.org/10.48597/XQEN-9KUV +https://doi.org/10.48597/DDBU-N3VQ +https://doi.org/10.48597/NSG2-FMEV +https://doi.org/10.48597/5UFK-4ZM6 +https://doi.org/10.48597/ZCPU-95VD +https://doi.org/10.48597/YW5B-47DF +https://doi.org/10.48597/BSZF-YP9V +https://doi.org/10.48597/D4JT-KFMT +https://doi.org/10.48597/TSPS-KP9M +https://doi.org/10.48597/ZGZ9-TDC6 +https://doi.org/10.48597/YJXT-CJTD +https://doi.org/10.48597/DN5G-GHCW +https://doi.org/10.48597/MQVB-9DBX +https://doi.org/10.48597/KYUT-GXK8 +https://doi.org/10.48597/W6QK-9G9E +https://doi.org/10.48597/4CE8-ZXSF +https://doi.org/10.48597/KXEE-EKJD +https://doi.org/10.48597/7H8B-N7HA +https://doi.org/10.48597/YZGX-8EV8 +https://doi.org/10.48597/5ZMH-R3VQ +https://doi.org/10.48597/3NGY-TV2F +https://doi.org/10.48597/ZAWF-JM6A +https://doi.org/10.48597/KCV8-K2FX +https://doi.org/10.48597/Z6AB-BKHX +https://doi.org/10.48597/M7YB-XX2H +https://doi.org/10.48597/SAF5-HUCG +https://doi.org/10.48597/5XCC-45T9 +https://doi.org/10.48597/538Q-FUHS +https://doi.org/10.48597/G228-NSRM +https://doi.org/10.48597/ZPT9-WUE3 +https://doi.org/10.48597/3VR8-D2GP +https://doi.org/10.48597/BZMC-X7MR +https://doi.org/10.48597/DSUD-UKA7 +https://doi.org/10.48597/SJG8-NTQY +https://doi.org/10.48597/2PCG-7C4U +https://doi.org/10.48597/CT2D-VC7Q +https://doi.org/10.48597/QJUB-B38H +https://doi.org/10.48597/2EQE-ETQE +https://doi.org/10.48597/WTG6-4SV7 +https://doi.org/10.48597/2F55-WZBR +https://doi.org/10.48597/USPD-AKQC +https://doi.org/10.48597/DFNC-F24Q +https://doi.org/10.48597/DYW2-GED2 +https://doi.org/10.48597/TUQQ-YNTG +https://doi.org/10.48597/VGPS-JJTX +https://doi.org/10.48597/BXRC-DZNK +https://doi.org/10.48597/975X-WUZT +https://doi.org/10.48597/28AQ-7CSS +https://doi.org/10.48597/8KTZ-QYBB +https://doi.org/10.48597/QX55-EQX5 +https://doi.org/10.48597/6SCN-GK8U +https://doi.org/10.48597/J7W3-R4QK +https://doi.org/10.48597/PDBC-8BEF +https://doi.org/10.48597/PCC9-TG3T +https://doi.org/10.48597/GNYZ-C2Q6 +https://doi.org/10.48597/AWH3-CWV9 +https://doi.org/10.48597/V5WU-RFDS +https://doi.org/10.48597/98V8-AGA5 +https://doi.org/10.48597/8BXG-JGBH +https://doi.org/10.48597/NW5B-UG4F +https://doi.org/10.48597/H44D-9A5X +https://doi.org/10.48597/ME2M-GQMK +https://doi.org/10.48597/ZC9E-FVU4 +https://doi.org/10.48597/QJRC-RBK3 +https://doi.org/10.48597/KHWW-UN8C +https://doi.org/10.48597/ZGRD-VQUT +https://doi.org/10.48597/EJ68-92NH +https://doi.org/10.48597/GPFP-FXGC +https://doi.org/10.48597/FN7B-AC8R +https://doi.org/10.48597/JTBG-V2DQ +https://doi.org/10.48597/JBQY-HX57 +https://doi.org/10.48597/NAD6-ZQ59 +https://doi.org/10.48597/7VVR-H8NC +https://doi.org/10.48597/E48G-4962 +https://doi.org/10.48597/C5FZ-UKT7 +https://doi.org/10.48597/HP83-RW89 +https://doi.org/10.48597/EEEW-NY2Z +https://doi.org/10.48597/EEG3-WG7H +https://doi.org/10.48597/Z294-BXZD +https://doi.org/10.48597/HWWX-2576 +https://doi.org/10.48597/FRZU-KC8P +https://doi.org/10.48597/59QQ-JQ67 +https://doi.org/10.48597/K6E4-UH3U +https://doi.org/10.48597/V68F-2K4E +https://doi.org/10.48597/W9BB-XERH +https://doi.org/10.48597/NA7B-68FK +https://doi.org/10.48597/FXS6-H93G +https://doi.org/10.48597/TH6H-BPBC +https://doi.org/10.48597/WAC7-PCFH +https://doi.org/10.48597/7VVU-NGWT +https://doi.org/10.48597/XXX9-8YNU +https://doi.org/10.48597/BM89-EB27 +https://doi.org/10.48597/69DV-MHUJ +https://doi.org/10.48597/5SXJ-NBEP +https://doi.org/10.48597/94MW-DTY9 +https://doi.org/10.48597/AMPF-NHYX +https://doi.org/10.48597/PG8X-UYYG +https://doi.org/10.48597/8R8R-JTVC +https://doi.org/10.48597/E6PD-2EH6 +https://doi.org/10.48597/S5D7-ZK9R +https://doi.org/10.48597/YYJS-XF5S +https://doi.org/10.48597/XD44-CZK2 +https://doi.org/10.48597/CF9R-PP3K +https://doi.org/10.48597/9JJH-P2YC +https://doi.org/10.48597/CWV6-SS6A +https://doi.org/10.48597/FMDD-7RYU +https://doi.org/10.48597/XGKU-92GX +https://doi.org/10.48597/VKX2-8492 +https://doi.org/10.48597/M75C-8Q5G +https://doi.org/10.48597/8CPP-5QD9 +https://doi.org/10.48597/5YK5-KPMU +https://doi.org/10.48597/5BVZ-DF7H +https://doi.org/10.48597/4A6Y-PK24 +https://doi.org/10.48597/6NAE-WZHP +https://doi.org/10.48597/FV7M-DXPK +https://doi.org/10.48597/XEJ6-X4SU +https://doi.org/10.48597/BTEY-MUQH +https://doi.org/10.48597/ERBQ-EA55 +https://doi.org/10.48597/GUPA-AZ2G +https://doi.org/10.48597/7BET-J39M +https://doi.org/10.48597/BNXK-H6AU +https://doi.org/10.48597/UVDG-RP9X +https://doi.org/10.48597/9X2G-KUZ9 +https://doi.org/10.48597/PUVC-36NX +https://doi.org/10.48597/XS78-6S6D +https://doi.org/10.48597/W66R-3VTV +https://doi.org/10.48597/8GMD-5WFC +https://doi.org/10.48597/Z6MS-E9X6 +https://doi.org/10.48597/N5DS-N4MW +https://doi.org/10.48597/3KSQ-GABZ +https://doi.org/10.48597/F4E9-V49Y +https://doi.org/10.48597/QDXZ-6Z7S +https://doi.org/10.48597/C4Z2-JDFH +https://doi.org/10.48597/8WXQ-WAS6 +https://doi.org/10.48597/JJUX-9DKF +https://doi.org/10.48597/EXJ9-9M4C +https://doi.org/10.48597/TEQ8-4YQS +https://doi.org/10.48597/UKF5-H2PB +https://doi.org/10.48597/CE7D-U9X5 +https://doi.org/10.48597/EU2Z-ZUJN +https://doi.org/10.48597/D4YF-P4DY +https://doi.org/10.48597/WJ9E-CN98 +https://doi.org/10.48597/AVW5-MQVE +https://doi.org/10.48597/F6PN-PQ2Z +https://doi.org/10.48597/VK25-4DB8 +https://doi.org/10.48597/C3SA-PMX9 +https://doi.org/10.48597/KAHZ-5HBK +https://doi.org/10.48597/F2Q3-82WA +https://doi.org/10.48597/E7V4-PGJF +https://doi.org/10.48597/N59E-KV4F +https://doi.org/10.48597/2YHV-QZ9N +https://doi.org/10.48597/SHRZ-6UQ3 +https://doi.org/10.48597/7DFD-SJJJ +https://doi.org/10.48597/3T3R-A5GJ +https://doi.org/10.48597/ED9Y-4P2H +https://doi.org/10.48597/XCVM-S3ZA +https://doi.org/10.48597/JSD8-K5AT +https://doi.org/10.48597/RKUE-S7H3 +https://doi.org/10.48597/MDSF-X7WX +https://doi.org/10.48597/WCCC-SRMM +https://doi.org/10.48597/GYE3-HEET +https://doi.org/10.48597/XKJU-YCFU +https://doi.org/10.48597/65XJ-8VYJ +https://doi.org/10.48597/MCEE-U9UE +https://doi.org/10.48597/BAVP-XCUJ +https://doi.org/10.48597/PMV5-6JZ7 +https://doi.org/10.48597/ECPZ-6GGV +https://doi.org/10.48597/9RNK-DDPQ +https://doi.org/10.48597/BSU7-MZ6F +https://doi.org/10.48597/74J4-4TM3 +https://doi.org/10.48597/ZAN8-SS85 +https://doi.org/10.48597/KUPU-88VP +https://doi.org/10.48597/AZZE-KU4C +https://doi.org/10.48597/W8RP-2EDN +https://doi.org/10.48597/799F-EHCH +https://doi.org/10.48597/AG5N-DUDQ +https://doi.org/10.48597/Q994-9277 +https://doi.org/10.48597/5SW5-U3GV +https://doi.org/10.48597/S8ZZ-52X8 +https://doi.org/10.48597/KZUM-KP8Q +https://doi.org/10.48597/PSDV-J34F +https://doi.org/10.48597/5QD9-6PKT +https://doi.org/10.48597/HHFK-GVUT +https://doi.org/10.48597/VNWM-E3PF +https://doi.org/10.48597/ZHSW-25CE +https://doi.org/10.48597/R8ST-X93Z +https://doi.org/10.48597/E3GZ-MTWN +https://doi.org/10.48597/D9PR-BVZM +https://doi.org/10.48597/2TV2-7UA2 +https://doi.org/10.48597/BM27-9GGK +https://doi.org/10.48597/PJ6X-7F3H +https://doi.org/10.48597/695F-VVTB +https://doi.org/10.48597/DQ3E-F4JR +https://doi.org/10.48597/9YVW-5VAD +https://doi.org/10.48597/22XX-VRZK +https://doi.org/10.48597/Y7JE-J86C +https://doi.org/10.48597/WB3K-7R2R +https://doi.org/10.48597/Q2Q3-5YT6 +https://doi.org/10.48597/MRYS-XNUF +https://doi.org/10.48597/GC3M-7YTY +https://doi.org/10.48597/BQYM-WPYS +https://doi.org/10.48597/FD93-G46M +https://doi.org/10.48597/SP42-97CT +https://doi.org/10.48597/YSNG-VW4P +https://doi.org/10.48597/9RP9-RJHF +https://doi.org/10.48597/SDQQ-V24F +https://doi.org/10.48597/GN7A-2NY2 +https://doi.org/10.48597/2Y2R-TBG3 +https://doi.org/10.48597/6MNJ-ZM5V +https://doi.org/10.48597/JNU2-7UJA +https://doi.org/10.48597/HDT2-6JBB +https://doi.org/10.48597/R6QR-DVYR +https://doi.org/10.48597/8D45-X37T +https://doi.org/10.48597/NBZY-VCBD +https://doi.org/10.48597/9DKT-K7SY +https://doi.org/10.48597/XUGM-5A6J +https://doi.org/10.48597/KVEC-KAD5 +https://doi.org/10.48597/52YV-WX8C +https://doi.org/10.48597/KNEE-WPTJ +https://doi.org/10.48597/T9V4-95SS +https://doi.org/10.48597/YW6C-JBHJ +https://doi.org/10.48597/FWMM-Q3X3 +https://doi.org/10.48597/Q288-2FMB +https://doi.org/10.48597/V2UK-7A29 +https://doi.org/10.48597/V64U-4NJ6 +https://doi.org/10.48597/CWD6-4MCU +https://doi.org/10.48597/UZYH-PW7J +https://doi.org/10.48597/69TQ-TJMJ +https://doi.org/10.48597/AE5H-8E8J +https://doi.org/10.48597/C72G-4RT6 +https://doi.org/10.48597/7V4D-V22P +https://doi.org/10.48597/M65C-46YF +https://doi.org/10.48597/UH9X-QH4E +https://doi.org/10.48597/BWYS-SCB4 +https://doi.org/10.48597/BDPN-DZX2 +https://doi.org/10.48597/GJ5B-R5RQ +https://doi.org/10.48597/WBN4-BSEG +https://doi.org/10.48597/VK7B-P7ZN +https://doi.org/10.48597/JR6D-F5WF +https://doi.org/10.48597/8BQ9-UBGK +https://doi.org/10.48597/N4SF-63NP +https://doi.org/10.48597/YDHA-DGXW +https://doi.org/10.48597/UZYA-NXRG +https://doi.org/10.48597/A3TW-25Z2 +https://doi.org/10.48597/2S4P-YBPQ +https://doi.org/10.48597/SHJ9-89Z9 +https://doi.org/10.48597/SYGW-JZTU +https://doi.org/10.48597/E3TA-ZTU6 +https://doi.org/10.48597/VETY-ZG2X +https://doi.org/10.48597/4WQU-SH98 +https://doi.org/10.48597/YMGR-94PC +https://doi.org/10.48597/XAW7-9W5Z +https://doi.org/10.48597/EYCV-56VD +https://doi.org/10.48597/JJ6Y-65T8 +https://doi.org/10.48597/DBFC-HKD5 +https://doi.org/10.48597/P7QC-PH3X +https://doi.org/10.48597/DJDQ-SESY +https://doi.org/10.48597/GDXW-UWQ6 +https://doi.org/10.48597/APA3-V5D3 +https://doi.org/10.48597/JG6A-7N4V +https://doi.org/10.48597/EGHZ-6YY2 +https://doi.org/10.48597/7PUA-XCAU +https://doi.org/10.48597/3HYC-X5H4 +https://doi.org/10.48597/Q5X2-T4PH +https://doi.org/10.48597/YQYZ-JZFP +https://doi.org/10.48597/VPEK-MKEF +https://doi.org/10.48597/MZZQ-9ZAW +https://doi.org/10.48597/SQPY-AVEE +https://doi.org/10.48597/P94R-96JP +https://doi.org/10.48597/CM2K-XK6E +https://doi.org/10.48597/C9XS-PNSD +https://doi.org/10.48597/6AQJ-KRB5 +https://doi.org/10.48597/GPRF-RRAG +https://doi.org/10.48597/4JU3-BZ2R +https://doi.org/10.48597/TUSX-4DJB +https://doi.org/10.48597/TTNB-R965 +https://doi.org/10.48597/2PCG-GPVV +https://doi.org/10.48597/EJMU-WEBA +https://doi.org/10.48597/BJA2-ET7Z +https://doi.org/10.48597/CAKN-96BE +https://doi.org/10.48597/QHYD-M4B8 +https://doi.org/10.48597/MNRS-2DHX +https://doi.org/10.48597/Z8QX-684R +https://doi.org/10.48597/JTGX-GTXQ +https://doi.org/10.48597/Z98C-D3BK +https://doi.org/10.48597/EH6B-EQW6 +https://doi.org/10.48597/NUFK-QTFJ +https://doi.org/10.48597/2DEZ-MMAY +https://doi.org/10.48597/5WD4-DDK9 +https://doi.org/10.48597/PMQ3-SYAZ +https://doi.org/10.48597/J2AW-FBK9 +https://doi.org/10.48597/REJJ-9W8Z +https://doi.org/10.48597/TMXQ-ARSM +https://doi.org/10.48597/QAKK-CZGC +https://doi.org/10.48597/N2CQ-ZB2U +https://doi.org/10.48597/6KVY-7XNX +https://doi.org/10.48597/JCE9-JYHD +https://doi.org/10.48597/WHZ5-ZJDG +https://doi.org/10.48597/FNNJ-H6JU +https://doi.org/10.48597/N8NM-FNWQ +https://doi.org/10.48597/ZF6F-HZMM +https://doi.org/10.48597/6QCU-892T +https://doi.org/10.48597/S9QT-SGJ3 +https://doi.org/10.48597/W352-7W2V +https://doi.org/10.48597/49TU-5PDC +https://doi.org/10.48597/C35R-NFYG +https://doi.org/10.48597/SC4Z-AHT7 +https://doi.org/10.48597/BHR6-PSG7 +https://doi.org/10.48597/VRAU-STE5 +https://doi.org/10.48597/KX9A-VAHD +https://doi.org/10.48597/TP3K-2BJT +https://doi.org/10.48597/M35R-KEK7 +https://doi.org/10.48597/YH7C-TQHU +https://doi.org/10.48597/X4BC-QWNA +https://doi.org/10.48597/AV42-BKA3 +https://doi.org/10.48597/5MMQ-E7YA +https://doi.org/10.48597/B4ME-UG5H +https://doi.org/10.48597/P978-ZUCT +https://doi.org/10.48597/D3TV-SSH8 +https://doi.org/10.48597/2FXK-U563 +https://doi.org/10.48597/T9M4-JRB7 +https://doi.org/10.48597/ZEY3-6FTC +https://doi.org/10.48597/G585-CVHK +https://doi.org/10.48597/SU6F-ADD9 +https://doi.org/10.48597/FMH7-6BNS +https://doi.org/10.48597/DXG8-KJQW +https://doi.org/10.48597/PE3P-3PD5 +https://doi.org/10.48597/EM6W-9DBG +https://doi.org/10.48597/7CAA-E9CK +https://doi.org/10.48597/CAAB-PZUM +https://doi.org/10.48597/4Y9R-RQA9 +https://doi.org/10.48597/6H7C-TFSH +https://doi.org/10.48597/YYA6-ZE8R +https://doi.org/10.48597/5W8A-XMNY +https://doi.org/10.48597/8FWW-P3E4 +https://doi.org/10.48597/E693-MMGW +https://doi.org/10.48597/6UFQ-QYFX +https://doi.org/10.48597/YMUH-N3H6 +https://doi.org/10.48597/MW9K-7UWJ +https://doi.org/10.48597/C98Y-UQD8 +https://doi.org/10.48597/5K8Q-JRWH +https://doi.org/10.48597/PU4B-JFPF +https://doi.org/10.48597/RZ9M-GQSU +https://doi.org/10.48597/7WP5-4HNV +https://doi.org/10.48597/UCRE-55AB +https://doi.org/10.48597/DRKE-N98Q +https://doi.org/10.48597/FX9P-M5RW +https://doi.org/10.48597/CT5R-YH6E +https://doi.org/10.48597/ABUT-T4AH +https://doi.org/10.48597/JGFR-RUFZ +https://doi.org/10.48597/YKMC-KYHZ +https://doi.org/10.48597/42BF-C4JP +https://doi.org/10.48597/EP2T-QJ2W +https://doi.org/10.48597/AFF3-GFRG +https://doi.org/10.48597/FWZF-7SM9 +https://doi.org/10.48597/MB9T-H824 +https://doi.org/10.48597/VPZC-JJQG +https://doi.org/10.48597/BHJ5-WZ2C +https://doi.org/10.48597/QEYQ-WWZA +https://doi.org/10.48597/BNYE-G9GU +https://doi.org/10.48597/JD9K-8RG9 +https://doi.org/10.48597/KMBX-FPM9 +https://doi.org/10.48597/AU8U-FEGC +https://doi.org/10.48597/89ZM-P4BR +https://doi.org/10.48597/ZRNQ-UZ8P +https://doi.org/10.48597/4SEF-XEWW +https://doi.org/10.48597/XJT7-VPS9 +https://doi.org/10.48597/3XB6-DZ7V +https://doi.org/10.48597/52EU-9K6X +https://doi.org/10.48597/J5PJ-6DMT +https://doi.org/10.48597/T4YN-W6AA +https://doi.org/10.48597/JSFG-WASX +https://doi.org/10.48597/6ACB-WTHT +https://doi.org/10.48597/ZW6Z-HNPM +https://doi.org/10.48597/QEX5-4Y63 +https://doi.org/10.48597/YD8D-6VTQ +https://doi.org/10.48597/NWBY-VVQD +https://doi.org/10.48597/4QFF-BJUF +https://doi.org/10.48597/2Q2A-9S6E +https://doi.org/10.48597/ATDC-GSVF +https://doi.org/10.48597/CW5C-Q3C5 +https://doi.org/10.48597/A34H-WDXR +https://doi.org/10.48597/5YU8-PY4U +https://doi.org/10.48597/DFE7-EP5X +https://doi.org/10.48597/S2AV-Q9JE +https://doi.org/10.48597/2HFP-3NZP +https://doi.org/10.48597/47QN-6Z7A +https://doi.org/10.48597/ZU3B-3SAU +https://doi.org/10.48597/3V57-8GSF +https://doi.org/10.48597/3PQ3-Q7NJ +https://doi.org/10.48597/F5ED-V98W +https://doi.org/10.48597/NFT8-C3H6 +https://doi.org/10.48597/G322-NWZS +https://doi.org/10.48597/NXYA-5GS9 +https://doi.org/10.48597/YZ7W-ST3R +https://doi.org/10.48597/238Y-DN7G +https://doi.org/10.48597/PD2Y-HC76 +https://doi.org/10.48597/Y3KU-CEGY +https://doi.org/10.48597/RXUC-7E3K +https://doi.org/10.48597/ACFC-QS4M +https://doi.org/10.48597/TC4S-EWRS +https://doi.org/10.48597/ZXNW-JEWG +https://doi.org/10.48597/6YS6-2SAK +https://doi.org/10.48597/NJSV-VHPD +https://doi.org/10.48597/8KY2-75AH +https://doi.org/10.48597/UV4N-J8DQ +https://doi.org/10.48597/Q5G8-ZKK7 +https://doi.org/10.48597/QJ8X-GANZ +https://doi.org/10.48597/MQWV-M7PR +https://doi.org/10.48597/YM2E-9RW4 +https://doi.org/10.48597/H5VA-MDDE +https://doi.org/10.48597/4DBP-M2A8 +https://doi.org/10.48597/Y5Z9-M8KM +https://doi.org/10.48597/WJHE-PMCT +https://doi.org/10.48597/HYKJ-P8UF +https://doi.org/10.48597/W8B8-7AKU +https://doi.org/10.48597/58AG-VSDR +https://doi.org/10.48597/RFWT-N3RM +https://doi.org/10.48597/42TF-7JKD +https://doi.org/10.48597/S3SX-2YCF +https://doi.org/10.48597/DAZH-PRCP +https://doi.org/10.48597/SB6R-4ZSM +https://doi.org/10.48597/RJR9-AT9G +https://doi.org/10.48597/ZGNC-2ME3 +https://doi.org/10.48597/3HQ8-3J6G +https://doi.org/10.48597/TQXE-R4A3 +https://doi.org/10.48597/3N8S-7R8T +https://doi.org/10.48597/8A69-9HT9 +https://doi.org/10.48597/5TUT-BQUQ +https://doi.org/10.48597/57ZC-WJXV +https://doi.org/10.48597/R97A-FEMH +https://doi.org/10.48597/8J7R-CYZ6 +https://doi.org/10.48597/TK2C-C74A +https://doi.org/10.48597/WCE7-4GY4 +https://doi.org/10.48597/BZ34-SWD6 +https://doi.org/10.48597/464U-TZVG +https://doi.org/10.48597/CFQC-TZXU +https://doi.org/10.48597/E448-63K2 +https://doi.org/10.48597/9KPQ-9ZSF +https://doi.org/10.48597/ASJT-M6W7 +https://doi.org/10.48597/GR2B-NX4V +https://doi.org/10.48597/Z98C-NV42 +https://doi.org/10.48597/RM2A-435H +https://doi.org/10.48597/U2K7-JQ5H +https://doi.org/10.48597/KRPB-UJ8S +https://doi.org/10.48597/B27E-QHA2 +https://doi.org/10.48597/X7CA-CRXV +https://doi.org/10.48597/B5SD-RPUV +https://doi.org/10.48597/25NY-C2EF +https://doi.org/10.48597/EQ99-FTGJ +https://doi.org/10.48597/F5MM-VPWQ +https://doi.org/10.48597/QZA7-RMUM +https://doi.org/10.48597/K8XW-SVXU +https://doi.org/10.48597/ZW5S-85AP +https://doi.org/10.48597/SR4P-7JRB +https://doi.org/10.48597/ATKJ-FE2A +https://doi.org/10.48597/MVT2-MMPV +https://doi.org/10.48597/JXSU-X862 +https://doi.org/10.48597/G2AY-7MFV +https://doi.org/10.48597/WK7F-JEK7 +https://doi.org/10.48597/DTZ3-K34G +https://doi.org/10.48597/9BW7-JEMR +https://doi.org/10.48597/GJNB-SJF8 +https://doi.org/10.48597/54DS-QN6J +https://doi.org/10.48597/XFD9-8A9E +https://doi.org/10.48597/WQWM-7Z5Q +https://doi.org/10.48597/82QN-GRS3 +https://doi.org/10.48597/DUPN-DXMX +https://doi.org/10.48597/8BVU-K72D +https://doi.org/10.48597/6GEM-XPFW +https://doi.org/10.48597/W4EE-2Z2J +https://doi.org/10.48597/MTNW-MZRC +https://doi.org/10.48597/WWD9-ZNGT +https://doi.org/10.48597/RERD-5372 +https://doi.org/10.48597/RVZM-5QZ3 +https://doi.org/10.48597/6BMQ-RBBH +https://doi.org/10.48597/NFZK-SN8A +https://doi.org/10.48597/7RZY-CVFC +https://doi.org/10.48597/VRED-RRQY +https://doi.org/10.48597/TYHW-HJ8X +https://doi.org/10.48597/JBXJ-UJW4 +https://doi.org/10.48597/FX88-YXRA +https://doi.org/10.48597/HK2Z-R95J +https://doi.org/10.48597/KG9Y-RP9U +https://doi.org/10.48597/KT7J-PKHD +https://doi.org/10.48597/XTMK-G89R +https://doi.org/10.48597/AMWE-KGRP +https://doi.org/10.48597/FZY3-6YAK +https://doi.org/10.48597/EU7B-X7Y7 +https://doi.org/10.48597/P2MX-6SBM +https://doi.org/10.48597/M5U9-BTJH +https://doi.org/10.48597/VNES-8YBM +https://doi.org/10.48597/PF9J-4E74 +https://doi.org/10.48597/DB3V-CPUV +https://doi.org/10.48597/X866-84N2 +https://doi.org/10.48597/D799-8FX5 +https://doi.org/10.48597/Z8V6-5UQZ +https://doi.org/10.48597/ZU3Y-YMMH +https://doi.org/10.48597/HW3R-5GG7 +https://doi.org/10.48597/GU3S-6NPS +https://doi.org/10.48597/ZX8Q-7PFF +https://doi.org/10.48597/2JCV-5MDM +https://doi.org/10.48597/WFDN-DWCN +https://doi.org/10.48597/3QG6-MJYZ +https://doi.org/10.48597/UXMB-F6SJ +https://doi.org/10.48597/G2WV-3RWW +https://doi.org/10.48597/5SKT-WBRP +https://doi.org/10.48597/7KYN-KS3E +https://doi.org/10.48597/9TF4-TGR2 +https://doi.org/10.48597/6BS3-6X9X +https://doi.org/10.48597/RY7T-YHYC +https://doi.org/10.48597/G9W6-DE85 +https://doi.org/10.48597/D74B-AU5K +https://doi.org/10.48597/C9FU-RBKZ +https://doi.org/10.48597/DW9Z-KRB4 +https://doi.org/10.48597/NCJ6-BYM7 +https://doi.org/10.48597/3AQP-S2GN +https://doi.org/10.48597/35NS-B58Y +https://doi.org/10.48597/EYNH-43FV +https://doi.org/10.48597/ETPF-3G44 +https://doi.org/10.48597/ZCQJ-R5Y5 +https://doi.org/10.48597/JS84-HBHZ +https://doi.org/10.48597/CESN-CDGX +https://doi.org/10.48597/ZAPA-5HSG +https://doi.org/10.48597/KAND-TCRG +https://doi.org/10.48597/3WCZ-H23E +https://doi.org/10.48597/RA4X-EKW7 +https://doi.org/10.48597/ABJ7-ZSBN +https://doi.org/10.48597/GNXW-6UKX +https://doi.org/10.48597/3E7B-TCUT +https://doi.org/10.48597/WQ5R-5A33 +https://doi.org/10.48597/Y9E2-BFRA +https://doi.org/10.48597/STW8-4RVK +https://doi.org/10.48597/CNF3-QMQT +https://doi.org/10.48597/5S7C-VJ6Z +https://doi.org/10.48597/V2EZ-DDZJ +https://doi.org/10.48597/Z53Q-6JZZ +https://doi.org/10.48597/555Y-J2QH +https://doi.org/10.48597/XGAE-CRDH +https://doi.org/10.48597/MAX5-MES3 +https://doi.org/10.48597/HWWB-RTHD +https://doi.org/10.48597/C8TB-RRET +https://doi.org/10.48597/GGAG-DSWW +https://doi.org/10.48597/7BJW-P374 +https://doi.org/10.48597/ZWWZ-8SRH +https://doi.org/10.48597/8TWX-YAQH +https://doi.org/10.48597/TPFU-J6N4 +https://doi.org/10.48597/YYNJ-N64Z +https://doi.org/10.48597/XWHW-WBGU +https://doi.org/10.48597/4EZ5-2YBM +https://doi.org/10.48597/4R2J-YV28 +https://doi.org/10.48597/Z8FU-MSEM +https://doi.org/10.48597/B9W8-UFN5 +https://doi.org/10.48597/48KG-96W3 +https://doi.org/10.48597/89QZ-YCS5 +https://doi.org/10.48597/Y7N4-M6X5 +https://doi.org/10.48597/K75B-TNTE +https://doi.org/10.48597/8AYS-W2RR +https://doi.org/10.48597/R8P8-XY7E +https://doi.org/10.48597/J36E-7CHJ +https://doi.org/10.48597/EDP5-MF3A +https://doi.org/10.48597/NK5T-S833 +https://doi.org/10.48597/EEBY-TBS3 +https://doi.org/10.48597/KY7M-HJT4 +https://doi.org/10.48597/QKCH-XNUP +https://doi.org/10.48597/WFAV-QHWX +https://doi.org/10.48597/T8TR-SHBS +https://doi.org/10.48597/FK23-CH86 +https://doi.org/10.48597/F6KC-MVVA +https://doi.org/10.48597/3U3V-GABJ +https://doi.org/10.48597/TCXD-JRFT +https://doi.org/10.48597/DVUY-48RV +https://doi.org/10.48597/5E7P-WQHS +https://doi.org/10.48597/RFAT-KZNN +https://doi.org/10.48597/XSWK-6QA4 +https://doi.org/10.48597/9RSF-6ZZD +https://doi.org/10.48597/2CCC-ZVVM +https://doi.org/10.48597/WD7X-R2AT +https://doi.org/10.48597/94BD-CPKM +https://doi.org/10.48597/JARU-U2KT +https://doi.org/10.48597/AGRZ-6FUF +https://doi.org/10.48597/9SQA-F5WH +https://doi.org/10.48597/YTEN-WCAM +https://doi.org/10.48597/YKCM-2M6J +https://doi.org/10.48597/DQB5-VS9A +https://doi.org/10.48597/FYVE-9QQ7 +https://doi.org/10.48597/CMHJ-JHHK +https://doi.org/10.48597/B6JA-HRG3 +https://doi.org/10.48597/W8CE-VU6C +https://doi.org/10.48597/QN8C-RZ6F +https://doi.org/10.48597/JGFZ-K3A5 +https://doi.org/10.48597/MR6P-N8YX +https://doi.org/10.48597/SQHB-7XWW +https://doi.org/10.48597/3ESB-FDAK +https://doi.org/10.48597/K7R4-FDJY +https://doi.org/10.48597/YAYU-9UD4 +https://doi.org/10.48597/EEYQ-QER4 +https://doi.org/10.48597/6THF-WMJC +https://doi.org/10.48597/H3TE-W5QD +https://doi.org/10.48597/8KNS-UUNJ +https://doi.org/10.48597/UQXC-E5N2 +https://doi.org/10.48597/CVFG-HY52 +https://doi.org/10.48597/UDRE-2AFY +https://doi.org/10.48597/VJXS-KQSV +https://doi.org/10.48597/FTAC-TMCU +https://doi.org/10.48597/53JQ-3GZ5 +https://doi.org/10.48597/YK6A-YFK9 +https://doi.org/10.48597/F69G-VUCZ +https://doi.org/10.48597/9872-7BFF +https://doi.org/10.48597/ZZQ6-QUJK +https://doi.org/10.48597/XHDA-U2KV +https://doi.org/10.48597/Y43J-8FSX +https://doi.org/10.48597/QNNN-45PZ +https://doi.org/10.48597/NG24-PSYZ +https://doi.org/10.48597/5RW6-5YET +https://doi.org/10.48597/BG9P-N6C6 +https://doi.org/10.48597/MHRW-PS8F +https://doi.org/10.48597/6BDC-FAM5 +https://doi.org/10.48597/79DP-PBH6 +https://doi.org/10.48597/JASA-CVTF +https://doi.org/10.48597/BDNQ-KS8Z +https://doi.org/10.48597/BVFZ-76C2 +https://doi.org/10.48597/A3T9-JQKX +https://doi.org/10.48597/VU93-V65X +https://doi.org/10.48597/5P25-V8E6 +https://doi.org/10.48597/Z88T-VEKN +https://doi.org/10.48597/YVC8-FXQ7 +https://doi.org/10.48597/BZWF-YMSS +https://doi.org/10.48597/8VXP-NF2F +https://doi.org/10.48597/TPDN-WRFC +https://doi.org/10.48597/FQ2Y-4CS3 +https://doi.org/10.48597/NEB9-PTJ9 +https://doi.org/10.48597/66NB-2UVA +https://doi.org/10.48597/BG2J-FTRP +https://doi.org/10.48597/SME9-NR7G +https://doi.org/10.48597/5MBD-HN5N +https://doi.org/10.48597/QN24-ZSTQ +https://doi.org/10.48597/MZKT-EDYS +https://doi.org/10.48597/JRFT-BRC6 +https://doi.org/10.48597/CUKN-QARB +https://doi.org/10.48597/E2H9-Q4ZE +https://doi.org/10.48597/UH59-5FR5 +https://doi.org/10.48597/3KHG-Y4WJ +https://doi.org/10.48597/UCS7-9YBC +https://doi.org/10.48597/2JC7-Z7D7 +https://doi.org/10.48597/FQUQ-7JAA +https://doi.org/10.48597/G4QM-37F2 +https://doi.org/10.48597/8PP6-DJFH +https://doi.org/10.48597/3ZAC-85BY +https://doi.org/10.48597/W96D-AVM5 +https://doi.org/10.48597/MWF6-Y3KM +https://doi.org/10.48597/UQ3P-GUNB +https://doi.org/10.48597/AG22-WX7D +https://doi.org/10.48597/B92Q-HGSM +https://doi.org/10.48597/MVGM-GDSK +https://doi.org/10.48597/72HD-G74R +https://doi.org/10.48597/HKYR-84QA +https://doi.org/10.48597/HHH8-TNTE +https://doi.org/10.48597/72FT-KFNC +https://doi.org/10.48597/EXQV-Z4T9 +https://doi.org/10.48597/G4MW-AMGB +https://doi.org/10.48597/YUNQ-2JAU +https://doi.org/10.48597/P24Z-2KS2 +https://doi.org/10.48597/35QM-EEBM +https://doi.org/10.48597/8NY5-2894 +https://doi.org/10.48597/NVGD-878J +https://doi.org/10.48597/2NNG-ZKAQ +https://doi.org/10.48597/JMCN-6X5D +https://doi.org/10.48597/J7JG-WQSJ +https://doi.org/10.48597/HCB3-JPU5 +https://doi.org/10.48597/G6RN-539U +https://doi.org/10.48597/R965-6YG8 +https://doi.org/10.48597/2MBG-FPF7 +https://doi.org/10.48597/EXBS-MFR7 +https://doi.org/10.48597/RU6Z-HBBU +https://doi.org/10.48597/KA3G-XRTJ +https://doi.org/10.48597/62S6-RJR9 +https://doi.org/10.48597/KH42-5V4S +https://doi.org/10.48597/VJ6T-PBU7 +https://doi.org/10.48597/MPKX-ZVV5 +https://doi.org/10.48597/42X5-8MX5 +https://doi.org/10.48597/S4SM-Y35K +https://doi.org/10.48597/X7XW-BVUJ +https://doi.org/10.48597/TGKY-3X8F +https://doi.org/10.48597/JCWW-UBQC +https://doi.org/10.48597/WFEC-RQBJ +https://doi.org/10.48597/CNK7-Y9VP +https://doi.org/10.48597/ADBP-XZAN +https://doi.org/10.48597/95Q6-9RMJ +https://doi.org/10.48597/JW4R-EUFK +https://doi.org/10.48597/N79G-X3H7 +https://doi.org/10.48597/JF2D-QAR2 +https://doi.org/10.48597/Y5FU-JQ3P +https://doi.org/10.48597/CUWR-ZQJA +https://doi.org/10.48597/WVHC-RQ3N +https://doi.org/10.48597/P9Z6-WRAY +https://doi.org/10.48597/SJVK-VEHA +https://doi.org/10.48597/ZNZX-2KMR +https://doi.org/10.48597/Q2PB-TXF5 +https://doi.org/10.48597/F9ZQ-294V +https://doi.org/10.48597/2MGK-JZQY +https://doi.org/10.48597/ZW4G-F7UR +https://doi.org/10.48597/BAE4-XBT8 +https://doi.org/10.48597/EWF6-DCKQ +https://doi.org/10.48597/A5RZ-8RJ2 +https://doi.org/10.48597/AN4H-MQV4 +https://doi.org/10.48597/P9MS-AS7T +https://doi.org/10.48597/QQR6-X4UR +https://doi.org/10.48597/6FEV-HTBE +https://doi.org/10.48597/PP2Z-CJMY +https://doi.org/10.48597/2RV3-FRWH +https://doi.org/10.48597/HHUS-ZT5D +https://doi.org/10.48597/8XMA-SE9E +https://doi.org/10.48597/X4YT-ENBW +https://doi.org/10.48597/E5WR-NRM2 +https://doi.org/10.48597/3XWS-HDBQ +https://doi.org/10.48597/FYB5-462A +https://doi.org/10.48597/3KKQ-XGQ8 +https://doi.org/10.48597/H993-6MCQ +https://doi.org/10.48597/D6RH-NXGQ +https://doi.org/10.48597/XKJH-83VP +https://doi.org/10.48597/G2DB-35TT +https://doi.org/10.48597/5FV6-35RN +https://doi.org/10.48597/5A88-X653 +https://doi.org/10.48597/NH7Y-9HZQ +https://doi.org/10.48597/48SU-YTWY +https://doi.org/10.48597/EZYP-P9DV +https://doi.org/10.48597/4VBD-QMBP +https://doi.org/10.48597/3WKB-REUS +https://doi.org/10.48597/Y4A7-26T3 +https://doi.org/10.48597/CWP4-4N4S +https://doi.org/10.48597/9WBV-99Q9 +https://doi.org/10.48597/PK4S-U82Z +https://doi.org/10.48597/N6SC-9YG8 +https://doi.org/10.48597/A82V-2BRY +https://doi.org/10.48597/CYCR-HSNX +https://doi.org/10.48597/U7BU-KPK3 +https://doi.org/10.48597/3ADZ-Z5Q2 +https://doi.org/10.48597/4YVF-CDW9 +https://doi.org/10.48597/YJ9V-YTS9 +https://doi.org/10.48597/34WQ-KJMU +https://doi.org/10.48597/5H4K-PD76 +https://doi.org/10.48597/6JYE-DHN8 +https://doi.org/10.48597/Q89W-YNXT +https://doi.org/10.48597/ABV8-T62R +https://doi.org/10.48597/BA6Y-URQN +https://doi.org/10.48597/GRYB-3JVU +https://doi.org/10.48597/UWMC-6FZC +https://doi.org/10.48597/42NT-7AJG +https://doi.org/10.48597/KPDW-NBA8 +https://doi.org/10.48597/S7AC-9E72 +https://doi.org/10.48597/93VT-P9WQ +https://doi.org/10.48597/HEBM-8TJR +https://doi.org/10.48597/XBJW-CPMS +https://doi.org/10.48597/STHU-SE3X +https://doi.org/10.48597/N4PF-P5ZN +https://doi.org/10.48597/7JD9-PGQF +https://doi.org/10.48597/VQ9C-92QZ +https://doi.org/10.48597/9U5E-EKPM +https://doi.org/10.48597/67D8-E5X6 +https://doi.org/10.48597/Z3E9-UE8B +https://doi.org/10.48597/2QQX-JUYB +https://doi.org/10.48597/6SZD-KT8G +https://doi.org/10.48597/T4NT-K8NP +https://doi.org/10.48597/Y6GP-T2TA +https://doi.org/10.48597/GZPE-3YXX +https://doi.org/10.48597/C5HW-63A8 +https://doi.org/10.48597/XWT9-PHDF +https://doi.org/10.48597/M4Y2-FQFM +https://doi.org/10.48597/9MSK-QUQ6 +https://doi.org/10.48597/JQFJ-XRSB +https://doi.org/10.48597/WN4J-6KEH +https://doi.org/10.48597/VYRH-G5SB +https://doi.org/10.48597/RVCC-Y5D5 +https://doi.org/10.48597/EEAQ-FE2F +https://doi.org/10.48597/6PFR-K8UK +https://doi.org/10.48597/NQKP-F2AU +https://doi.org/10.48597/4T85-4UJW +https://doi.org/10.48597/MEG6-7YUD +https://doi.org/10.48597/2NX8-CDWM +https://doi.org/10.48597/UCD6-FAYP +https://doi.org/10.48597/CQK2-YRDC +https://doi.org/10.48597/BQCK-H3YU +https://doi.org/10.48597/B5HK-9AJ9 +https://doi.org/10.48597/93MS-YUGY +https://doi.org/10.48597/GEYS-GQU4 +https://doi.org/10.48597/PWR3-J3G6 +https://doi.org/10.48597/9CSP-5E59 +https://doi.org/10.48597/XDM4-YJ7E +https://doi.org/10.48597/BKBM-ZHET +https://doi.org/10.48597/SVJN-FJZK +https://doi.org/10.48597/RS87-B5V3 +https://doi.org/10.48597/WCDJ-VZGY +https://doi.org/10.48597/ZXDS-AWPT +https://doi.org/10.48597/UKEG-NWQ5 +https://doi.org/10.48597/PFDP-SBF9 +https://doi.org/10.48597/W7BX-GD2W +https://doi.org/10.48597/8NJG-N27Q +https://doi.org/10.48597/UWEF-FWEH +https://doi.org/10.48597/99JS-73DA +https://doi.org/10.48597/JQ5V-WNPJ +https://doi.org/10.48597/ST68-VKRZ +https://doi.org/10.48597/PPB3-HVXW +https://doi.org/10.48597/3EDT-CSXC +https://doi.org/10.48597/YVFG-FKCN +https://doi.org/10.48597/WCH9-JT3W +https://doi.org/10.48597/P4K3-WBZ8 +https://doi.org/10.48597/MAQS-NCGB +https://doi.org/10.48597/88RY-CEG9 +https://doi.org/10.48597/VYMS-MCJJ +https://doi.org/10.48597/3WAK-JKQE +https://doi.org/10.48597/NNA3-ZMTB +https://doi.org/10.48597/C548-Y94Y +https://doi.org/10.48597/RWDV-SZ6Z +https://doi.org/10.48597/6PDG-2Z9X +https://doi.org/10.48597/MUMC-DBG9 +https://doi.org/10.48597/3VXT-HZKR +https://doi.org/10.48597/2UMK-4AYF +https://doi.org/10.48597/ZTCC-3V48 +https://doi.org/10.48597/KRPX-PPF3 +https://doi.org/10.48597/YX4D-NYAG +https://doi.org/10.48597/QC3Q-XEF8 +https://doi.org/10.48597/2MRN-HRMH +https://doi.org/10.48597/MECJ-HR3A +https://doi.org/10.48597/V3VA-P68T +https://doi.org/10.48597/F88M-P6ZY +https://doi.org/10.48597/JTZM-NRHT +https://doi.org/10.48597/UTCG-D6P8 +https://doi.org/10.48597/D6SE-WWKQ +https://doi.org/10.48597/86PD-VMZV +https://doi.org/10.48597/YG7W-V4JN +https://doi.org/10.48597/GTNW-A6QC +https://doi.org/10.48597/AG5S-8MA6 +https://doi.org/10.48597/RXDA-Y4SF +https://doi.org/10.48597/JU8A-R54Z +https://doi.org/10.48597/KXEA-WMGH +https://doi.org/10.48597/2YM3-WBW5 +https://doi.org/10.48597/Z68S-HFWE +https://doi.org/10.48597/YJNP-P9W9 +https://doi.org/10.48597/X2Y2-VKS4 +https://doi.org/10.48597/Q8KQ-DWB5 +https://doi.org/10.48597/RKXV-NWKK +https://doi.org/10.48597/JKJ7-8BJS +https://doi.org/10.48597/HCJB-D2MT +https://doi.org/10.48597/CCQR-PXK2 +https://doi.org/10.48597/7S58-NKJV +https://doi.org/10.48597/YUVJ-2UMS +https://doi.org/10.48597/J3PM-RVU3 +https://doi.org/10.48597/MD8A-ZA8K +https://doi.org/10.48597/KMHR-ZRXX +https://doi.org/10.48597/UP4E-KGEA +https://doi.org/10.48597/XHBQ-WW9E +https://doi.org/10.48597/T6RR-KA9K +https://doi.org/10.48597/7KXF-X435 +https://doi.org/10.48597/QD29-RHH4 +https://doi.org/10.48597/7BG6-7X5V +https://doi.org/10.48597/KWXP-HMDM +https://doi.org/10.48597/CM52-49YV +https://doi.org/10.48597/CA7K-VMCU +https://doi.org/10.48597/HGXY-E9M8 +https://doi.org/10.48597/UQ88-CWK5 +https://doi.org/10.48597/DV3W-H8CX +https://doi.org/10.48597/MAJ8-86XY +https://doi.org/10.48597/53XH-4KFQ +https://doi.org/10.48597/EZ9W-TCJE +https://doi.org/10.48597/JAHD-Y3FB +https://doi.org/10.48597/8M6F-ACWF +https://doi.org/10.48597/QSSN-PJH7 +https://doi.org/10.48597/26WT-42QC +https://doi.org/10.48597/W37X-WHX4 +https://doi.org/10.48597/4M9R-AWRS +https://doi.org/10.48597/RHDF-FZUX +https://doi.org/10.48597/CYS6-8ZJW +https://doi.org/10.48597/BRJV-DW7M +https://doi.org/10.48597/H2N2-97B5 +https://doi.org/10.48597/5PNC-ND8H +https://doi.org/10.48597/MS8R-AD8P +https://doi.org/10.48597/MK5C-PRWY +https://doi.org/10.48597/EYSJ-2CWC +https://doi.org/10.48597/BV4D-NE7W +https://doi.org/10.48597/2VTJ-VZZK +https://doi.org/10.48597/Q6CH-7M6W +https://doi.org/10.48597/STK9-AW9E +https://doi.org/10.48597/2HHH-GY8V +https://doi.org/10.48597/AMYK-5ZJ5 +https://doi.org/10.48597/WSFT-96N4 +https://doi.org/10.48597/VK3K-FRZQ +https://doi.org/10.48597/A9UA-2GPJ +https://doi.org/10.48597/KWSW-HZMH +https://doi.org/10.48597/DMUU-HKP5 +https://doi.org/10.48597/EY4Y-6Z8B +https://doi.org/10.48597/EXNH-G4HB +https://doi.org/10.48597/3CNC-8MN6 +https://doi.org/10.48597/BWSW-MH4D +https://doi.org/10.48597/FGEV-D5FS +https://doi.org/10.48597/ZV96-7Y35 +https://doi.org/10.48597/A7WJ-TQSR +https://doi.org/10.48597/4NXY-8PF7 +https://doi.org/10.48597/MZFY-6TRW +https://doi.org/10.48597/BM6N-JMNW +https://doi.org/10.48597/AQVT-Q4U6 +https://doi.org/10.48597/QGJJ-ZD7B +https://doi.org/10.48597/A2Z8-6U6H +https://doi.org/10.48597/FUDZ-EJ56 +https://doi.org/10.48597/KZV2-WAVT +https://doi.org/10.48597/RWUW-HH5T +https://doi.org/10.48597/M8UR-4KF9 +https://doi.org/10.48597/2ZAT-QDJS +https://doi.org/10.48597/GPQS-NN5V +https://doi.org/10.48597/6WZY-FCB8 +https://doi.org/10.48597/FHZ7-5QEV +https://doi.org/10.48597/N7EQ-SY46 +https://doi.org/10.48597/5GJA-PJRP +https://doi.org/10.48597/7Z3Y-7UDV +https://doi.org/10.48597/ZWN3-7GRJ +https://doi.org/10.48597/SBJP-HXCM +https://doi.org/10.48597/4Y4C-JCGV +https://doi.org/10.48597/M6YY-SRH4 +https://doi.org/10.48597/4DU3-65BS +https://doi.org/10.48597/2VXY-HB6R +https://doi.org/10.48597/5WPH-C5JY +https://doi.org/10.48597/VAVQ-P4ZB +https://doi.org/10.48597/WWAX-37TS +https://doi.org/10.48597/H7T2-RYQY +https://doi.org/10.48597/8K37-P5JU +https://doi.org/10.48597/FGBW-B2ED +https://doi.org/10.48597/NKX6-UKVV +https://doi.org/10.48597/8XYM-XVYY +https://doi.org/10.48597/2X9S-VV6P +https://doi.org/10.48597/SEJT-XRKC +https://doi.org/10.48597/YGCN-2B4E +https://doi.org/10.48597/4QFK-J33U +https://doi.org/10.48597/5RQG-MHBM +https://doi.org/10.48597/RPNC-UA3V +https://doi.org/10.48597/QEJR-AJ7G +https://doi.org/10.48597/MJAE-ZAFR +https://doi.org/10.48597/PD2T-FWY2 +https://doi.org/10.48597/MBFU-9ZVA +https://doi.org/10.48597/RVQU-KAZN +https://doi.org/10.48597/YNEY-KT5Y +https://doi.org/10.48597/K2WT-FJ9Y +https://doi.org/10.48597/KEBG-FFMN +https://doi.org/10.48597/R4AQ-FMW9 +https://doi.org/10.48597/S4QS-YMEX +https://doi.org/10.48597/9T7S-8NSR +https://doi.org/10.48597/C8UP-T74Z +https://doi.org/10.48597/NQ2H-GGJF +https://doi.org/10.48597/G2SV-GM4Z +https://doi.org/10.48597/2HTX-CTM7 +https://doi.org/10.48597/Y252-B3Q5 +https://doi.org/10.48597/7RWP-426B +https://doi.org/10.48597/CJUS-Q9QY +https://doi.org/10.48597/KHA5-UW98 +https://doi.org/10.48597/EKPZ-FNVQ +https://doi.org/10.48597/P9BQ-DEEK +https://doi.org/10.48597/2PYC-AMRK +https://doi.org/10.48597/BBE3-2YR7 +https://doi.org/10.48597/D6U8-XYB6 +https://doi.org/10.48597/4XFN-A74V +https://doi.org/10.48597/VSZM-XWNX +https://doi.org/10.48597/435M-DAUY +https://doi.org/10.48597/SKTN-H46U +https://doi.org/10.48597/3A72-9ZPS +https://doi.org/10.48597/7AXQ-ETDY +https://doi.org/10.48597/ZPB7-ZFSP +https://doi.org/10.48597/5653-FVM8 +https://doi.org/10.48597/HDJE-R459 +https://doi.org/10.48597/G5ZZ-PG4Q +https://doi.org/10.48597/JCAW-2QFU +https://doi.org/10.48597/RM74-XYQ8 +https://doi.org/10.48597/6RWC-ERVG +https://doi.org/10.48597/REZ3-YW2H +https://doi.org/10.48597/EPVJ-WHYZ +https://doi.org/10.48597/DX6G-94NM +https://doi.org/10.48597/PZKC-VFY5 +https://doi.org/10.48597/7QFJ-HKFR +https://doi.org/10.48597/BBHE-XB9U +https://doi.org/10.48597/6V2T-TFJJ +https://doi.org/10.48597/YESU-NU7G +https://doi.org/10.48597/N8WN-CUXK +https://doi.org/10.48597/JS43-M4TG +https://doi.org/10.48597/TS69-8R59 +https://doi.org/10.48597/G8E3-R9PK +https://doi.org/10.48597/YZ9N-EY69 +https://doi.org/10.48597/4QU2-UBDY +https://doi.org/10.48597/ZAJC-A9JQ +https://doi.org/10.48597/78QE-XZCR +https://doi.org/10.48597/D7F4-UC6D +https://doi.org/10.48597/K6AB-KMU7 +https://doi.org/10.48597/E3K3-GMR3 +https://doi.org/10.48597/ZNQX-BNT5 +https://doi.org/10.48597/GMS5-V45D +https://doi.org/10.48597/9BHP-FPHD +https://doi.org/10.48597/6VEK-NY58 +https://doi.org/10.48597/NFUS-8EEP +https://doi.org/10.48597/EQ2B-MZRH +https://doi.org/10.48597/GD6H-QSXX +https://doi.org/10.48597/CUJA-J6CA +https://doi.org/10.48597/XX79-SWZT +https://doi.org/10.48597/4G55-EBTV +https://doi.org/10.48597/P2F7-8ZVH +https://doi.org/10.48597/F9ED-TNY5 +https://doi.org/10.48597/NWBB-E5VX +https://doi.org/10.48597/P9VK-UAFU +https://doi.org/10.48597/SNZA-DC4R +https://doi.org/10.48597/D79A-AV4Q +https://doi.org/10.48597/S79G-B8MA +https://doi.org/10.48597/H8MJ-KDA4 +https://doi.org/10.48597/6C9H-MRJ2 +https://doi.org/10.48597/6Z5D-9ACJ +https://doi.org/10.48597/HT4G-4BBG +https://doi.org/10.48597/5AB4-AXGT +https://doi.org/10.48597/VXRG-VJ55 +https://doi.org/10.48597/ZEUE-PVNW +https://doi.org/10.48597/AXAV-HV9Z +https://doi.org/10.48597/WE58-TR6S +https://doi.org/10.48597/JFET-WRN5 +https://doi.org/10.48597/X7BM-6EVK +https://doi.org/10.48597/EQ9J-SMC2 +https://doi.org/10.48597/XRZN-RQQA +https://doi.org/10.48597/TYE7-Z7C9 +https://doi.org/10.48597/KU3B-JXUX +https://doi.org/10.48597/TXB5-5X62 +https://doi.org/10.48597/TDN9-669W +https://doi.org/10.48597/6SD5-NZ6P +https://doi.org/10.48597/RSN3-SCDR +https://doi.org/10.48597/YD84-JPB6 +https://doi.org/10.48597/WMSZ-4X56 +https://doi.org/10.48597/B3JQ-4SQX +https://doi.org/10.48597/54WG-ZTZT +https://doi.org/10.48597/7DCS-2AJ4 +https://doi.org/10.48597/XVFG-7GXN +https://doi.org/10.48597/V3BK-W2B3 +https://doi.org/10.48597/Y8Z3-XP3G +https://doi.org/10.48597/4GZ5-WTMG +https://doi.org/10.48597/XFCX-DPN5 +https://doi.org/10.48597/WS9B-VGP3 +https://doi.org/10.48597/GGWM-A2BZ +https://doi.org/10.48597/KFEF-Q9WQ +https://doi.org/10.48597/9W69-4YAT +https://doi.org/10.48597/XFS6-7UUQ +https://doi.org/10.48597/8WTV-NK6H +https://doi.org/10.48597/AF6W-UBHF +https://doi.org/10.48597/K5X7-UEHQ +https://doi.org/10.48597/S5MD-S6A4 +https://doi.org/10.48597/NWJZ-NS5M +https://doi.org/10.48597/7P4G-C9N6 +https://doi.org/10.48597/EVR9-3USH +https://doi.org/10.48597/FW2K-JQAH +https://doi.org/10.48597/GMBY-YNY2 +https://doi.org/10.48597/H9AJ-QA9P +https://doi.org/10.48597/BUKY-TEFF +https://doi.org/10.48597/VQ46-9RE4 +https://doi.org/10.48597/W365-7QVF +https://doi.org/10.48597/7DCJ-Z2FH +https://doi.org/10.48597/DYPS-HWDH +https://doi.org/10.48597/GHVF-ABGM +https://doi.org/10.48597/49F3-6UHB +https://doi.org/10.48597/UPHA-E2HW +https://doi.org/10.48597/NUPS-2PYT +https://doi.org/10.48597/5K43-PZHY +https://doi.org/10.48597/2YTB-622M +https://doi.org/10.48597/GNS9-3556 +https://doi.org/10.48597/MHUT-GE7Y +https://doi.org/10.48597/MCYV-Z2DC +https://doi.org/10.48597/8VWM-J68F +https://doi.org/10.48597/TN69-XQYB +https://doi.org/10.48597/6WM7-ZVR2 +https://doi.org/10.48597/VWW2-HE43 +https://doi.org/10.48597/H9QM-DHV9 +https://doi.org/10.48597/TZ7J-G8BR +https://doi.org/10.48597/GN22-4AX3 +https://doi.org/10.48597/HMTJ-QQAJ +https://doi.org/10.48597/USPB-B4FG +https://doi.org/10.48597/84EZ-WM8H +https://doi.org/10.48597/NP68-SJCW +https://doi.org/10.48597/VAM4-FQRK +https://doi.org/10.48597/7MBR-CY4J +https://doi.org/10.48597/38WA-4AVY +https://doi.org/10.48597/KP9B-PW4X +https://doi.org/10.48597/2X6Y-WT2V +https://doi.org/10.48597/GV9T-5H79 +https://doi.org/10.48597/HXA8-F63W +https://doi.org/10.48597/CB2G-BJZD +https://doi.org/10.48597/FJKZ-KF3A +https://doi.org/10.48597/R7K7-XX83 +https://doi.org/10.48597/52P7-9FC3 +https://doi.org/10.48597/JU2F-5BSX +https://doi.org/10.48597/QQGK-RJAC +https://doi.org/10.48597/5SBH-9TYK +https://doi.org/10.48597/SA5G-ADT4 +https://doi.org/10.48597/AAFE-M8E7 +https://doi.org/10.48597/5K3N-KZGJ +https://doi.org/10.48597/S26A-7UV4 +https://doi.org/10.48597/Z8HZ-K9FM +https://doi.org/10.48597/2W89-GRTV +https://doi.org/10.48597/TD48-R4N2 +https://doi.org/10.48597/VT74-4RD4 +https://doi.org/10.48597/QHPP-DGEU +https://doi.org/10.48597/RYMW-JZ8C +https://doi.org/10.48597/WXTR-3V34 +https://doi.org/10.48597/EKUN-V7TT +https://doi.org/10.48597/R3WS-4VS9 +https://doi.org/10.48597/3YF8-GTYK +https://doi.org/10.48597/F2CW-JZ8Z +https://doi.org/10.48597/V8HU-9W8D +https://doi.org/10.48597/XFGW-3CT2 +https://doi.org/10.48597/5F2S-RWGD +https://doi.org/10.48597/FQXG-AMPD +https://doi.org/10.48597/B6XU-JUXV +https://doi.org/10.48597/3XJJ-8JZJ +https://doi.org/10.48597/XADM-K4TB +https://doi.org/10.48597/GYQE-7E9P +https://doi.org/10.48597/6KHT-4SYU +https://doi.org/10.48597/2SVF-QJM6 +https://doi.org/10.48597/BMTQ-H3WB +https://doi.org/10.48597/FK6Z-YYVQ +https://doi.org/10.48597/JKX5-3BGR +https://doi.org/10.48597/ACTP-8MTP +https://doi.org/10.48597/RBFG-NNVP +https://doi.org/10.48597/QUKQ-FR6D +https://doi.org/10.48597/6HPN-XHKZ +https://doi.org/10.48597/XVJ5-AQGZ +https://doi.org/10.48597/AFYH-ERAQ +https://doi.org/10.48597/7WS5-GFVD +https://doi.org/10.48597/SNQQ-HD94 +https://doi.org/10.48597/XWMP-T7CN +https://doi.org/10.48597/SN2N-VWUQ +https://doi.org/10.48597/UH75-BG3E +https://doi.org/10.48597/8NUE-CUG8 +https://doi.org/10.48597/JDZP-4GGD +https://doi.org/10.48597/74RQ-AB9G +https://doi.org/10.48597/9CK4-6Z87 +https://doi.org/10.48597/PA6U-78QE +https://doi.org/10.48597/PSWC-3PRE +https://doi.org/10.48597/SZ3B-UNKS +https://doi.org/10.48597/3BT2-MUUH +https://doi.org/10.48597/RUFW-QTBG +https://doi.org/10.48597/RPMK-MADM +https://doi.org/10.48597/RS3J-YVVU +https://doi.org/10.48597/YK26-YFMS +https://doi.org/10.48597/QQGW-X9BP +https://doi.org/10.48597/TNEQ-24NV +https://doi.org/10.48597/Y4JA-HJ7N +https://doi.org/10.48597/T9Q8-KTCX +https://doi.org/10.48597/8WSE-AAG8 +https://doi.org/10.48597/TVFD-7ZMF +https://doi.org/10.48597/CVH5-V7EC +https://doi.org/10.48597/P4Q3-UMY5 +https://doi.org/10.48597/Y6H5-S6T2 +https://doi.org/10.48597/Y8HZ-G9RS +https://doi.org/10.48597/KQFT-DEFA +https://doi.org/10.48597/98GZ-EJAD +https://doi.org/10.48597/G2U2-DSZU +https://doi.org/10.48597/F42A-Q6WC +https://doi.org/10.48597/EYXM-RXT3 +https://doi.org/10.48597/QEPM-CFWQ +https://doi.org/10.48597/UXFT-V8MA +https://doi.org/10.48597/BUJE-5NW8 +https://doi.org/10.48597/NUMG-JQ9S +https://doi.org/10.48597/W5RZ-3S78 +https://doi.org/10.48597/JC8X-PUZF +https://doi.org/10.48597/7ZPX-9JQW +https://doi.org/10.48597/STRJ-84SG +https://doi.org/10.48597/2KW5-ECQV +https://doi.org/10.48597/C4R9-4FBJ +https://doi.org/10.48597/KDWZ-3GHA +https://doi.org/10.48597/RAGG-6XX3 +https://doi.org/10.48597/DHEX-5RY4 +https://doi.org/10.48597/6F7D-N76V +https://doi.org/10.48597/8JQX-6CZ8 +https://doi.org/10.48597/XY92-4JCW +https://doi.org/10.48597/SCZM-UG3N +https://doi.org/10.48597/5TBP-GGK2 +https://doi.org/10.48597/W4H6-UV9H +https://doi.org/10.48597/QV5N-4RDQ +https://doi.org/10.48597/N67U-FDJM +https://doi.org/10.48597/K8U3-5YJG +https://doi.org/10.48597/B42E-EU5K +https://doi.org/10.48597/V58W-6ZED +https://doi.org/10.48597/MXA8-6R6J +https://doi.org/10.48597/SE7X-AXQF +https://doi.org/10.48597/PPH7-G38B +https://doi.org/10.48597/5S2G-B3PR +https://doi.org/10.48597/ZZGM-D4YK +https://doi.org/10.48597/P8PD-P9RZ +https://doi.org/10.48597/Y76F-6W3M +https://doi.org/10.48597/NT8B-VYE3 +https://doi.org/10.48597/CHZA-YJ33 +https://doi.org/10.48597/QHKP-6QC5 +https://doi.org/10.48597/TX3Q-697J +https://doi.org/10.48597/JUMH-EQR5 +https://doi.org/10.48597/FZ7K-HBCU +https://doi.org/10.48597/HPJ7-FNQD +https://doi.org/10.48597/7K6H-JP94 +https://doi.org/10.48597/BH2P-SN6E +https://doi.org/10.48597/H4CW-FUZF +https://doi.org/10.48597/BH3G-4FZF +https://doi.org/10.48597/NC7V-BZHY +https://doi.org/10.48597/6WXY-AABT +https://doi.org/10.48597/C2YZ-TCB8 +https://doi.org/10.48597/6UQU-F2KN +https://doi.org/10.48597/UXFV-88DM +https://doi.org/10.48597/2H46-RZZH +https://doi.org/10.48597/TTDY-HA8R +https://doi.org/10.48597/XKY8-JRXN +https://doi.org/10.48597/DQAY-H8TB +https://doi.org/10.48597/Q7CU-HXY3 +https://doi.org/10.48597/U7ZP-6NY5 +https://doi.org/10.48597/FTHX-ZTSZ +https://doi.org/10.48597/RGNJ-XC9C +https://doi.org/10.48597/7HM7-HNFF +https://doi.org/10.48597/ZXTY-M8M2 +https://doi.org/10.48597/JDVP-PSPW +https://doi.org/10.48597/2GD5-HEXK +https://doi.org/10.48597/WPW7-8SBW +https://doi.org/10.48597/SUK2-N2T5 +https://doi.org/10.48597/WS83-SKJB +https://doi.org/10.48597/WRDW-2NTM +https://doi.org/10.48597/EKZ2-DYHP +https://doi.org/10.48597/Z2UF-QZF3 +https://doi.org/10.48597/MZDK-6RWN +https://doi.org/10.48597/J4G8-6NMB +https://doi.org/10.48597/5HVB-6PV7 +https://doi.org/10.48597/4YE7-5Q84 +https://doi.org/10.48597/BC4W-ZD54 +https://doi.org/10.48597/ZHQK-A4Y6 +https://doi.org/10.48597/QBF7-5HKK +https://doi.org/10.48597/6EJ8-UNDE +https://doi.org/10.48597/RKA9-JVR3 +https://doi.org/10.48597/TENW-DD5Q +https://doi.org/10.48597/5SB3-J52J +https://doi.org/10.48597/JPHR-Z6YD +https://doi.org/10.48597/NB9N-6UNR +https://doi.org/10.48597/8JVG-66JZ +https://doi.org/10.48597/WKRP-7FYJ +https://doi.org/10.48597/JK9P-JK4K +https://doi.org/10.48597/FT85-UNA6 +https://doi.org/10.48597/AME9-9EGX +https://doi.org/10.48597/N7T6-FZ6R +https://doi.org/10.48597/YQKM-T245 +https://doi.org/10.48597/FPZH-C9G9 +https://doi.org/10.48597/AMEG-QECX +https://doi.org/10.48597/3WUH-DS2H +https://doi.org/10.48597/2UPD-SGKT +https://doi.org/10.48597/JKBF-V4C4 +https://doi.org/10.48597/K2CW-TGZM +https://doi.org/10.48597/8PAN-M4XX +https://doi.org/10.48597/AG7S-ACAH +https://doi.org/10.48597/Q5RN-2E2Q +https://doi.org/10.48597/2SFB-END5 +https://doi.org/10.48597/BPD5-N3P9 +https://doi.org/10.48597/95ZB-AFMG +https://doi.org/10.48597/72BW-6GJ4 +https://doi.org/10.48597/ZAHS-RVE4 +https://doi.org/10.48597/3M22-6SNS +https://doi.org/10.48597/G9YM-4S47 +https://doi.org/10.48597/Q74W-98CZ +https://doi.org/10.48597/SCG3-8Q3J +https://doi.org/10.48597/45U9-W7SY +https://doi.org/10.48597/RFCV-4DNK +https://doi.org/10.48597/K6PJ-Q5NR +https://doi.org/10.48597/UNVE-BA9Y +https://doi.org/10.48597/W7EH-P5TX +https://doi.org/10.48597/96E8-8MEX +https://doi.org/10.48597/KVHG-MKEJ +https://doi.org/10.48597/HSF7-DM4T +https://doi.org/10.48597/CBX4-TRW4 +https://doi.org/10.48597/EYBE-NSHZ +https://doi.org/10.48597/J8NR-ZWKZ +https://doi.org/10.48597/RFWW-TVVM +https://doi.org/10.48597/92T8-G67M +https://doi.org/10.48597/YNEB-Q8T4 +https://doi.org/10.48597/6NP3-57MW +https://doi.org/10.48597/TPZZ-NUSD +https://doi.org/10.48597/V6Z3-JSVW +https://doi.org/10.48597/FQ4M-UVK6 +https://doi.org/10.48597/FYAS-B3KP +https://doi.org/10.48597/MXM6-FK7H +https://doi.org/10.48597/YQ5F-PB6Z +https://doi.org/10.48597/NZMC-BD7M +https://doi.org/10.48597/SHEE-PFXK +https://doi.org/10.48597/NQMY-SZRE +https://doi.org/10.48597/H8AX-KGGE +https://doi.org/10.48597/ZHN9-2NCW +https://doi.org/10.48597/KCQ7-2D2S +https://doi.org/10.48597/BFQF-6T53 +https://doi.org/10.48597/2G5N-T87U +https://doi.org/10.48597/9MK8-ETXR +https://doi.org/10.48597/6N7T-6VAD +https://doi.org/10.48597/VYF9-D8TG +https://doi.org/10.48597/HRVX-TKN8 +https://doi.org/10.48597/WJHE-X2VU +https://doi.org/10.48597/2SWX-KG4T +https://doi.org/10.48597/6KMD-9VUZ +https://doi.org/10.48597/JERG-Y4NH +https://doi.org/10.48597/P5HP-F7JT +https://doi.org/10.48597/AAR9-MTR3 +https://doi.org/10.48597/9JCN-KE7U +https://doi.org/10.48597/X8SP-6AGJ +https://doi.org/10.48597/DPBF-4T9G +https://doi.org/10.48597/TDP8-ABMT +https://doi.org/10.48597/8SKX-QSG3 +https://doi.org/10.48597/ZDNA-PAVQ +https://doi.org/10.48597/3U7A-P6BR +https://doi.org/10.48597/XKEF-59YX +https://doi.org/10.48597/6F8H-GAEP +https://doi.org/10.48597/KJZA-96S8 +https://doi.org/10.48597/894S-ZEFR +https://doi.org/10.48597/Y5H3-V2ZN +https://doi.org/10.48597/B8VF-3H8P +https://doi.org/10.48597/V5EC-7ZYH +https://doi.org/10.48597/DE4V-VWCW +https://doi.org/10.48597/QMUV-XZFZ +https://doi.org/10.48597/FZTV-EPKH +https://doi.org/10.48597/KMQ9-UQZG +https://doi.org/10.48597/TDF6-YSF9 +https://doi.org/10.48597/F4RN-5DCP +https://doi.org/10.48597/VHYU-RRTA +https://doi.org/10.48597/97HK-EUXK +https://doi.org/10.48597/DCSS-QCSQ +https://doi.org/10.48597/VGSQ-7X5Y +https://doi.org/10.48597/PJP9-DVN2 +https://doi.org/10.48597/AEPN-RA3F +https://doi.org/10.48597/9UBM-HCFK +https://doi.org/10.48597/TSCM-TUS2 +https://doi.org/10.48597/SXCN-DHVA +https://doi.org/10.48597/S9C4-5KXM +https://doi.org/10.48597/9R54-ZE2T +https://doi.org/10.48597/RK6J-F7DB +https://doi.org/10.48597/U75E-KUBU +https://doi.org/10.48597/XYMY-BPAM +https://doi.org/10.48597/H5XK-R54E +https://doi.org/10.48597/463S-4CF7 +https://doi.org/10.48597/98T6-MSG9 +https://doi.org/10.48597/CPAH-UAJ4 +https://doi.org/10.48597/FRPN-V7CQ +https://doi.org/10.48597/738N-5FRD +https://doi.org/10.48597/T3F2-5U6Y +https://doi.org/10.48597/XGC5-3FTY +https://doi.org/10.48597/KBW5-7UY5 +https://doi.org/10.48597/ZND9-4CVR +https://doi.org/10.48597/N9FQ-5HEQ +https://doi.org/10.48597/5HJC-TDEA +https://doi.org/10.48597/BNR5-NFVV +https://doi.org/10.48597/RHEK-VVDX +https://doi.org/10.48597/CMB7-XDWQ +https://doi.org/10.48597/YCFN-VN4X +https://doi.org/10.48597/BC6X-WKRC +https://doi.org/10.48597/49P4-67NU +https://doi.org/10.48597/EVJP-YVSK +https://doi.org/10.48597/QU49-6JDW +https://doi.org/10.48597/SEX7-ZDBN +https://doi.org/10.48597/VGMW-JDTS +https://doi.org/10.48597/YSHU-WYD5 +https://doi.org/10.48597/QH8M-X2VU +https://doi.org/10.48597/NND8-8BUA +https://doi.org/10.48597/UYRD-J4WZ +https://doi.org/10.48597/HJDJ-239A +https://doi.org/10.48597/K6DF-KWVK +https://doi.org/10.48597/46JY-YURV +https://doi.org/10.48597/BS62-RSZK +https://doi.org/10.48597/QZG9-THDB +https://doi.org/10.48597/TJ55-H9EA +https://doi.org/10.48597/B6D4-B7VV +https://doi.org/10.48597/QGBT-MFWD +https://doi.org/10.48597/NPX5-8FHQ +https://doi.org/10.48597/SESB-FSV2 +https://doi.org/10.48597/7SVX-CWTP +https://doi.org/10.48597/MCRD-G7MV +https://doi.org/10.48597/X39Y-3235 +https://doi.org/10.48597/EC3P-Q74K +https://doi.org/10.48597/FFNM-S3EA +https://doi.org/10.48597/TK6X-HXK2 +https://doi.org/10.48597/C9J3-PBKQ +https://doi.org/10.48597/MHUH-FKDR +https://doi.org/10.48597/PFKS-XC7R +https://doi.org/10.48597/CKHK-M6PR +https://doi.org/10.48597/G7ND-B436 +https://doi.org/10.48597/UACB-SX7E +https://doi.org/10.48597/7DD7-HK28 +https://doi.org/10.48597/2XXZ-CDA7 +https://doi.org/10.48597/NXRN-MBV7 +https://doi.org/10.48597/Y2AP-NC3S +https://doi.org/10.48597/RXZC-36RH +https://doi.org/10.48597/YTGT-8KTP +https://doi.org/10.48597/XRWR-S5EG +https://doi.org/10.48597/FW6W-WAQ5 +https://doi.org/10.48597/V4SY-SMJM +https://doi.org/10.48597/ARBX-RDMS +https://doi.org/10.48597/HWVT-49ZZ +https://doi.org/10.48597/BCTH-VAFJ +https://doi.org/10.48597/TH42-AQBW +https://doi.org/10.48597/XRY5-ESUQ +https://doi.org/10.48597/DRT4-YRSA +https://doi.org/10.48597/NN5H-8PDH +https://doi.org/10.48597/YEK9-ZWJF +https://doi.org/10.48597/WGG5-UXTA +https://doi.org/10.48597/3QEF-75Y5 +https://doi.org/10.48597/KWYC-68KC +https://doi.org/10.48597/PUKU-YKJ6 +https://doi.org/10.48597/HENT-Y46V +https://doi.org/10.48597/MYMX-VCVC +https://doi.org/10.48597/4TRK-XM2E +https://doi.org/10.48597/FVR8-YZWY +https://doi.org/10.48597/8YA7-CQ69 +https://doi.org/10.48597/F99V-P4ZP +https://doi.org/10.48597/XKAP-FB34 +https://doi.org/10.48597/DR74-EANN +https://doi.org/10.48597/5YMK-QN8V +https://doi.org/10.48597/W8A4-VEPK +https://doi.org/10.48597/HHEA-VJ7P +https://doi.org/10.48597/XGE9-EQB3 +https://doi.org/10.48597/3Q2J-Z3QD +https://doi.org/10.48597/28XB-VEBP +https://doi.org/10.48597/SAZC-JW9U +https://doi.org/10.48597/FY5V-MJBA +https://doi.org/10.48597/64DD-PXAD +https://doi.org/10.48597/RK4B-UY3Y +https://doi.org/10.48597/48WN-SBXW +https://doi.org/10.48597/M3TP-DDWQ +https://doi.org/10.48597/N9EF-NS6X +https://doi.org/10.48597/ATYX-KM8R +https://doi.org/10.48597/A32B-WNTR +https://doi.org/10.48597/XS95-WQ7R +https://doi.org/10.48597/W9Z7-W7FT +https://doi.org/10.48597/QMKU-9DE4 +https://doi.org/10.48597/MKY5-PDJQ +https://doi.org/10.48597/PKJ5-HGPM +https://doi.org/10.48597/NX94-KVQH +https://doi.org/10.48597/DGFR-YASR +https://doi.org/10.48597/WYNR-SZ46 +https://doi.org/10.48597/H8NA-AHMS +https://doi.org/10.48597/YZRR-WZCT +https://doi.org/10.48597/KQ6N-TQBP +https://doi.org/10.48597/2JU9-9J82 +https://doi.org/10.48597/3A7C-2VP5 +https://doi.org/10.48597/CYBJ-RVFN +https://doi.org/10.48597/4YSD-PD7K +https://doi.org/10.48597/95N7-Q72T +https://doi.org/10.48597/C4AZ-U2YF +https://doi.org/10.48597/VM24-T8BF +https://doi.org/10.48597/JKJ7-N8HV +https://doi.org/10.48597/PKMV-XBUZ +https://doi.org/10.48597/MH6F-39KQ +https://doi.org/10.48597/FUHJ-MSC2 +https://doi.org/10.48597/ARRA-PK49 +https://doi.org/10.48597/U3EY-K3SH +https://doi.org/10.48597/JZB2-GA97 +https://doi.org/10.48597/C9CM-9S7Q +https://doi.org/10.48597/PWXV-BC97 +https://doi.org/10.48597/7DXB-T568 +https://doi.org/10.48597/MN3C-6TZV +https://doi.org/10.48597/F37K-8HDC +https://doi.org/10.48597/U7XS-47BA +https://doi.org/10.48597/GJDM-JSUP +https://doi.org/10.48597/KEAD-7PHN +https://doi.org/10.48597/SNPX-EPEP +https://doi.org/10.48597/RB8U-88A9 +https://doi.org/10.48597/RZZR-N57T +https://doi.org/10.48597/BGHP-ZV3M +https://doi.org/10.48597/D64Y-SWSR +https://doi.org/10.48597/7DCE-GW2T +https://doi.org/10.48597/6H47-53ER +https://doi.org/10.48597/2RD8-GHWV +https://doi.org/10.48597/VWH5-4JMF +https://doi.org/10.48597/DER9-RS72 +https://doi.org/10.48597/5TBE-DDPY +https://doi.org/10.48597/6ASJ-76F7 +https://doi.org/10.48597/Z7JT-6AW4 +https://doi.org/10.48597/59FU-8DYU +https://doi.org/10.48597/KC4U-8HD2 +https://doi.org/10.48597/TQR8-3R7F +https://doi.org/10.48597/S8WT-R7J9 +https://doi.org/10.48597/BDJB-AATK +https://doi.org/10.48597/CWGN-JGBE +https://doi.org/10.48597/XB69-NYWW +https://doi.org/10.48597/JPWT-3M4H +https://doi.org/10.48597/QM9C-ANXN +https://doi.org/10.48597/8ER3-CVTT +https://doi.org/10.48597/VVZP-W9YS +https://doi.org/10.48597/D3ZF-AAAZ +https://doi.org/10.48597/UQW8-89W3 +https://doi.org/10.48597/7B9V-8DRS +https://doi.org/10.48597/3UU5-9SAA +https://doi.org/10.48597/TZ3B-8GW2 +https://doi.org/10.48597/BK4J-UPR2 +https://doi.org/10.48597/CZ2R-4958 +https://doi.org/10.48597/H7ER-GW5P +https://doi.org/10.48597/9784-P7T2 +https://doi.org/10.48597/YWGG-NW7S +https://doi.org/10.48597/T7A5-KY38 +https://doi.org/10.48597/KD7H-KNK7 +https://doi.org/10.48597/XXZU-YGT4 +https://doi.org/10.48597/HGBQ-HV5A +https://doi.org/10.48597/HZ39-DDAT +https://doi.org/10.48597/FGE3-U2JM +https://doi.org/10.48597/DW9J-F6UD +https://doi.org/10.48597/UR98-P5WK +https://doi.org/10.48597/7MRN-NTBQ +https://doi.org/10.48597/GCK8-CDKH +https://doi.org/10.48597/EBU4-U2HK +https://doi.org/10.48597/7VBH-ZA5A +https://doi.org/10.48597/F95D-G4FC +https://doi.org/10.48597/FASP-PJ46 +https://doi.org/10.48597/4XGP-XMD7 +https://doi.org/10.48597/CYJH-BBU4 +https://doi.org/10.48597/AKNQ-BG6C +https://doi.org/10.48597/KEVW-2PVY +https://doi.org/10.48597/QET6-YZA5 +https://doi.org/10.48597/XA6C-TZ8P +https://doi.org/10.48597/FUP3-5SEB +https://doi.org/10.48597/3846-2224 +https://doi.org/10.48597/PFR9-NP4X +https://doi.org/10.48597/FGAK-35JJ +https://doi.org/10.48597/GSYQ-GB54 +https://doi.org/10.48597/SYGQ-C7UP +https://doi.org/10.48597/XASJ-C5K6 +https://doi.org/10.48597/YVU6-JMEB +https://doi.org/10.48597/STM8-PM2N +https://doi.org/10.48597/PWX5-PWH8 +https://doi.org/10.48597/BUK4-6Q9V +https://doi.org/10.48597/EWJ2-RHC2 +https://doi.org/10.48597/3R5E-8H35 +https://doi.org/10.48597/AANF-C2EN +https://doi.org/10.48597/UHME-FGA3 +https://doi.org/10.48597/77WB-BUGK +https://doi.org/10.48597/44JU-BDRA +https://doi.org/10.48597/ER8V-B5RJ +https://doi.org/10.48597/CEM5-UCGM +https://doi.org/10.48597/A79N-HTK7 +https://doi.org/10.48597/J2MF-8PAS +https://doi.org/10.48597/AXGG-N795 +https://doi.org/10.48597/NK5Z-JF67 +https://doi.org/10.48597/FKCH-F2JT +https://doi.org/10.48597/FJ3V-NR6E +https://doi.org/10.48597/AGBC-Q3UG +https://doi.org/10.48597/YW8D-Y5DE +https://doi.org/10.48597/KVH9-UMWP +https://doi.org/10.48597/7VSQ-J8EY +https://doi.org/10.48597/HPYZ-XDRY +https://doi.org/10.48597/7PSX-AHV5 +https://doi.org/10.48597/7VAX-J34C +https://doi.org/10.48597/TJYC-ZQMU +https://doi.org/10.48597/XP9Y-S43V +https://doi.org/10.48597/NB6B-QZSU +https://doi.org/10.48597/QRB5-3Z8J +https://doi.org/10.48597/HN3K-PFB8 +https://doi.org/10.48597/AYG4-TXZ7 +https://doi.org/10.48597/5H79-FECB +https://doi.org/10.48597/Q7XD-YN3Y +https://doi.org/10.48597/XF2M-Q9NW +https://doi.org/10.48597/7EXC-HF86 +https://doi.org/10.48597/EUCK-XK3D +https://doi.org/10.48597/AGRC-EKKW +https://doi.org/10.48597/S682-7PVA +https://doi.org/10.48597/WV27-UFMJ +https://doi.org/10.48597/BQNJ-9AQ7 +https://doi.org/10.48597/EJGG-4TGM +https://doi.org/10.48597/8TYA-AT93 +https://doi.org/10.48597/CPH8-RB2X +https://doi.org/10.48597/Z2Q6-PTAA +https://doi.org/10.48597/MFDM-XVKX +https://doi.org/10.48597/XAYT-HHYU +https://doi.org/10.48597/X5DW-CMU3 +https://doi.org/10.48597/RR5S-YJTF +https://doi.org/10.48597/7Y5B-2TRZ +https://doi.org/10.48597/XTM4-PAXC +https://doi.org/10.48597/3E47-HGTD +https://doi.org/10.48597/W56J-Y6V2 +https://doi.org/10.48597/WYFM-YTHM +https://doi.org/10.48597/EFGG-SP26 +https://doi.org/10.48597/HTPX-3CMS +https://doi.org/10.48597/FAEY-R4W7 +https://doi.org/10.48597/46EB-8KAU +https://doi.org/10.48597/VM5A-ZQBS +https://doi.org/10.48597/P4K8-4FT4 +https://doi.org/10.48597/SASW-CKD8 +https://doi.org/10.48597/RX49-Q7BN +https://doi.org/10.48597/JK8X-MPN8 +https://doi.org/10.48597/RSRD-U3J6 +https://doi.org/10.48597/5VBE-DQP5 +https://doi.org/10.48597/JY72-JFW6 +https://doi.org/10.48597/W782-CASE +https://doi.org/10.48597/SCEG-UQPY +https://doi.org/10.48597/TYCY-3PF5 +https://doi.org/10.48597/JVKT-3Y4U +https://doi.org/10.48597/FVM6-BZ58 +https://doi.org/10.48597/V4HE-UJTU +https://doi.org/10.48597/T5MR-PWQR +https://doi.org/10.48597/HNPZ-A9F9 +https://doi.org/10.48597/N4XB-SVTN +https://doi.org/10.48597/GJTW-RPEF +https://doi.org/10.48597/S9QY-WFQR +https://doi.org/10.48597/27XJ-74EQ +https://doi.org/10.48597/SN9K-CT47 +https://doi.org/10.48597/FJTN-GASK +https://doi.org/10.48597/53SV-KJ7R +https://doi.org/10.48597/PSSJ-XTV9 +https://doi.org/10.48597/QH8P-UMVP +https://doi.org/10.48597/5E9Y-RZ4Z +https://doi.org/10.48597/RTB7-98F3 +https://doi.org/10.48597/YQ84-HPRH +https://doi.org/10.48597/QXF8-6U64 +https://doi.org/10.48597/5PNB-FPMG +https://doi.org/10.48597/TA4X-JZJA +https://doi.org/10.48597/3B5F-KYAW +https://doi.org/10.48597/BJ4D-Q92C +https://doi.org/10.48597/8NWN-PUHB +https://doi.org/10.48597/XUDU-AADH +https://doi.org/10.48597/QFHD-E7MY +https://doi.org/10.48597/R2QM-E928 +https://doi.org/10.48597/HQH8-8R96 +https://doi.org/10.48597/GFRP-KP83 +https://doi.org/10.48597/K6G4-84UT +https://doi.org/10.48597/Z2N6-8CMR +https://doi.org/10.48597/3U4Q-3K9G +https://doi.org/10.48597/QW2N-N8T5 +https://doi.org/10.48597/VQBR-YJNE +https://doi.org/10.48597/GCFC-7SCJ +https://doi.org/10.48597/W74H-WZG5 +https://doi.org/10.48597/JKBT-W2J7 +https://doi.org/10.48597/H6JR-4Z3J +https://doi.org/10.48597/JHN6-G4XJ +https://doi.org/10.48597/7S9Q-GQ9D +https://doi.org/10.48597/KH4Z-7JWK +https://doi.org/10.48597/69CF-JNG8 +https://doi.org/10.48597/J4EE-9ED2 +https://doi.org/10.48597/ZXZQ-KXXV +https://doi.org/10.48597/42SR-D7D6 +https://doi.org/10.48597/U87E-9C2X +https://doi.org/10.48597/3FXP-EPEV +https://doi.org/10.48597/X5BE-NCX6 +https://doi.org/10.48597/XU6Y-JSPP +https://doi.org/10.48597/BJZ2-3537 +https://doi.org/10.48597/WFQ6-F3AZ +https://doi.org/10.48597/DHTA-NU9N +https://doi.org/10.48597/CD44-SVMH +https://doi.org/10.48597/D552-C9SH +https://doi.org/10.48597/YJM9-JT9U +https://doi.org/10.48597/HHQ4-47BP +https://doi.org/10.48597/C2YR-YFEZ +https://doi.org/10.48597/6HUU-YTEG +https://doi.org/10.48597/SHJV-HUX3 +https://doi.org/10.48597/6AN8-XM3T +https://doi.org/10.48597/QW8J-EJ43 +https://doi.org/10.48597/UM77-2RHU +https://doi.org/10.48597/7YTJ-7SH7 +https://doi.org/10.48597/D2CA-V2R2 +https://doi.org/10.48597/9K6S-D6A9 +https://doi.org/10.48597/YESR-G9JN +https://doi.org/10.48597/KNMK-ESW5 +https://doi.org/10.48597/EAQ2-69M9 +https://doi.org/10.48597/V79A-7UNJ +https://doi.org/10.48597/CP5W-UZH7 +https://doi.org/10.48597/CQYX-BYDG +https://doi.org/10.48597/TZXR-EBSR +https://doi.org/10.48597/XAAD-PQUH +https://doi.org/10.48597/2YPB-YP9F +https://doi.org/10.48597/YD2J-SCX7 +https://doi.org/10.48597/2SE5-BCSX +https://doi.org/10.48597/NZFM-6HEP +https://doi.org/10.48597/WJAQ-PGVK +https://doi.org/10.48597/49QA-W8H6 +https://doi.org/10.48597/Y2C2-FXV9 +https://doi.org/10.48597/9AYP-D33D +https://doi.org/10.48597/68NU-J9B9 +https://doi.org/10.48597/P4SC-49KV +https://doi.org/10.48597/CQ9F-A9G9 +https://doi.org/10.48597/NB2Y-32FS +https://doi.org/10.48597/AKSH-SXEY +https://doi.org/10.48597/UU2X-869S +https://doi.org/10.48597/W3FF-6FKM +https://doi.org/10.48597/V3AS-HJ8P +https://doi.org/10.48597/AQPP-87YH +https://doi.org/10.48597/8Z5M-DFG2 +https://doi.org/10.48597/2HN9-QWRS +https://doi.org/10.48597/NKJ6-YBXW +https://doi.org/10.48597/Z3XM-DJXJ +https://doi.org/10.48597/HAUT-SWE6 +https://doi.org/10.48597/37AS-D8RP +https://doi.org/10.48597/8UC9-Q3ZD +https://doi.org/10.48597/55CC-BQRR +https://doi.org/10.48597/MYAF-5VWE +https://doi.org/10.48597/EPYS-SRR4 +https://doi.org/10.48597/KW2R-EHAE +https://doi.org/10.48597/3DBV-XMEY +https://doi.org/10.48597/FWVZ-5DNK +https://doi.org/10.48597/6CXH-GS6A +https://doi.org/10.48597/33TG-Y26C +https://doi.org/10.48597/4BJ9-MTDE +https://doi.org/10.48597/V8KE-RAF3 +https://doi.org/10.48597/KWQH-ZF2J +https://doi.org/10.48597/DEVF-MCGN +https://doi.org/10.48597/928P-CD8Y +https://doi.org/10.48597/STD6-DQ5B +https://doi.org/10.48597/2ZBB-YAA3 +https://doi.org/10.48597/GS4W-58PQ +https://doi.org/10.48597/NVF2-EE8B +https://doi.org/10.48597/3TZ3-H8VC +https://doi.org/10.48597/J2PQ-YRDN +https://doi.org/10.48597/KPC2-G6E3 +https://doi.org/10.48597/JT3F-UQYX +https://doi.org/10.48597/HN55-PB29 +https://doi.org/10.48597/HXKG-UHS5 +https://doi.org/10.48597/YP45-RDYY +https://doi.org/10.48597/VPR2-42WF +https://doi.org/10.48597/G3PW-9D9C +https://doi.org/10.48597/M9SW-RDFU +https://doi.org/10.48597/NWDH-9C8F +https://doi.org/10.48597/PTJQ-ZUHE +https://doi.org/10.48597/N3CX-DGN4 +https://doi.org/10.48597/ACXD-BK8C +https://doi.org/10.48597/S5EN-J8DR +https://doi.org/10.48597/VXK6-EQWT +https://doi.org/10.48597/KRFK-FWUM +https://doi.org/10.48597/DADQ-96AE +https://doi.org/10.48597/84DZ-RKMM +https://doi.org/10.48597/PNG9-VN2B +https://doi.org/10.48597/8DRX-G2HN +https://doi.org/10.48597/T67H-3ZE5 +https://doi.org/10.48597/V82Q-4VCD +https://doi.org/10.48597/XF45-SHNC +https://doi.org/10.48597/CWY2-FXAA +https://doi.org/10.48597/K8K7-WKG6 +https://doi.org/10.48597/EAAT-VHKM +https://doi.org/10.48597/2N7Q-NGNN +https://doi.org/10.48597/TK3V-NAES +https://doi.org/10.48597/RGYH-3RG4 +https://doi.org/10.48597/B6NG-HP68 +https://doi.org/10.48597/9AQM-RQNT +https://doi.org/10.48597/3PYW-2685 +https://doi.org/10.48597/5VC4-BADK +https://doi.org/10.48597/MX72-7Z2J +https://doi.org/10.48597/D5C6-UHDZ +https://doi.org/10.48597/FY68-Q493 +https://doi.org/10.48597/UZRG-NCS5 +https://doi.org/10.48597/55ZT-B4V2 +https://doi.org/10.48597/B9C7-SRXK +https://doi.org/10.48597/C99W-GVE8 +https://doi.org/10.48597/V2H7-SGUR +https://doi.org/10.48597/DJYD-CQS2 +https://doi.org/10.48597/MJ9N-EFXS +https://doi.org/10.48597/M5MA-49ED +https://doi.org/10.48597/5MDD-SHP5 +https://doi.org/10.48597/P9RS-ZE4G +https://doi.org/10.48597/KQBR-T5JM +https://doi.org/10.48597/YHWD-EX4H +https://doi.org/10.48597/E42G-EN7C +https://doi.org/10.48597/UQV6-4YMJ +https://doi.org/10.48597/TZA4-HPFZ +https://doi.org/10.48597/ZCS2-56KR +https://doi.org/10.48597/PY6X-XK83 +https://doi.org/10.48597/TKWH-PFAX +https://doi.org/10.48597/9XJM-4GN9 +https://doi.org/10.48597/KEWE-VBP5 +https://doi.org/10.48597/SHW7-YK6A +https://doi.org/10.48597/8K7D-773S +https://doi.org/10.48597/7B6V-WGTQ +https://doi.org/10.48597/9NHK-8A6B +https://doi.org/10.48597/V38U-6J6D +https://doi.org/10.48597/3N49-4RQH +https://doi.org/10.48597/6C7S-7CE2 +https://doi.org/10.48597/UH3K-VKZE +https://doi.org/10.48597/QWT9-35XZ +https://doi.org/10.48597/Z3SX-UG2Q +https://doi.org/10.48597/X2B4-XUVK +https://doi.org/10.48597/CUGV-XRG8 +https://doi.org/10.48597/AZZY-ASYD +https://doi.org/10.48597/FYHU-VPUR +https://doi.org/10.48597/BHVE-6HYA +https://doi.org/10.48597/AGDP-ZSKP +https://doi.org/10.48597/GGD6-QQEP +https://doi.org/10.48597/2Q88-E8QG +https://doi.org/10.48597/P9Y8-DBJM +https://doi.org/10.48597/XH83-UH52 +https://doi.org/10.48597/HRBX-CTW6 +https://doi.org/10.48597/76HC-YTV5 +https://doi.org/10.48597/WPHM-FXBG +https://doi.org/10.48597/2MF2-3X96 +https://doi.org/10.48597/DZKP-B9D4 +https://doi.org/10.48597/HK39-XB2N +https://doi.org/10.48597/XGT6-2JUT +https://doi.org/10.48597/E4QP-DTA6 +https://doi.org/10.48597/ZPDR-6N2D +https://doi.org/10.48597/6NJG-3GMU +https://doi.org/10.48597/JA9D-4YHY +https://doi.org/10.48597/U9GH-RN42 +https://doi.org/10.48597/WP4M-9W9Q +https://doi.org/10.48597/KDVN-C8U2 +https://doi.org/10.48597/YFAT-QVDC +https://doi.org/10.48597/QKS5-F498 +https://doi.org/10.48597/EE8D-EFP5 +https://doi.org/10.48597/5N8Y-RAXC +https://doi.org/10.48597/ZTV8-5KDU +https://doi.org/10.48597/J4DX-AMRH +https://doi.org/10.48597/PBCT-3X74 +https://doi.org/10.48597/6H5M-2PDR +https://doi.org/10.48597/DGWC-4V37 +https://doi.org/10.48597/XDMC-WJPM +https://doi.org/10.48597/CM2K-C359 +https://doi.org/10.48597/2ZKE-6AEX +https://doi.org/10.48597/BSDJ-ZDBS +https://doi.org/10.48597/7A6U-QREQ +https://doi.org/10.48597/UXQE-NRY3 +https://doi.org/10.48597/YMA6-FP7V +https://doi.org/10.48597/HJT7-CQBY +https://doi.org/10.48597/6N4Z-H8JJ +https://doi.org/10.48597/BB2G-V9Z2 +https://doi.org/10.48597/4V7T-MYUA +https://doi.org/10.48597/E85N-3HJX +https://doi.org/10.48597/B2R6-ZFAW +https://doi.org/10.48597/TCU2-FMRF +https://doi.org/10.48597/GA2D-7KDG +https://doi.org/10.48597/5ZEK-ZRY4 +https://doi.org/10.48597/AFDJ-64H9 +https://doi.org/10.48597/DSFH-A9JX +https://doi.org/10.48597/PEFU-EVG2 +https://doi.org/10.48597/HYJH-2VJB +https://doi.org/10.48597/WX9T-HNUA +https://doi.org/10.48597/8CV5-XQV4 +https://doi.org/10.48597/FUE7-2728 +https://doi.org/10.48597/WCRC-R4Q5 +https://doi.org/10.48597/922P-GAHW +https://doi.org/10.48597/U8N8-AGRX +https://doi.org/10.48597/3TQ9-XC6R +https://doi.org/10.48597/TEXN-GS3E +https://doi.org/10.48597/9F7X-2TG6 +https://doi.org/10.48597/KX4N-M475 +https://doi.org/10.48597/CEHH-SKVP +https://doi.org/10.48597/D34Y-9TYU +https://doi.org/10.48597/X6T9-Z7BH +https://doi.org/10.48597/A4K8-TR8Q +https://doi.org/10.48597/A54U-XTAJ +https://doi.org/10.48597/VP5N-97P4 +https://doi.org/10.48597/VX6H-KUDG +https://doi.org/10.48597/JSEG-FW3K +https://doi.org/10.48597/6TUH-FCKP +https://doi.org/10.48597/RN55-SQQE +https://doi.org/10.48597/VA6D-KUXQ +https://doi.org/10.48597/EK6E-YXDC +https://doi.org/10.48597/4AK3-AFEE +https://doi.org/10.48597/A9XK-NVWH +https://doi.org/10.48597/PSA4-XXVT +https://doi.org/10.48597/V7JU-ANV8 +https://doi.org/10.48597/G7FR-EXXH +https://doi.org/10.48597/7TUH-HSZF +https://doi.org/10.48597/NDDX-7TKT +https://doi.org/10.48597/CVZM-VA6B +https://doi.org/10.48597/D33M-P63B +https://doi.org/10.48597/RFY3-DPAK +https://doi.org/10.48597/X79C-AJZD +https://doi.org/10.48597/ARJB-NPJV +https://doi.org/10.48597/TKPY-6WF3 +https://doi.org/10.48597/2SJU-SJFW +https://doi.org/10.48597/EZK6-A29R +https://doi.org/10.48597/AZDV-XM7V +https://doi.org/10.48597/XM9J-Q5R5 +https://doi.org/10.48597/FBBP-FHXB +https://doi.org/10.48597/FBVU-UBNV +https://doi.org/10.48597/XRF6-469J +https://doi.org/10.48597/YD5K-D7F2 +https://doi.org/10.48597/CYPV-MXEZ +https://doi.org/10.48597/5NW2-6HZD +https://doi.org/10.48597/W3FR-Y7NK +https://doi.org/10.48597/NVHT-XRGF +https://doi.org/10.48597/XBSH-ZW8S +https://doi.org/10.48597/4MPJ-Z5JT +https://doi.org/10.48597/EGY8-GTST +https://doi.org/10.48597/NMXS-G2YW +https://doi.org/10.48597/ZUPW-XHNN +https://doi.org/10.48597/JZTQ-KBYM +https://doi.org/10.48597/QJ9B-ECK9 +https://doi.org/10.48597/SJE8-KY7T +https://doi.org/10.48597/F95C-9W44 +https://doi.org/10.48597/RH3Q-37G8 +https://doi.org/10.48597/QYPQ-B39T +https://doi.org/10.48597/R5UY-FFZA +https://doi.org/10.48597/2ZG4-ZYHU +https://doi.org/10.48597/TBR9-JDZM +https://doi.org/10.48597/PCJN-WTGN +https://doi.org/10.48597/8PB3-H5KV +https://doi.org/10.48597/4WTC-B496 +https://doi.org/10.48597/WV3R-JC56 +https://doi.org/10.48597/MA82-JFS4 +https://doi.org/10.48597/CSVW-PACS +https://doi.org/10.48597/H2PZ-SG59 +https://doi.org/10.48597/WX92-PQM4 +https://doi.org/10.48597/43FA-5BJV +https://doi.org/10.48597/9JQC-94QJ +https://doi.org/10.48597/YJHC-VFEF +https://doi.org/10.48597/W3HC-BNG2 +https://doi.org/10.48597/84JN-CNSP +https://doi.org/10.48597/PKTJ-62WN +https://doi.org/10.48597/3SJN-R3WB +https://doi.org/10.48597/2BQZ-68Y5 +https://doi.org/10.48597/TA5J-6T6T +https://doi.org/10.48597/4HFH-3ZDQ +https://doi.org/10.48597/2QUH-VX72 +https://doi.org/10.48597/ZZ9Y-R37W +https://doi.org/10.48597/H5P2-8493 +https://doi.org/10.48597/ZBRV-6ZEH +https://doi.org/10.48597/6TDZ-CUAR +https://doi.org/10.48597/4FZF-MQ5A +https://doi.org/10.48597/2EMV-B4PE +https://doi.org/10.48597/G6Q2-HXF6 +https://doi.org/10.48597/PD6T-7J3X +https://doi.org/10.48597/FQTT-HG2E +https://doi.org/10.48597/4KXP-7599 +https://doi.org/10.48597/EFHA-NU2Y +https://doi.org/10.48597/G6TC-QU8W +https://doi.org/10.48597/TCEC-5DNW +https://doi.org/10.48597/RC3S-ZSUY +https://doi.org/10.48597/PQH2-UKSD +https://doi.org/10.48597/AS7H-2CUW +https://doi.org/10.48597/4Z3F-5WA9 +https://doi.org/10.48597/GWGS-HGAV +https://doi.org/10.48597/A56H-XVH3 +https://doi.org/10.48597/9W23-EHXQ +https://doi.org/10.48597/Y3XH-VGCX +https://doi.org/10.48597/5WD4-2ATU +https://doi.org/10.48597/G32K-ZNYY +https://doi.org/10.48597/URVC-GG6Q +https://doi.org/10.48597/XD2N-DTGY +https://doi.org/10.48597/FZJV-SZUU +https://doi.org/10.48597/MK6T-88EV +https://doi.org/10.48597/G2CK-6BT8 +https://doi.org/10.48597/4BZ7-D7W5 +https://doi.org/10.48597/CNB8-CW2Z +https://doi.org/10.48597/6W4F-CJJG +https://doi.org/10.48597/GS78-FUCM +https://doi.org/10.48597/4VF9-C83N +https://doi.org/10.48597/9TU5-E9MB +https://doi.org/10.48597/NYEZ-MBW3 +https://doi.org/10.48597/QNVE-YT2T +https://doi.org/10.48597/CH2E-6XE7 +https://doi.org/10.48597/M88K-GEE2 +https://doi.org/10.48597/ZZRJ-RPTK +https://doi.org/10.48597/CMQ8-SHJ3 +https://doi.org/10.48597/59R8-UBRG +https://doi.org/10.48597/P98W-7MYZ +https://doi.org/10.48597/MFJF-346Z +https://doi.org/10.48597/78G3-PYVM +https://doi.org/10.48597/Y5WM-PRTE +https://doi.org/10.48597/AEHT-ANFS +https://doi.org/10.48597/C43H-AN8B +https://doi.org/10.48597/7TAT-J6NM +https://doi.org/10.48597/FXQJ-XKVS +https://doi.org/10.48597/TMXB-U5XB +https://doi.org/10.48597/XHFF-AUSG +https://doi.org/10.48597/AZDJ-4XB6 +https://doi.org/10.48597/8PAP-QQST +https://doi.org/10.48597/DANC-N8ZW +https://doi.org/10.48597/NWMP-YWAK +https://doi.org/10.48597/XRY9-C7S8 +https://doi.org/10.48597/9SGP-WYR9 +https://doi.org/10.48597/K9G9-DHCH +https://doi.org/10.48597/QT6W-AZEB +https://doi.org/10.48597/NR3D-PWEH +https://doi.org/10.48597/3EFT-SAFW +https://doi.org/10.48597/2RWD-A6UJ +https://doi.org/10.48597/44DA-CKDR +https://doi.org/10.48597/A3QD-8A35 +https://doi.org/10.48597/8MPA-TGP6 +https://doi.org/10.48597/MBTU-TYEN +https://doi.org/10.48597/5WAV-2MEN +https://doi.org/10.48597/V378-HY32 +https://doi.org/10.48597/SM6H-82W6 +https://doi.org/10.48597/V6T4-GPM7 +https://doi.org/10.48597/FEZG-4E37 +https://doi.org/10.48597/RSKR-9TMS +https://doi.org/10.48597/JVCR-PQBG +https://doi.org/10.48597/6BDY-Q342 +https://doi.org/10.48597/YDZY-YVW5 +https://doi.org/10.48597/VSGH-YVJY +https://doi.org/10.48597/ZXYE-XY6N +https://doi.org/10.48597/GCB7-DMQZ +https://doi.org/10.48597/R29V-ARD8 +https://doi.org/10.48597/5AD7-S34N +https://doi.org/10.48597/U9JY-PTRH +https://doi.org/10.48597/EZM5-UUDS +https://doi.org/10.48597/VFJD-AX5S +https://doi.org/10.48597/SM96-QCMC +https://doi.org/10.48597/BRY4-WBX8 +https://doi.org/10.48597/GGYG-J2TE +https://doi.org/10.48597/D9B9-N3E5 +https://doi.org/10.48597/BRBJ-GQWN +https://doi.org/10.48597/ETDT-H9SB +https://doi.org/10.48597/2KNC-TPCA +https://doi.org/10.48597/4RWH-H3BE +https://doi.org/10.48597/UKFD-NH88 +https://doi.org/10.48597/EAUS-9QWC +https://doi.org/10.48597/4U5P-SN36 +https://doi.org/10.48597/MFAS-3SM7 +https://doi.org/10.48597/8GF8-3JQU +https://doi.org/10.48597/WK6X-VMWU +https://doi.org/10.48597/CY4X-U76C +https://doi.org/10.48597/VV6H-2U9M +https://doi.org/10.48597/S9QC-C22E +https://doi.org/10.48597/PUS9-BWS6 +https://doi.org/10.48597/QTMR-AZ62 +https://doi.org/10.48597/59DW-BHJ2 +https://doi.org/10.48597/WJ6M-6K46 +https://doi.org/10.48597/DDAV-GM8M +https://doi.org/10.48597/M4UT-6R49 +https://doi.org/10.48597/HM2T-6KQ2 +https://doi.org/10.48597/87AY-VFWR +https://doi.org/10.48597/4H44-FVXN +https://doi.org/10.48597/27JW-7H9G +https://doi.org/10.48597/UNZN-MP76 +https://doi.org/10.48597/WY3P-TCN2 +https://doi.org/10.48597/TMZK-TPJD +https://doi.org/10.48597/6YG3-VZGQ +https://doi.org/10.48597/A243-ZY5B +https://doi.org/10.48597/6ART-NWGN +https://doi.org/10.48597/25WT-KEFN +https://doi.org/10.48597/52NT-4DW3 +https://doi.org/10.48597/ERM6-72RD +https://doi.org/10.48597/25BA-JQ96 +https://doi.org/10.48597/6M9Q-56E2 +https://doi.org/10.48597/ENVP-5Z22 +https://doi.org/10.48597/CJ3D-4Q79 +https://doi.org/10.48597/F7PC-EPE9 +https://doi.org/10.48597/UQHD-ZUJB +https://doi.org/10.48597/4Y6U-RBPP +https://doi.org/10.48597/5VK7-XRK9 +https://doi.org/10.48597/2M84-W3RU +https://doi.org/10.48597/QW8G-V7W3 +https://doi.org/10.48597/DFKT-TXA9 +https://doi.org/10.48597/68RK-8GZM +https://doi.org/10.48597/G4AX-VYW6 +https://doi.org/10.48597/EAJJ-ERYQ +https://doi.org/10.48597/KT7T-NZ3X +https://doi.org/10.48597/TJ6D-WT5U +https://doi.org/10.48597/8SX9-PYT9 +https://doi.org/10.48597/NSKN-7FVH +https://doi.org/10.48597/CW48-2JAE +https://doi.org/10.48597/QHYA-TKMV +https://doi.org/10.48597/S7BV-X2KH +https://doi.org/10.48597/Q3CS-UEZA +https://doi.org/10.48597/B85A-F4V8 +https://doi.org/10.48597/7VYY-5GSN +https://doi.org/10.48597/RUJ2-QRCT +https://doi.org/10.48597/WF7P-VPEE +https://doi.org/10.48597/EN94-A57D +https://doi.org/10.48597/V8XS-7FQP +https://doi.org/10.48597/84QC-WU3D +https://doi.org/10.48597/VFE3-2KMU +https://doi.org/10.48597/62HZ-A3GC +https://doi.org/10.48597/NFMB-4VYV +https://doi.org/10.48597/Z43Y-FXSW +https://doi.org/10.48597/Z49B-2AST +https://doi.org/10.48597/AHZC-WPQ6 +https://doi.org/10.48597/C3RW-V7CE +https://doi.org/10.48597/AE3J-YKN8 +https://doi.org/10.48597/AXPH-NSPK +https://doi.org/10.48597/8XVK-5GTN +https://doi.org/10.48597/4CCS-EHFV +https://doi.org/10.48597/S729-5CMK +https://doi.org/10.48597/HT75-TUQ6 +https://doi.org/10.48597/RKUX-TEKD +https://doi.org/10.48597/VCMA-32HQ +https://doi.org/10.48597/JJQE-FRN4 +https://doi.org/10.48597/92X2-CVNM +https://doi.org/10.48597/W2Z8-SHAW +https://doi.org/10.48597/M5VU-HNFW +https://doi.org/10.48597/RJGN-ZQTC +https://doi.org/10.48597/ZSBS-EUSA +https://doi.org/10.48597/WBQH-6XUJ +https://doi.org/10.48597/89MS-37Y6 +https://doi.org/10.48597/XGEN-97CJ +https://doi.org/10.48597/TZNG-Z4TM +https://doi.org/10.48597/QQMX-HEBY +https://doi.org/10.48597/7V4W-3PNY +https://doi.org/10.48597/CPSH-5AGT +https://doi.org/10.48597/JJRT-H676 +https://doi.org/10.48597/GXKA-X4CX +https://doi.org/10.48597/XZ9K-R99B +https://doi.org/10.48597/B22G-A7JX +https://doi.org/10.48597/3WQ3-P8G5 +https://doi.org/10.48597/2WVC-K7HY +https://doi.org/10.48597/TAVN-Y4W9 +https://doi.org/10.48597/7QVN-T8CK +https://doi.org/10.48597/8FEM-GHXE +https://doi.org/10.48597/QN52-N5BU +https://doi.org/10.48597/AA9P-3QQY +https://doi.org/10.48597/MMHK-25UK +https://doi.org/10.48597/D8SF-955K +https://doi.org/10.48597/DM28-QB29 +https://doi.org/10.48597/36SS-3CWA +https://doi.org/10.48597/PUJ4-HDV7 +https://doi.org/10.48597/RQXC-FQRT +https://doi.org/10.48597/PY55-7FQY +https://doi.org/10.48597/4MFZ-GUSS +https://doi.org/10.48597/CJSY-F5Y4 +https://doi.org/10.48597/SVF8-45DZ +https://doi.org/10.48597/4BT3-3HBM +https://doi.org/10.48597/EAJR-34WX +https://doi.org/10.48597/GX9Z-YZRV +https://doi.org/10.48597/TAZH-AC6C +https://doi.org/10.48597/HWEK-HVNS +https://doi.org/10.48597/2YR8-5ZDG +https://doi.org/10.48597/R7YS-XY35 +https://doi.org/10.48597/2AQC-J4TX +https://doi.org/10.48597/VS5C-TF9E +https://doi.org/10.48597/QUXW-GUM4 +https://doi.org/10.48597/HM57-MQGW +https://doi.org/10.48597/BUR6-HMST +https://doi.org/10.48597/PAE6-Y8KA +https://doi.org/10.48597/6C2W-VQK6 +https://doi.org/10.48597/CMER-6NSB +https://doi.org/10.48597/QBHA-5MQC +https://doi.org/10.48597/KAPH-X6UJ +https://doi.org/10.48597/R2BA-8MNC +https://doi.org/10.48597/SBN8-HEM3 +https://doi.org/10.48597/7ADW-WWN2 +https://doi.org/10.48597/Y7FG-DN2E +https://doi.org/10.48597/A98A-2XJ6 +https://doi.org/10.48597/H4VB-MSHQ +https://doi.org/10.48597/P3FG-PKA4 +https://doi.org/10.48597/PKVN-SHKR +https://doi.org/10.48597/88TG-TQPD +https://doi.org/10.48597/2PDE-5FKD +https://doi.org/10.48597/3EEV-SZF7 +https://doi.org/10.48597/X4UM-KSXC +https://doi.org/10.48597/QCU8-PEHC +https://doi.org/10.48597/J8SY-5C9Y +https://doi.org/10.48597/WDBR-SVH5 +https://doi.org/10.48597/K7HM-8NZA +https://doi.org/10.48597/DF94-JXX7 +https://doi.org/10.48597/669S-F4BW +https://doi.org/10.48597/GS4N-UVDA +https://doi.org/10.48597/YFZV-KKFB +https://doi.org/10.48597/JSW5-5C65 +https://doi.org/10.48597/E6RS-QJYW +https://doi.org/10.48597/GYC4-R4C2 +https://doi.org/10.48597/8C5G-EHT9 +https://doi.org/10.48597/YDBP-SNUN +https://doi.org/10.48597/28U5-5YM7 +https://doi.org/10.48597/X8MR-EED5 +https://doi.org/10.48597/X9N9-4TT3 +https://doi.org/10.48597/HYUX-J7ME +https://doi.org/10.48597/AF9D-39R9 +https://doi.org/10.48597/9DQS-YCWZ +https://doi.org/10.48597/C4YF-4GW2 +https://doi.org/10.48597/QGBU-VZEW +https://doi.org/10.48597/UVR3-EFD6 +https://doi.org/10.48597/77XY-4DWD +https://doi.org/10.48597/VQ8P-EJFD +https://doi.org/10.48597/8YSC-6VW9 +https://doi.org/10.48597/69TR-N2GT +https://doi.org/10.48597/HFN7-8APG +https://doi.org/10.48597/ZCCA-MK7F +https://doi.org/10.48597/ABP7-J94J +https://doi.org/10.48597/7WE2-GEWP +https://doi.org/10.48597/ZH99-8M5D +https://doi.org/10.48597/WZKZ-4W85 +https://doi.org/10.48597/HC28-92NW +https://doi.org/10.48597/Q88D-NZXY +https://doi.org/10.48597/2K4F-RAJZ +https://doi.org/10.48597/TFZZ-2NRG +https://doi.org/10.48597/H7CQ-U5YD +https://doi.org/10.48597/EQA7-Z2EJ +https://doi.org/10.48597/FA29-7W8V +https://doi.org/10.48597/YYBP-SG46 +https://doi.org/10.48597/3HPT-PSS4 +https://doi.org/10.48597/4WTF-7KTB +https://doi.org/10.48597/BMPZ-H65K +https://doi.org/10.48597/GAME-K34Q +https://doi.org/10.48597/DT6W-X27H +https://doi.org/10.48597/SQKJ-Z9N6 +https://doi.org/10.48597/KKYF-6QYH +https://doi.org/10.48597/RQXF-7ZRQ +https://doi.org/10.48597/KACN-HDPQ +https://doi.org/10.48597/HPJV-SH6T +https://doi.org/10.48597/CQRW-S8HH +https://doi.org/10.48597/8ZFE-9XSD +https://doi.org/10.48597/9VTU-H947 +https://doi.org/10.48597/VV6S-9GMW +https://doi.org/10.48597/KQUG-QM6B +https://doi.org/10.48597/525H-JV6U +https://doi.org/10.48597/DCM4-9FQA +https://doi.org/10.48597/ZME9-S3BX +https://doi.org/10.48597/HAM8-DHMU +https://doi.org/10.48597/722F-A5QP +https://doi.org/10.48597/E4MF-6G63 +https://doi.org/10.48597/E5J9-U8X7 +https://doi.org/10.48597/28CW-STAV +https://doi.org/10.48597/6E6P-N6P2 +https://doi.org/10.48597/3E7Z-5SM7 +https://doi.org/10.48597/U64Q-FXBR +https://doi.org/10.48597/6SZU-KW74 +https://doi.org/10.48597/HFSS-PZ5D +https://doi.org/10.48597/P29J-T8RH +https://doi.org/10.48597/5WTV-RNCW +https://doi.org/10.48597/RDUR-TQWE +https://doi.org/10.48597/M5BF-3H74 +https://doi.org/10.48597/FNY8-C96X +https://doi.org/10.48597/6ASM-HMAW +https://doi.org/10.48597/F69W-SKFG +https://doi.org/10.48597/TXWX-GPGX +https://doi.org/10.48597/4FHJ-7NZC +https://doi.org/10.48597/CZBG-V9AP +https://doi.org/10.48597/KGS7-47F5 +https://doi.org/10.48597/7Z7K-FVC6 +https://doi.org/10.48597/N4YB-T6B4 +https://doi.org/10.48597/N6C6-PJUR +https://doi.org/10.48597/6T67-Q9BR +https://doi.org/10.48597/UF6K-NMMT +https://doi.org/10.48597/YHCB-S7YS +https://doi.org/10.48597/3S82-4QAU +https://doi.org/10.48597/RRK6-RQVD +https://doi.org/10.48597/ZQKV-EH2X +https://doi.org/10.48597/A4Y9-8YBD +https://doi.org/10.48597/VTBK-4YBA +https://doi.org/10.48597/9XYY-8TPV +https://doi.org/10.48597/4JBJ-CQ2U +https://doi.org/10.48597/U9QD-7RSA +https://doi.org/10.48597/YR78-P867 +https://doi.org/10.48597/V6YT-JFFQ +https://doi.org/10.48597/C5AP-XTEF +https://doi.org/10.48597/JMP3-2BNH +https://doi.org/10.48597/QHMA-GKCX +https://doi.org/10.48597/UAKP-6SVA +https://doi.org/10.48597/UQE2-H533 +https://doi.org/10.48597/36SC-3NDD +https://doi.org/10.48597/NC64-GM47 +https://doi.org/10.48597/MUC4-JNMG +https://doi.org/10.48597/6NMD-K9D8 +https://doi.org/10.48597/EPQZ-MESE +https://doi.org/10.48597/9VXB-CDKG +https://doi.org/10.48597/XTMR-VYWG +https://doi.org/10.48597/38BS-KPM8 +https://doi.org/10.48597/PJ73-HYA2 +https://doi.org/10.48597/K699-PMGQ +https://doi.org/10.48597/QGSE-EYMR +https://doi.org/10.48597/XB24-XXTD +https://doi.org/10.48597/FEYS-NM58 +https://doi.org/10.48597/FJSK-7RCZ +https://doi.org/10.48597/YUK6-DR4V +https://doi.org/10.48597/D5JE-FS76 +https://doi.org/10.48597/3SHR-FMQR +https://doi.org/10.48597/C9RQ-6E78 +https://doi.org/10.48597/ZKGZ-XKVD +https://doi.org/10.48597/7GNH-5NJ3 +https://doi.org/10.48597/JZNQ-YSZ8 +https://doi.org/10.48597/TYJ5-W35G +https://doi.org/10.48597/VAU9-WW7S +https://doi.org/10.48597/U8G4-7J4U +https://doi.org/10.48597/NEE9-594Q +https://doi.org/10.48597/7UBU-536N +https://doi.org/10.48597/RVKY-VFF5 +https://doi.org/10.48597/DYUN-XP3Q +https://doi.org/10.48597/Z6RE-VUN5 +https://doi.org/10.48597/GFVM-86FB +https://doi.org/10.48597/XFSP-TMW9 +https://doi.org/10.48597/RCW5-8AC6 +https://doi.org/10.48597/JRFJ-8ZAZ +https://doi.org/10.48597/SBY3-WJDF +https://doi.org/10.48597/WWHG-4PER +https://doi.org/10.48597/ZYXV-J87G +https://doi.org/10.48597/P4ZK-XHF9 +https://doi.org/10.48597/NQSD-EPJB +https://doi.org/10.48597/WG6X-87XP +https://doi.org/10.48597/8BRX-7CZM +https://doi.org/10.48597/9AJQ-TFBW +https://doi.org/10.48597/UF7S-EUAJ +https://doi.org/10.48597/A3V3-2D6H +https://doi.org/10.48597/TZM2-8DQ8 +https://doi.org/10.48597/H5DN-EJ74 +https://doi.org/10.48597/E6PN-7QUA +https://doi.org/10.48597/CPEU-3YTQ +https://doi.org/10.48597/TJ7Y-GH6C +https://doi.org/10.48597/ZM3Z-VVBB +https://doi.org/10.48597/TNJ6-HE9E +https://doi.org/10.48597/U5RG-9RZH +https://doi.org/10.48597/2K6F-W97S +https://doi.org/10.48597/457D-SHNE +https://doi.org/10.48597/MHTG-A2R6 +https://doi.org/10.48597/2HXC-39VW +https://doi.org/10.48597/S2GA-3QHJ +https://doi.org/10.48597/HJCV-GZ9G +https://doi.org/10.48597/MHXF-7F7T +https://doi.org/10.48597/XY3R-XQ3V +https://doi.org/10.48597/B4U4-AXT9 +https://doi.org/10.48597/A68R-YZJC +https://doi.org/10.48597/JP9G-CKUU +https://doi.org/10.48597/XM5H-YYSQ +https://doi.org/10.48597/B439-YH8T +https://doi.org/10.48597/UR5F-FUKQ +https://doi.org/10.48597/NV5Q-GVFP +https://doi.org/10.48597/2RFH-YGPY +https://doi.org/10.48597/MZYK-JED5 +https://doi.org/10.48597/N5CE-S9F9 +https://doi.org/10.48597/JVEH-DTJ4 +https://doi.org/10.48597/QAWC-2976 +https://doi.org/10.48597/RVVR-EXR2 +https://doi.org/10.48597/8HMH-NCRZ +https://doi.org/10.48597/4HFB-WM3G +https://doi.org/10.48597/CAF7-M5XT +https://doi.org/10.48597/P2KX-CDQZ +https://doi.org/10.48597/T4DM-A63S +https://doi.org/10.48597/CY4P-EUSQ +https://doi.org/10.48597/3J58-9U4Z +https://doi.org/10.48597/92WA-3BQG +https://doi.org/10.48597/7MVX-JMWM +https://doi.org/10.48597/N7JY-TV3S +https://doi.org/10.48597/D89J-D3Z6 +https://doi.org/10.48597/YPXF-S2YR +https://doi.org/10.48597/GWYP-6GFV +https://doi.org/10.48597/4TYH-V6DD +https://doi.org/10.48597/BGPR-X8B8 +https://doi.org/10.48597/DB9E-TB5D +https://doi.org/10.48597/S45P-4UGX +https://doi.org/10.48597/DVXA-VKKM +https://doi.org/10.48597/9RNV-M5U7 +https://doi.org/10.48597/FWZU-D6Z6 +https://doi.org/10.48597/639D-8739 +https://doi.org/10.48597/QAGG-ZVZR +https://doi.org/10.48597/GPX8-5QGG +https://doi.org/10.48597/8M4A-A6ZE +https://doi.org/10.48597/CCQG-M2WT +https://doi.org/10.48597/ZT2V-3P92 +https://doi.org/10.48597/NDA6-YR6J +https://doi.org/10.48597/26TF-NNFB +https://doi.org/10.48597/22FP-DZBX +https://doi.org/10.48597/57QU-425V +https://doi.org/10.48597/3JXG-Y6SX +https://doi.org/10.48597/AKEM-TUCK +https://doi.org/10.48597/RUYK-2NAU +https://doi.org/10.48597/RQTK-BAAH +https://doi.org/10.48597/XP3U-U5JX +https://doi.org/10.48597/5F5D-VKHH +https://doi.org/10.48597/2MG4-T3DN +https://doi.org/10.48597/TJPW-TPKV +https://doi.org/10.48597/YVHV-E5KQ +https://doi.org/10.48597/TKJX-KWD7 +https://doi.org/10.48597/XMW3-5T45 +https://doi.org/10.48597/SG3F-MF3A +https://doi.org/10.48597/ZJTJ-4TU3 +https://doi.org/10.48597/WQAD-ZK94 +https://doi.org/10.48597/2YNU-SKZ8 +https://doi.org/10.48597/EECX-6BVF +https://doi.org/10.48597/R689-UTX2 +https://doi.org/10.48597/JQVR-4EMC +https://doi.org/10.48597/DA43-NZHB +https://doi.org/10.48597/H8WX-FY2W +https://doi.org/10.48597/8N9H-5D5Z +https://doi.org/10.48597/8BJQ-4JW5 +https://doi.org/10.48597/N4KZ-QERU +https://doi.org/10.48597/86ED-BHF8 +https://doi.org/10.48597/DJ2S-Q8Q4 +https://doi.org/10.48597/H8FC-BXEV +https://doi.org/10.48597/XU8G-TFA7 +https://doi.org/10.48597/QWVM-VY9S +https://doi.org/10.48597/ZC8M-5ZEA +https://doi.org/10.48597/RASD-KF8B +https://doi.org/10.48597/FDYR-KH3M +https://doi.org/10.48597/SPTY-PV9P +https://doi.org/10.48597/G3RT-WW24 +https://doi.org/10.48597/KDB9-HFER +https://doi.org/10.48597/5XY6-CHRN +https://doi.org/10.48597/NPJT-3BDP +https://doi.org/10.48597/23BB-R5QY +https://doi.org/10.48597/NH5K-34XY +https://doi.org/10.48597/3UF7-PGJW +https://doi.org/10.48597/AB5C-7D7M +https://doi.org/10.48597/5H88-GRPK +https://doi.org/10.48597/QSZZ-QHTQ +https://doi.org/10.48597/FKZH-FBB4 +https://doi.org/10.48597/7H6G-UHZC +https://doi.org/10.48597/U9MG-F4QR +https://doi.org/10.48597/4KW2-PYDE +https://doi.org/10.48597/QNUR-45RJ +https://doi.org/10.48597/HSZR-PC5J +https://doi.org/10.48597/9YTC-PFRE +https://doi.org/10.48597/ERQ8-YFKJ +https://doi.org/10.48597/H9K7-K4SQ +https://doi.org/10.48597/J356-MMR6 +https://doi.org/10.48597/3CPQ-SSSE +https://doi.org/10.48597/9CRW-3ZWC +https://doi.org/10.48597/QZZW-PUV4 +https://doi.org/10.48597/5P9T-YGXT +https://doi.org/10.48597/9D53-S3W8 +https://doi.org/10.48597/94XP-2M22 +https://doi.org/10.48597/QZ6G-4T6M +https://doi.org/10.48597/JR2T-C8JE +https://doi.org/10.48597/KPFY-BGHV +https://doi.org/10.48597/BYPC-G4R4 +https://doi.org/10.48597/TGAR-235R +https://doi.org/10.48597/QDNQ-XD7J +https://doi.org/10.48597/8NCW-3SBJ +https://doi.org/10.48597/ATV3-V6RG +https://doi.org/10.48597/YKA7-UKYR +https://doi.org/10.48597/HEJ9-W4A7 +https://doi.org/10.48597/8FHU-ZPW6 +https://doi.org/10.48597/J5VU-8H9Y +https://doi.org/10.48597/2XPF-P9FD +https://doi.org/10.48597/QX6U-9DV4 +https://doi.org/10.48597/HX5G-BZVQ +https://doi.org/10.48597/NFAP-GX4B +https://doi.org/10.48597/AEXX-9BRV +https://doi.org/10.48597/427D-A5UP +https://doi.org/10.48597/9428-8Z25 +https://doi.org/10.48597/XZ3J-HWUB +https://doi.org/10.48597/2W4E-H59V +https://doi.org/10.48597/NYDQ-JH6X +https://doi.org/10.48597/K7GD-FF5C +https://doi.org/10.48597/FPFE-5PDC +https://doi.org/10.48597/CWAJ-FAA8 +https://doi.org/10.48597/QFNT-XX8Q +https://doi.org/10.48597/Z2FU-4EUV +https://doi.org/10.48597/ZFUK-H5XD +https://doi.org/10.48597/V99S-4FZA +https://doi.org/10.48597/H2UM-GVRR +https://doi.org/10.48597/MNA2-8S7A +https://doi.org/10.48597/C2EJ-KUMU +https://doi.org/10.48597/WPMK-6MTQ +https://doi.org/10.48597/JA6W-BW53 +https://doi.org/10.48597/JPAK-SD27 +https://doi.org/10.48597/7N3G-RPTU +https://doi.org/10.48597/X2WR-8RCK +https://doi.org/10.48597/G2E4-9G8U +https://doi.org/10.48597/TZ2C-UD7Q +https://doi.org/10.48597/9YEH-QM3C +https://doi.org/10.48597/M2DT-6RK4 +https://doi.org/10.48597/Z9CY-ZD93 +https://doi.org/10.48597/DK8T-UTQC +https://doi.org/10.48597/A6RN-UBA6 +https://doi.org/10.48597/V9GY-U9JT +https://doi.org/10.48597/2543-B9R6 +https://doi.org/10.48597/E36C-RYJN +https://doi.org/10.48597/YT6N-F8U3 +https://doi.org/10.48597/UNMR-KM9W +https://doi.org/10.48597/KG3F-GVQV +https://doi.org/10.48597/DNRT-QAXM +https://doi.org/10.48597/42GE-QTH7 +https://doi.org/10.48597/JSGZ-W66H +https://doi.org/10.48597/9322-4TQE +https://doi.org/10.48597/DDV8-APRS +https://doi.org/10.48597/9S3W-PQD6 +https://doi.org/10.48597/FC4B-MHNZ +https://doi.org/10.48597/R7SR-F835 +https://doi.org/10.48597/2WVY-SW3P +https://doi.org/10.48597/53UH-BZTF +https://doi.org/10.48597/SEAE-39UV +https://doi.org/10.48597/GHW4-977V +https://doi.org/10.48597/4R7C-BT53 +https://doi.org/10.48597/UHJM-28SV +https://doi.org/10.48597/GW7S-XEK4 +https://doi.org/10.48597/KP8F-GSH5 +https://doi.org/10.48597/UPYZ-TTVJ +https://doi.org/10.48597/NHZF-Y25C +https://doi.org/10.48597/FD38-7JZT +https://doi.org/10.48597/SPBJ-NCY3 +https://doi.org/10.48597/ZTFW-FDB5 +https://doi.org/10.48597/K3YG-2M6U +https://doi.org/10.48597/43FU-C7TM +https://doi.org/10.48597/852H-6Q58 +https://doi.org/10.48597/JZ46-YK5K +https://doi.org/10.48597/SZAN-V5TP +https://doi.org/10.48597/8C5A-6YCB +https://doi.org/10.48597/BPSY-DRBK +https://doi.org/10.48597/J6MW-78GB +https://doi.org/10.48597/5AA5-M6N2 +https://doi.org/10.48597/KEBP-ZP2V +https://doi.org/10.48597/3PKV-HY9K +https://doi.org/10.48597/UFS3-Z3SR +https://doi.org/10.48597/9NBM-KFHE +https://doi.org/10.48597/QTVC-7335 +https://doi.org/10.48597/6QPE-25QY +https://doi.org/10.48597/3W8Q-FZJR +https://doi.org/10.48597/BYMF-KZFU +https://doi.org/10.48597/MN25-USJA +https://doi.org/10.48597/Q3Z9-2B5E +https://doi.org/10.48597/PV5S-U5CX +https://doi.org/10.48597/24GP-8KVA +https://doi.org/10.48597/RNT4-4UBB +https://doi.org/10.48597/NDHH-R59V +https://doi.org/10.48597/DS9M-J63H +https://doi.org/10.48597/ABWE-WVUD +https://doi.org/10.48597/AU86-FNN6 +https://doi.org/10.48597/4GXN-UF29 +https://doi.org/10.48597/BHGS-K2QP +https://doi.org/10.48597/HHXM-Y5ME +https://doi.org/10.48597/P7ER-2CF3 +https://doi.org/10.48597/2FUX-EMC9 +https://doi.org/10.48597/D8ZU-FBG4 +https://doi.org/10.48597/GYPA-3B4P +https://doi.org/10.48597/GVTX-W7NF +https://doi.org/10.48597/NS6U-EYWG +https://doi.org/10.48597/5TUB-X95T +https://doi.org/10.48597/VPWZ-6VRX +https://doi.org/10.48597/WWCG-AYSZ +https://doi.org/10.48597/WEAW-KSWK +https://doi.org/10.48597/STQH-5CKU +https://doi.org/10.48597/V5J3-78TA +https://doi.org/10.48597/JD2Y-5K7B +https://doi.org/10.48597/J7NE-UAYB +https://doi.org/10.48597/PBKM-XEVR +https://doi.org/10.48597/KTFD-7SND +https://doi.org/10.48597/8BP8-X85W +https://doi.org/10.48597/2AVV-N96K +https://doi.org/10.48597/CGXY-EMN6 +https://doi.org/10.48597/MWJ4-ZS47 +https://doi.org/10.48597/YB6J-6BXE +https://doi.org/10.48597/WQPD-ZCFZ +https://doi.org/10.48597/QYNQ-2NFE +https://doi.org/10.48597/CXYV-M8F4 +https://doi.org/10.48597/N289-RP8C +https://doi.org/10.48597/9WSU-DDBR +https://doi.org/10.48597/8WPM-7CQ2 +https://doi.org/10.48597/BQZ6-RH72 +https://doi.org/10.48597/FNGC-ZT43 +https://doi.org/10.48597/7K9Y-HC3C +https://doi.org/10.48597/F2SX-YGW3 +https://doi.org/10.48597/BWGJ-EKJG +https://doi.org/10.48597/TY89-AX3G +https://doi.org/10.48597/2BFK-ZJFW +https://doi.org/10.48597/3DR8-JWQ8 +https://doi.org/10.48597/228F-Z2EU +https://doi.org/10.48597/4YMR-ERPS +https://doi.org/10.48597/VUER-XE2V +https://doi.org/10.48597/CM95-MMC9 +https://doi.org/10.48597/K4GJ-JGRC +https://doi.org/10.48597/ZVHT-YGK6 +https://doi.org/10.48597/F9WM-UZ9P +https://doi.org/10.48597/8FU8-7R9D +https://doi.org/10.48597/C2YE-Q96X +https://doi.org/10.48597/QSG3-4T3W +https://doi.org/10.48597/MC6U-HBEV +https://doi.org/10.48597/NSRJ-BBKU +https://doi.org/10.48597/KWFW-MAM6 +https://doi.org/10.48597/D2SD-P7CN +https://doi.org/10.48597/CKTX-KWG4 +https://doi.org/10.48597/47CV-6AV6 +https://doi.org/10.48597/V66Z-Z5UC +https://doi.org/10.48597/GCYR-Z9RV +https://doi.org/10.48597/THNB-H2X5 +https://doi.org/10.48597/4GN2-Y65G +https://doi.org/10.48597/QM24-MECQ +https://doi.org/10.48597/R8PG-AXS2 +https://doi.org/10.48597/PNJZ-FRWC +https://doi.org/10.48597/JWVF-WRX6 +https://doi.org/10.48597/VH43-J6XA +https://doi.org/10.48597/ZP88-YPZJ +https://doi.org/10.48597/GDE3-STEG +https://doi.org/10.48597/W5E7-QGWY +https://doi.org/10.48597/ZQ3G-6VJK +https://doi.org/10.48597/8XC2-7QEU +https://doi.org/10.48597/B2MN-9Y4U +https://doi.org/10.48597/KSHE-Y4VE +https://doi.org/10.48597/V3YR-MXHT +https://doi.org/10.48597/3FWA-EH2T +https://doi.org/10.48597/XXMW-J44M +https://doi.org/10.48597/KT8J-QU9Y +https://doi.org/10.48597/52VM-UAJT +https://doi.org/10.48597/9BMX-HUFR +https://doi.org/10.48597/WYRG-QRJ4 +https://doi.org/10.48597/ARJY-PG2R +https://doi.org/10.48597/H64G-UQ7B +https://doi.org/10.48597/MMNQ-AJSJ +https://doi.org/10.48597/6YYW-739Z +https://doi.org/10.48597/WRT5-THMW +https://doi.org/10.48597/JRB3-N8Y7 +https://doi.org/10.48597/4688-WJF4 +https://doi.org/10.48597/EXFB-5CCT +https://doi.org/10.48597/35R2-U26Z +https://doi.org/10.48597/8S6T-ADY6 +https://doi.org/10.48597/GAB7-PRTK +https://doi.org/10.48597/C58Z-GNQQ +https://doi.org/10.48597/4AVS-3CPK +https://doi.org/10.48597/7JKY-UHJV +https://doi.org/10.48597/YG6G-E89Z +https://doi.org/10.48597/5FAR-6DYW +https://doi.org/10.48597/5KWY-4W69 +https://doi.org/10.48597/V3D2-MP4W +https://doi.org/10.48597/GXQJ-Y6XN +https://doi.org/10.48597/8KH8-6WSE +https://doi.org/10.48597/TSVW-TAWW +https://doi.org/10.48597/58Y3-TK26 +https://doi.org/10.48597/RETJ-P6W5 +https://doi.org/10.48597/9SYJ-PYJX +https://doi.org/10.48597/J8ND-4JT7 +https://doi.org/10.48597/938X-9YBK +https://doi.org/10.48597/RK46-GT6R +https://doi.org/10.48597/XPYH-3VSJ +https://doi.org/10.48597/HT8P-QUKM +https://doi.org/10.48597/9JDD-YC69 +https://doi.org/10.48597/6WW5-3TEP +https://doi.org/10.48597/2KQN-KC9X +https://doi.org/10.48597/QBX4-MBFJ +https://doi.org/10.48597/8MHM-JYCU +https://doi.org/10.48597/HDMV-PYPS +https://doi.org/10.48597/FB2R-D4QP +https://doi.org/10.48597/82MU-CPAR +https://doi.org/10.48597/4CA8-97ZK +https://doi.org/10.48597/XPBR-DDJ8 +https://doi.org/10.48597/TNYY-QBWT +https://doi.org/10.48597/QUTV-D7V4 +https://doi.org/10.48597/WPKB-8SH6 +https://doi.org/10.48597/VHUQ-6FYG +https://doi.org/10.48597/A6AV-82TE +https://doi.org/10.48597/5BPS-8HFX +https://doi.org/10.48597/XR5J-85SX +https://doi.org/10.48597/NAGU-B29T +https://doi.org/10.48597/JS3X-B7KU +https://doi.org/10.48597/ZXJP-3JPD +https://doi.org/10.48597/3P7X-W4JF +https://doi.org/10.48597/G738-E9RC +https://doi.org/10.48597/T6VJ-8PMA +https://doi.org/10.48597/G7K9-6FH3 +https://doi.org/10.48597/9P23-KM2K +https://doi.org/10.48597/D3JP-BP9D +https://doi.org/10.48597/W8MF-JUX6 +https://doi.org/10.48597/4M3G-NTHN +https://doi.org/10.48597/XHRY-GWNK +https://doi.org/10.48597/GYHR-Z56A +https://doi.org/10.48597/EEEB-FPKR +https://doi.org/10.48597/QG77-H5UA +https://doi.org/10.48597/8A75-RZKM +https://doi.org/10.48597/PXW4-JS7C +https://doi.org/10.48597/H9PC-RHHF +https://doi.org/10.48597/7CQ7-2R6K +https://doi.org/10.48597/73GF-7T6M +https://doi.org/10.48597/UYE9-CZKG +https://doi.org/10.48597/SRVE-RQ9V +https://doi.org/10.48597/6DKU-E675 +https://doi.org/10.48597/4UAX-U2HS +https://doi.org/10.48597/WAE9-S98C +https://doi.org/10.48597/M2JB-EJRN +https://doi.org/10.48597/H6D7-P9XY +https://doi.org/10.48597/JERK-FDSA +https://doi.org/10.48597/XBTB-2E7S +https://doi.org/10.48597/QGSS-WH5F +https://doi.org/10.48597/3QND-ETN4 +https://doi.org/10.48597/ESAQ-ZW2H +https://doi.org/10.48597/4FTP-QTQR +https://doi.org/10.48597/NK32-24S9 +https://doi.org/10.48597/YA4M-EGGR +https://doi.org/10.48597/RMP6-QEPZ +https://doi.org/10.48597/NS6G-UMFB +https://doi.org/10.48597/HAGA-CKXD +https://doi.org/10.48597/YWCY-7SWY +https://doi.org/10.48597/EWMC-D59F +https://doi.org/10.48597/89QT-F63R +https://doi.org/10.48597/74W8-K6JA +https://doi.org/10.48597/JAJT-U6DQ +https://doi.org/10.48597/4CVQ-NMGR +https://doi.org/10.48597/NYXY-FWRW +https://doi.org/10.48597/XT74-GE9F +https://doi.org/10.48597/PPA6-CXS2 +https://doi.org/10.48597/KY2M-FYQ2 +https://doi.org/10.48597/FAZZ-3ZVV +https://doi.org/10.48597/C2G3-Q3VH +https://doi.org/10.48597/5D97-P43S +https://doi.org/10.48597/NXCZ-XW46 +https://doi.org/10.48597/TVND-EZGR +https://doi.org/10.48597/37ZF-A2DD +https://doi.org/10.48597/SS77-ARHH +https://doi.org/10.48597/Q3DQ-69KJ +https://doi.org/10.48597/KCRU-AKG2 +https://doi.org/10.48597/YXXY-CGMN +https://doi.org/10.48597/PGQV-H484 +https://doi.org/10.48597/QH2J-AR57 +https://doi.org/10.48597/DBYP-CNAJ +https://doi.org/10.48597/SYC5-JJU3 +https://doi.org/10.48597/6WJU-VWBF +https://doi.org/10.48597/VWZN-B4ZR +https://doi.org/10.48597/SB76-UNGA +https://doi.org/10.48597/9A2S-RD77 +https://doi.org/10.48597/E8RD-2VU4 +https://doi.org/10.48597/7W45-JUHK +https://doi.org/10.48597/7V96-H8FT +https://doi.org/10.48597/GREE-DXW4 +https://doi.org/10.48597/GGHV-BWE5 +https://doi.org/10.48597/9P7N-TYD5 +https://doi.org/10.48597/G8KV-AVUQ +https://doi.org/10.48597/X2WE-GATY +https://doi.org/10.48597/CGKZ-UA2R +https://doi.org/10.48597/758C-EWF3 +https://doi.org/10.48597/6CFZ-EAVF +https://doi.org/10.48597/88MK-XBQG +https://doi.org/10.48597/3Q9V-TFJD +https://doi.org/10.48597/HU9M-RBAR +https://doi.org/10.48597/8KFB-KBG2 +https://doi.org/10.48597/WRTK-M52B +https://doi.org/10.48597/A2EV-NHW5 +https://doi.org/10.48597/NGM6-QRJA +https://doi.org/10.48597/G8ZD-E2HY +https://doi.org/10.48597/PYE7-H4PP +https://doi.org/10.48597/24QK-US4N +https://doi.org/10.48597/WRSQ-M945 +https://doi.org/10.48597/CT55-55DT +https://doi.org/10.48597/XPJ7-WKKX +https://doi.org/10.48597/T2AB-55AK +https://doi.org/10.48597/Z7ZC-W2EP +https://doi.org/10.48597/N4CZ-SK4H +https://doi.org/10.48597/FYHQ-82NK +https://doi.org/10.48597/XW24-F8VK +https://doi.org/10.48597/VX5X-NAWN +https://doi.org/10.48597/FY6U-2SQQ +https://doi.org/10.48597/3S7T-VQ5R +https://doi.org/10.48597/FJ6R-CTA6 +https://doi.org/10.48597/SFG3-VNZ8 +https://doi.org/10.48597/7ZJG-4QMN +https://doi.org/10.48597/G945-P6K4 +https://doi.org/10.48597/D7Z7-ZPMT +https://doi.org/10.48597/JMTU-AF98 +https://doi.org/10.48597/C9BS-DEKM +https://doi.org/10.48597/AP8B-PWR9 +https://doi.org/10.48597/5YXS-2BWT +https://doi.org/10.48597/S6YZ-2KJ6 +https://doi.org/10.48597/5AWR-99WP +https://doi.org/10.48597/FA6W-C8JD +https://doi.org/10.48597/JQM7-BBWP +https://doi.org/10.48597/VVDC-W54X +https://doi.org/10.48597/WEYW-CJEV +https://doi.org/10.48597/9NGG-5ZKF +https://doi.org/10.48597/6TYD-9EPH +https://doi.org/10.48597/G9FG-GE7Q +https://doi.org/10.48597/DVYV-R62F +https://doi.org/10.48597/6M5U-4H3Y +https://doi.org/10.48597/9TEK-XS5U +https://doi.org/10.48597/CQK7-7VKN +https://doi.org/10.48597/VU35-KD7D +https://doi.org/10.48597/8NUR-PHBD +https://doi.org/10.48597/VSUV-PUQ6 +https://doi.org/10.48597/Z6NF-8BFR +https://doi.org/10.48597/EK7N-F64X +https://doi.org/10.48597/YPDU-ZFHD +https://doi.org/10.48597/66GF-8AY6 +https://doi.org/10.48597/JVWM-7KDU +https://doi.org/10.48597/BZGU-GWUY +https://doi.org/10.48597/5VM2-7VC8 +https://doi.org/10.48597/5SBF-KJWV +https://doi.org/10.48597/NH4S-QW2P +https://doi.org/10.48597/W667-VWER +https://doi.org/10.48597/34NT-P94K +https://doi.org/10.48597/NPN2-9A49 +https://doi.org/10.48597/TGK9-R8J7 +https://doi.org/10.48597/GETS-7DYT +https://doi.org/10.48597/UMG2-PHWZ +https://doi.org/10.48597/J9PA-EWN9 +https://doi.org/10.48597/9KD6-YAYA +https://doi.org/10.48597/BS8B-Q4YE +https://doi.org/10.48597/PKMX-JYB8 +https://doi.org/10.48597/7UC8-Q5AR +https://doi.org/10.48597/R7DX-96VR +https://doi.org/10.48597/GP8F-APBC +https://doi.org/10.48597/PMNF-N5UZ +https://doi.org/10.48597/FH2X-Y6YV +https://doi.org/10.48597/YD7C-MAP6 +https://doi.org/10.48597/XKYQ-2ZQ5 +https://doi.org/10.48597/2R83-DF89 +https://doi.org/10.48597/MQBG-AEMA +https://doi.org/10.48597/H8EJ-YRGJ +https://doi.org/10.48597/X3FP-2EZH +https://doi.org/10.48597/ZBPV-4KSG +https://doi.org/10.48597/N3ND-T8RG +https://doi.org/10.48597/79P4-BJFY +https://doi.org/10.48597/ZXUW-BNFP +https://doi.org/10.48597/X5GB-C63A +https://doi.org/10.48597/GQTK-3UZC +https://doi.org/10.48597/MX7Z-4YGQ +https://doi.org/10.48597/9HME-8FSN +https://doi.org/10.48597/5GQ4-8SQF +https://doi.org/10.48597/69RR-XAHU +https://doi.org/10.48597/AWQP-D397 +https://doi.org/10.48597/32NE-9FAK +https://doi.org/10.48597/4MXS-WEHG +https://doi.org/10.48597/U7N5-QDRP +https://doi.org/10.48597/YF2P-5U3Q +https://doi.org/10.48597/TAH2-XE25 +https://doi.org/10.48597/VH6Z-PS5B +https://doi.org/10.48597/BEU6-62G9 +https://doi.org/10.48597/267N-USEU +https://doi.org/10.48597/HBB3-HJUM +https://doi.org/10.48597/NGG8-DTC2 +https://doi.org/10.48597/DV74-VBZX +https://doi.org/10.48597/UDSD-K3GT +https://doi.org/10.48597/BD3S-PQCN +https://doi.org/10.48597/6WZQ-PH83 +https://doi.org/10.48597/8N87-7A5S +https://doi.org/10.48597/XAJ9-4WFZ +https://doi.org/10.48597/QJ4H-R9GM +https://doi.org/10.48597/QKTP-5UUD +https://doi.org/10.48597/3G7T-FK3Z +https://doi.org/10.48597/U69A-95H8 +https://doi.org/10.48597/2PAH-MTZJ +https://doi.org/10.48597/J87R-UCJQ +https://doi.org/10.48597/JTQ5-Q3WG +https://doi.org/10.48597/DMBA-2E5F +https://doi.org/10.48597/WKKB-QX3D +https://doi.org/10.48597/ZSQ3-5C78 +https://doi.org/10.48597/J3YQ-3QUG +https://doi.org/10.48597/X6JF-9BFM +https://doi.org/10.48597/J29P-WWJQ +https://doi.org/10.48597/6H6C-393F +https://doi.org/10.48597/AWRQ-NW6Z +https://doi.org/10.48597/8NRT-44YA +https://doi.org/10.48597/EMEM-V3RX +https://doi.org/10.48597/JXDU-5S6G +https://doi.org/10.48597/68RY-YG7Q +https://doi.org/10.48597/WBWQ-JNAA +https://doi.org/10.48597/WHR2-58VK +https://doi.org/10.48597/3R6Z-A54U +https://doi.org/10.48597/54BQ-NKPJ +https://doi.org/10.48597/ZWC5-JSDB +https://doi.org/10.48597/3V33-5PE5 +https://doi.org/10.48597/GHBZ-KS62 +https://doi.org/10.48597/ET4V-UC9B +https://doi.org/10.48597/ETNH-D9TM +https://doi.org/10.48597/MECG-T52H +https://doi.org/10.48597/XGMJ-S7PA +https://doi.org/10.48597/UCBS-42P2 +https://doi.org/10.48597/87W2-KDNT +https://doi.org/10.48597/ST3Z-AQ6F +https://doi.org/10.48597/VXR9-2FSY +https://doi.org/10.48597/5ZNW-24AQ +https://doi.org/10.48597/T89B-C3ZV +https://doi.org/10.48597/JH4Y-RDE2 +https://doi.org/10.48597/NNUP-Q2JE +https://doi.org/10.48597/FXPW-2TTH +https://doi.org/10.48597/9ACY-FG3Y +https://doi.org/10.48597/CAEY-5979 +https://doi.org/10.48597/RPTC-E88K +https://doi.org/10.48597/N8H5-W6CK +https://doi.org/10.48597/H8R2-WG22 +https://doi.org/10.48597/UU9R-TETB +https://doi.org/10.48597/ZZMJ-UKAR +https://doi.org/10.48597/6WV2-4DSG +https://doi.org/10.48597/5BMJ-HKX6 +https://doi.org/10.48597/BDG5-TE23 +https://doi.org/10.48597/MNYF-EVTB +https://doi.org/10.48597/VSKK-W2JP +https://doi.org/10.48597/WFX8-JFN2 +https://doi.org/10.48597/YA22-4PF6 +https://doi.org/10.48597/GWUM-W4K9 +https://doi.org/10.48597/RKM5-WY4Z +https://doi.org/10.48597/AYF4-SD6N +https://doi.org/10.48597/P66G-RJJB +https://doi.org/10.48597/DCQN-XBDZ +https://doi.org/10.48597/78WS-QWCG +https://doi.org/10.48597/N5J2-AAAR +https://doi.org/10.48597/ASHJ-BSWX +https://doi.org/10.48597/8GMB-PS2W +https://doi.org/10.48597/RK58-TDKF +https://doi.org/10.48597/B2HN-PDBN +https://doi.org/10.48597/X8UG-BYXP +https://doi.org/10.48597/AFZ9-XGVA +https://doi.org/10.48597/88GU-TQWC +https://doi.org/10.48597/G6YW-SVSE +https://doi.org/10.48597/M6XU-9Q6Q +https://doi.org/10.48597/2FWN-S9JX +https://doi.org/10.48597/YKM8-X9W8 +https://doi.org/10.48597/RUFU-7RNW +https://doi.org/10.48597/7GB5-7Q6F +https://doi.org/10.48597/AQWP-W97U +https://doi.org/10.48597/E9ST-PQD7 +https://doi.org/10.48597/8GHG-GY9W +https://doi.org/10.48597/Y82B-4FYP +https://doi.org/10.48597/XWF2-RDRF +https://doi.org/10.48597/5BV5-DSNB +https://doi.org/10.48597/CPYF-PS6G +https://doi.org/10.48597/Y4FT-B3AJ +https://doi.org/10.48597/Y33U-DNWK +https://doi.org/10.48597/RU7E-FQ4Z +https://doi.org/10.48597/ZFCA-NGEQ +https://doi.org/10.48597/CCGA-7BFZ +https://doi.org/10.48597/9TBW-WPZ9 +https://doi.org/10.48597/84BC-C9H6 +https://doi.org/10.48597/WM98-K7DU +https://doi.org/10.48597/QTQR-Z73B +https://doi.org/10.48597/2574-7D5Z +https://doi.org/10.48597/JME4-BMQK +https://doi.org/10.48597/6FC9-JQVT +https://doi.org/10.48597/VGMT-M9ES +https://doi.org/10.48597/SM9C-TNPY +https://doi.org/10.48597/6YJ6-GZRX +https://doi.org/10.48597/3GC7-QNSG +https://doi.org/10.48597/EAKU-NN9U +https://doi.org/10.48597/M8VK-7WYD +https://doi.org/10.48597/KYZC-5J42 +https://doi.org/10.48597/69RX-B9MT +https://doi.org/10.48597/8KMD-2PDT +https://doi.org/10.48597/ESK5-36FB +https://doi.org/10.48597/CF6N-ECUR +https://doi.org/10.48597/ERW4-ERZ4 +https://doi.org/10.48597/ZD4E-TP54 +https://doi.org/10.48597/258U-FMXZ +https://doi.org/10.48597/KMKT-VCBA +https://doi.org/10.48597/W6YG-QHZP +https://doi.org/10.48597/K5XN-DKF2 +https://doi.org/10.48597/MXHS-QKMX +https://doi.org/10.48597/49UJ-DE3P +https://doi.org/10.48597/QN95-8VND +https://doi.org/10.48597/3FDR-5RJJ +https://doi.org/10.48597/GVSR-U5WU +https://doi.org/10.48597/T2NW-8YGG +https://doi.org/10.48597/XYKZ-CSE5 +https://doi.org/10.48597/XVJP-94X8 +https://doi.org/10.48597/UX2E-B6XA +https://doi.org/10.48597/D6QC-2GQF +https://doi.org/10.48597/V5G6-9CDJ +https://doi.org/10.48597/R9FF-5PQT +https://doi.org/10.48597/YHPY-368G +https://doi.org/10.48597/JNYB-S7XB +https://doi.org/10.48597/ZYBB-NCJ3 +https://doi.org/10.48597/BGB2-2FX5 +https://doi.org/10.48597/86NP-WXG7 +https://doi.org/10.48597/WVTQ-AXAF +https://doi.org/10.48597/8SVT-RKVT +https://doi.org/10.48597/Z9DA-E4XA +https://doi.org/10.48597/T9Q3-PF7B +https://doi.org/10.48597/6EY4-47SR +https://doi.org/10.48597/5JUS-YJ6B +https://doi.org/10.48597/5KXT-MNJX +https://doi.org/10.48597/HQRN-RPUJ +https://doi.org/10.48597/QBH2-TEFE +https://doi.org/10.48597/R9D7-DVNR +https://doi.org/10.48597/K6CQ-KBQE +https://doi.org/10.48597/8GBG-VAE8 +https://doi.org/10.48597/6EP2-SERK +https://doi.org/10.48597/QAXA-5ARR +https://doi.org/10.48597/YJFV-THZN +https://doi.org/10.48597/NMXV-82PN +https://doi.org/10.48597/R7NS-DYKS +https://doi.org/10.48597/4CRT-XB3W +https://doi.org/10.48597/P5TK-QJZK +https://doi.org/10.48597/3739-TEEK +https://doi.org/10.48597/R5YK-4CK7 +https://doi.org/10.48597/R66U-CPEB +https://doi.org/10.48597/CTH3-JHU2 +https://doi.org/10.48597/6VCB-GBDJ +https://doi.org/10.48597/NA6P-E4TU +https://doi.org/10.48597/UCRK-7ZPV +https://doi.org/10.48597/DZTW-GHAU +https://doi.org/10.48597/NCVN-VX7Z +https://doi.org/10.48597/6QMR-5265 +https://doi.org/10.48597/M4V8-QCA5 +https://doi.org/10.48597/6YGY-MM4M +https://doi.org/10.48597/WD5R-PAZK +https://doi.org/10.48597/DH32-VKFS +https://doi.org/10.48597/QJHS-7NWU +https://doi.org/10.48597/EJBV-6KVD +https://doi.org/10.48597/593E-SKQ3 +https://doi.org/10.48597/BC8K-GF3V +https://doi.org/10.48597/VAWM-QS37 +https://doi.org/10.48597/XY7J-JBHB +https://doi.org/10.48597/PGNU-T282 +https://doi.org/10.48597/8BWJ-8495 +https://doi.org/10.48597/TM97-D6JH +https://doi.org/10.48597/GJWS-8R4H +https://doi.org/10.48597/VC5Q-8YTR +https://doi.org/10.48597/DCAP-V3S8 +https://doi.org/10.48597/Y965-WUU6 +https://doi.org/10.48597/GAA3-QPQW +https://doi.org/10.48597/2P47-GS8D +https://doi.org/10.48597/Q4CT-HMA2 +https://doi.org/10.48597/V5V7-4MEP +https://doi.org/10.48597/5PVJ-72M7 +https://doi.org/10.48597/96TK-ZX7W +https://doi.org/10.48597/5EER-DMFB +https://doi.org/10.48597/CXPE-VS63 +https://doi.org/10.48597/3G4B-ZN8C +https://doi.org/10.48597/3ZPW-VJTD +https://doi.org/10.48597/6FYJ-GE4K +https://doi.org/10.48597/YAWV-BA6B +https://doi.org/10.48597/4RCT-ZV2C +https://doi.org/10.48597/VAGA-ART2 +https://doi.org/10.48597/NV45-8WBM +https://doi.org/10.48597/WNQK-W6GS +https://doi.org/10.48597/NKFP-T36N +https://doi.org/10.48597/5YZ9-ME8H +https://doi.org/10.48597/S9T8-5JM2 +https://doi.org/10.48597/XKFX-HSJX +https://doi.org/10.48597/FMPW-W5SC +https://doi.org/10.48597/67QT-TP7H +https://doi.org/10.48597/R8BV-EVJJ +https://doi.org/10.48597/P547-8TYY +https://doi.org/10.48597/AVME-ZUKG +https://doi.org/10.48597/JA83-KYQN +https://doi.org/10.48597/C46W-DHHK +https://doi.org/10.48597/3Z2R-5CBF +https://doi.org/10.48597/CR5M-932N +https://doi.org/10.48597/MWAX-DK5A +https://doi.org/10.48597/QSEE-MS9H +https://doi.org/10.48597/7NW4-PFPN +https://doi.org/10.48597/4VZH-KVCE +https://doi.org/10.48597/HWAJ-VZ7U +https://doi.org/10.48597/DH5E-NFGE +https://doi.org/10.48597/4CMC-4D3S +https://doi.org/10.48597/CWGN-K3C8 +https://doi.org/10.48597/ZT7G-XKCQ +https://doi.org/10.48597/JHBZ-EXJT +https://doi.org/10.48597/4W4W-57YW +https://doi.org/10.48597/Z36B-UGFP +https://doi.org/10.48597/XJDA-JE3B +https://doi.org/10.48597/P9Y8-8C77 +https://doi.org/10.48597/CBUX-9BE8 +https://doi.org/10.48597/C5EP-HJFE +https://doi.org/10.48597/KM6Y-HMR7 +https://doi.org/10.48597/6UPG-2MDP +https://doi.org/10.48597/KJFU-8EZA +https://doi.org/10.48597/XPSG-EY6A +https://doi.org/10.48597/7B65-ZVZX +https://doi.org/10.48597/ZAEM-8C78 +https://doi.org/10.48597/BAGB-5QSA +https://doi.org/10.48597/X6FU-KGHJ +https://doi.org/10.48597/YT64-NKE9 +https://doi.org/10.48597/NV6C-53DT +https://doi.org/10.48597/68FV-89UC +https://doi.org/10.48597/PH2W-8C3X +https://doi.org/10.48597/ZXH8-49TA +https://doi.org/10.48597/9J9E-QCME +https://doi.org/10.48597/JYNY-HFM4 +https://doi.org/10.48597/TJX7-SCCS +https://doi.org/10.48597/WWJ4-8DGX +https://doi.org/10.48597/4C4P-PZ8T +https://doi.org/10.48597/7YCH-JMRR +https://doi.org/10.48597/T34N-VYM2 +https://doi.org/10.48597/67XT-BMRM +https://doi.org/10.48597/QNF5-VR7D +https://doi.org/10.48597/TZBK-9F9C +https://doi.org/10.48597/NB32-SBY4 +https://doi.org/10.48597/HEPC-UFS4 +https://doi.org/10.48597/RE9K-T6TQ +https://doi.org/10.48597/VP6V-YS8T +https://doi.org/10.48597/S2CR-4ES7 +https://doi.org/10.48597/N7JR-425X +https://doi.org/10.48597/M3PX-KAGU +https://doi.org/10.48597/37CQ-SAZD +https://doi.org/10.48597/MCF7-HRDF +https://doi.org/10.48597/ZPCB-NCF5 +https://doi.org/10.48597/PEUG-JFRG +https://doi.org/10.48597/THCD-EP42 +https://doi.org/10.48597/W7SU-N2MR +https://doi.org/10.48597/HB67-9PAE +https://doi.org/10.48597/HMYC-3XKF +https://doi.org/10.48597/C99Q-96KF +https://doi.org/10.48597/R8RV-5HKN +https://doi.org/10.48597/TTTA-Y746 +https://doi.org/10.48597/VTYQ-EP5K +https://doi.org/10.48597/HAMF-ERG4 +https://doi.org/10.48597/AVX5-SC8W +https://doi.org/10.48597/B9N2-JVVG +https://doi.org/10.48597/AD3A-DZBQ +https://doi.org/10.48597/8XFH-WPUE +https://doi.org/10.48597/98HV-CRCM +https://doi.org/10.48597/C9E5-NNGM +https://doi.org/10.48597/ZEY2-B945 +https://doi.org/10.48597/VK7W-CVQT +https://doi.org/10.48597/CSU6-KD2D +https://doi.org/10.48597/8CR6-53GX +https://doi.org/10.48597/SYKA-3FEK +https://doi.org/10.48597/8EPR-2KVN +https://doi.org/10.48597/KWCH-USSR +https://doi.org/10.48597/KRYF-EBGM +https://doi.org/10.48597/4TA4-G5ZK +https://doi.org/10.48597/85XY-S9F3 +https://doi.org/10.48597/288E-9SET +https://doi.org/10.48597/F2UE-GPJB +https://doi.org/10.48597/8VRB-K4CD +https://doi.org/10.48597/KTHJ-HE2K +https://doi.org/10.48597/AEXF-8A9T +https://doi.org/10.48597/C87J-6WCQ +https://doi.org/10.48597/AJCE-9Y5F +https://doi.org/10.48597/G7Z3-MFA5 +https://doi.org/10.48597/AAP6-8WFB +https://doi.org/10.48597/4U46-FA9D +https://doi.org/10.48597/3Z6Q-K6ST +https://doi.org/10.48597/2EU8-VV52 +https://doi.org/10.48597/9ZDZ-6R8V +https://doi.org/10.48597/6Q2T-JGBP +https://doi.org/10.48597/2W5Q-VTMH +https://doi.org/10.48597/NQTR-KQHN +https://doi.org/10.48597/9B33-ZW5X +https://doi.org/10.48597/M95M-GT3X +https://doi.org/10.48597/HDX9-C56W +https://doi.org/10.48597/DKNR-YDKB +https://doi.org/10.48597/669M-PB77 +https://doi.org/10.48597/K84U-PRCR +https://doi.org/10.48597/6M7Y-KN8F +https://doi.org/10.48597/62FU-MBS7 +https://doi.org/10.48597/MAXF-EYB2 +https://doi.org/10.48597/AC62-JKZH +https://doi.org/10.48597/7CFR-T6VQ +https://doi.org/10.48597/T9Y4-E74J +https://doi.org/10.48597/FKST-H9QZ +https://doi.org/10.48597/TXXJ-3T3C +https://doi.org/10.48597/D6H4-XZSZ +https://doi.org/10.48597/8V4K-4JPQ +https://doi.org/10.48597/8Y52-XY4W +https://doi.org/10.48597/QRMK-TWM2 +https://doi.org/10.48597/53GV-BDFY +https://doi.org/10.48597/E5HK-8AG9 +https://doi.org/10.48597/P8A3-WW9B +https://doi.org/10.48597/CMK3-D45D +https://doi.org/10.48597/49KR-QQNS +https://doi.org/10.48597/YWSS-D9TC +https://doi.org/10.48597/U2KW-KKV2 +https://doi.org/10.48597/283T-THCH +https://doi.org/10.48597/7CW4-5MPQ +https://doi.org/10.48597/ZVN9-TWY5 +https://doi.org/10.48597/N7AT-Q9AB +https://doi.org/10.48597/TNAN-N6J9 +https://doi.org/10.48597/JR7T-F2ZJ +https://doi.org/10.48597/D28D-DJ4M +https://doi.org/10.48597/RCQS-6V3A +https://doi.org/10.48597/96MN-PNCV +https://doi.org/10.48597/8ZJZ-AJ4E +https://doi.org/10.48597/XSZ4-MXJ5 +https://doi.org/10.48597/YBY8-S59M +https://doi.org/10.48597/S3UF-7AWR +https://doi.org/10.48597/F9D3-XTUM +https://doi.org/10.48597/6P8Q-MTRX +https://doi.org/10.48597/WDVS-KBU9 +https://doi.org/10.48597/JDQQ-WMJF +https://doi.org/10.48597/X3FJ-3DY2 +https://doi.org/10.48597/E4QY-EPV9 +https://doi.org/10.48597/WQU8-N425 +https://doi.org/10.48597/ZPMN-T9E7 +https://doi.org/10.48597/EZNH-PXC3 +https://doi.org/10.48597/5X7Q-8VH8 +https://doi.org/10.48597/EXWJ-ZZ6J +https://doi.org/10.48597/6B64-NJAS +https://doi.org/10.48597/23JN-TPFM +https://doi.org/10.48597/GQTQ-5P3D +https://doi.org/10.48597/U746-7AAY +https://doi.org/10.48597/Z5PR-KCJ4 +https://doi.org/10.48597/7ZG5-G38K +https://doi.org/10.48597/TSRC-7KEW +https://doi.org/10.48597/CGA4-EUKH +https://doi.org/10.48597/72UT-PC3Y +https://doi.org/10.48597/JFJF-CSFJ +https://doi.org/10.48597/R6UH-BNDV +https://doi.org/10.48597/HKR2-QYMX +https://doi.org/10.48597/2RRA-4UBE +https://doi.org/10.48597/63GX-2MNS +https://doi.org/10.48597/6X36-ET76 +https://doi.org/10.48597/B2MA-MHTG +https://doi.org/10.48597/Z34V-6SKK +https://doi.org/10.48597/QP3Q-8BMC +https://doi.org/10.48597/WRBR-3M9F +https://doi.org/10.48597/CGDS-DYFV +https://doi.org/10.48597/RB8V-WJ7W +https://doi.org/10.48597/XXU3-TQS4 +https://doi.org/10.48597/BVDR-J6AG +https://doi.org/10.48597/BF3U-3ZYW +https://doi.org/10.48597/ATHD-HY2F +https://doi.org/10.48597/EGUK-U2KK +https://doi.org/10.48597/7CR9-GXMA +https://doi.org/10.48597/X9MN-PYK2 +https://doi.org/10.48597/7BQW-X4AQ +https://doi.org/10.48597/4SQW-24ZS +https://doi.org/10.48597/W4N3-EPEH +https://doi.org/10.48597/J3JZ-UVXA +https://doi.org/10.48597/TE5K-EKJ9 +https://doi.org/10.48597/HTA9-287H +https://doi.org/10.48597/ZX8G-MK3H +https://doi.org/10.48597/USXE-XB2W +https://doi.org/10.48597/RDXV-4DT5 +https://doi.org/10.48597/234N-MG86 +https://doi.org/10.48597/AGN8-AGQ5 +https://doi.org/10.48597/27FC-BC7B +https://doi.org/10.48597/GD7D-8U4F +https://doi.org/10.48597/JN5N-2SWE +https://doi.org/10.48597/BFUT-RUGA +https://doi.org/10.48597/XCSG-HMCJ +https://doi.org/10.48597/B46T-GN6D +https://doi.org/10.48597/M67E-CZSA +https://doi.org/10.48597/VPCN-Q7QT +https://doi.org/10.48597/KR98-D9Q8 +https://doi.org/10.48597/DRU9-BE3G +https://doi.org/10.48597/8S3E-VN5E +https://doi.org/10.48597/V3VX-EYMA +https://doi.org/10.48597/T5KM-WQHS +https://doi.org/10.48597/YDVG-78NK +https://doi.org/10.48597/KWYD-5FJ3 +https://doi.org/10.48597/EJ34-NVHT +https://doi.org/10.48597/UWA8-F3WP +https://doi.org/10.48597/GMZM-55AK +https://doi.org/10.48597/5CKW-BNV8 +https://doi.org/10.48597/FTG4-H58D +https://doi.org/10.48597/RMBQ-BW3R +https://doi.org/10.48597/672T-QS5Y +https://doi.org/10.48597/7DR8-MXHB +https://doi.org/10.48597/Q7HH-5UYK +https://doi.org/10.48597/3526-XCJ5 +https://doi.org/10.48597/4E3F-XH84 +https://doi.org/10.48597/QPJH-Z8AE +https://doi.org/10.48597/EJ5A-9YWR +https://doi.org/10.48597/V35T-JP82 +https://doi.org/10.48597/7ZZV-UNRX +https://doi.org/10.48597/7SK4-W72H +https://doi.org/10.48597/Y54T-ETZB +https://doi.org/10.48597/W4G9-JA5M +https://doi.org/10.48597/H8PJ-XRKV +https://doi.org/10.48597/6V86-7XAD +https://doi.org/10.48597/4KR5-UZBR +https://doi.org/10.48597/HZAK-4UNE +https://doi.org/10.48597/JSMH-VX6G +https://doi.org/10.48597/276E-JRBR +https://doi.org/10.48597/BZNF-M9X9 +https://doi.org/10.48597/2NKR-VB3A +https://doi.org/10.48597/VU67-ZJ7K +https://doi.org/10.48597/69S9-BMZ9 +https://doi.org/10.48597/84YX-5QPU +https://doi.org/10.48597/T9WW-26YA +https://doi.org/10.48597/7VT4-UJ88 +https://doi.org/10.48597/YH92-USSE +https://doi.org/10.48597/FHZD-2NF7 +https://doi.org/10.48597/U6P9-ZMY7 +https://doi.org/10.48597/C3WU-TCCT +https://doi.org/10.48597/8G4Q-DGT6 +https://doi.org/10.48597/H9QA-JBFF +https://doi.org/10.48597/Z6YW-7YPJ +https://doi.org/10.48597/YABP-VCND +https://doi.org/10.48597/B3EU-Z3U4 +https://doi.org/10.48597/5D2U-F5QZ +https://doi.org/10.48597/BMB7-F57Q +https://doi.org/10.48597/FPJ9-GMZR +https://doi.org/10.48597/SEF6-YAFV +https://doi.org/10.48597/3SSH-8D5U +https://doi.org/10.48597/DXZR-TCPK +https://doi.org/10.48597/57CA-8SEH +https://doi.org/10.48597/TJHW-JYF7 +https://doi.org/10.48597/GU8B-98ND +https://doi.org/10.48597/EREB-4RDC +https://doi.org/10.48597/CSPU-GXPF +https://doi.org/10.48597/Y7RX-6PQM +https://doi.org/10.48597/6HCH-9PK4 +https://doi.org/10.48597/S5R6-MVJS +https://doi.org/10.48597/MDXS-DP46 +https://doi.org/10.48597/ZF3B-J9X9 +https://doi.org/10.48597/SFF7-VN2M +https://doi.org/10.48597/72E2-VNKT +https://doi.org/10.48597/8QJH-KZYM +https://doi.org/10.48597/7GKZ-H46T +https://doi.org/10.48597/RQCD-8922 +https://doi.org/10.48597/HR64-75S6 +https://doi.org/10.48597/85UW-TW3C +https://doi.org/10.48597/CVFB-6T4P +https://doi.org/10.48597/K9H2-KNKP +https://doi.org/10.48597/PWCJ-5T2K +https://doi.org/10.48597/QFKT-M5XM +https://doi.org/10.48597/EBMR-HSPC +https://doi.org/10.48597/M8T8-3GNJ +https://doi.org/10.48597/JDU2-F8HW +https://doi.org/10.48597/2SRS-6BUZ +https://doi.org/10.48597/74CC-J55K +https://doi.org/10.48597/P495-DDRH +https://doi.org/10.48597/EZQS-6PW6 +https://doi.org/10.48597/RXBB-KC36 +https://doi.org/10.48597/F4ZH-AXPP +https://doi.org/10.48597/Q4P5-NJ32 +https://doi.org/10.48597/CTCC-ZRST +https://doi.org/10.48597/V7ES-2378 +https://doi.org/10.48597/MC3T-8BVU +https://doi.org/10.48597/C8HZ-S6N3 +https://doi.org/10.48597/M7JE-3VV6 +https://doi.org/10.48597/KGRA-24UE +https://doi.org/10.48597/T63P-DMZ8 +https://doi.org/10.48597/TC3P-AF5C +https://doi.org/10.48597/UT9J-2W7Q +https://doi.org/10.48597/PVD7-JZ7M +https://doi.org/10.48597/UE83-XHZM +https://doi.org/10.48597/MHZJ-M5Q5 +https://doi.org/10.48597/FAU6-N3KP +https://doi.org/10.48597/VQKE-JQ59 +https://doi.org/10.48597/R468-GREM +https://doi.org/10.48597/VU36-44FD +https://doi.org/10.48597/TYG8-T27K +https://doi.org/10.48597/255B-WPGJ +https://doi.org/10.48597/8JAR-FJ36 +https://doi.org/10.48597/PNFS-KT66 +https://doi.org/10.48597/CHES-PT7J +https://doi.org/10.48597/X8U9-HKJN +https://doi.org/10.48597/E3EG-8CKY +https://doi.org/10.48597/5QMD-6BF8 +https://doi.org/10.48597/HNAK-VW2Q +https://doi.org/10.48597/7FUT-NJ7W +https://doi.org/10.48597/7Y9P-PPMB +https://doi.org/10.48597/SQ3X-X5MB +https://doi.org/10.48597/6UKE-88KM +https://doi.org/10.48597/MBG7-UUCY +https://doi.org/10.48597/T66T-38MU +https://doi.org/10.48597/CY4Y-EPHU +https://doi.org/10.48597/7RNC-3ZA4 +https://doi.org/10.48597/EYPG-86RH +https://doi.org/10.48597/FDUY-9WEC +https://doi.org/10.48597/XST2-CURD +https://doi.org/10.48597/X3S2-ARAE +https://doi.org/10.48597/5C46-KXRH +https://doi.org/10.48597/MJCM-6WCA +https://doi.org/10.48597/UWM8-7UBG +https://doi.org/10.48597/YC6N-EU9X +https://doi.org/10.48597/T2G2-B6YV +https://doi.org/10.48597/ACA7-SSDB +https://doi.org/10.48597/YN8S-2SCS +https://doi.org/10.48597/KJAC-ZV3V +https://doi.org/10.48597/S3VZ-HSBM +https://doi.org/10.48597/QWS2-4K5V +https://doi.org/10.48597/NH2Y-AADA +https://doi.org/10.48597/3P9H-2SB7 +https://doi.org/10.48597/QN23-3ZVE +https://doi.org/10.48597/4HKF-2SUD +https://doi.org/10.48597/DTHD-MW4H +https://doi.org/10.48597/BZCP-H7YD +https://doi.org/10.48597/ZFNM-9352 +https://doi.org/10.48597/3JKP-GJGJ +https://doi.org/10.48597/2R3X-6HFW +https://doi.org/10.48597/5UWC-8ZK2 +https://doi.org/10.48597/7SUV-J53K +https://doi.org/10.48597/2K9R-EN29 +https://doi.org/10.48597/W6PB-BXTK +https://doi.org/10.48597/E7B7-URAV +https://doi.org/10.48597/3RWJ-BYSF +https://doi.org/10.48597/KE2W-3BHR +https://doi.org/10.48597/CBW2-AT7U +https://doi.org/10.48597/JBWC-J95J +https://doi.org/10.48597/2P9G-Q3BM +https://doi.org/10.48597/63GR-PEDZ +https://doi.org/10.48597/XEFZ-G559 +https://doi.org/10.48597/N28V-BCF2 +https://doi.org/10.48597/8GUH-GBY4 +https://doi.org/10.48597/DQPC-982U +https://doi.org/10.48597/N5Q8-SUKW +https://doi.org/10.48597/637A-E2YH +https://doi.org/10.48597/N54H-PNEB +https://doi.org/10.48597/QRCU-49NX +https://doi.org/10.48597/QW83-7F88 +https://doi.org/10.48597/9HQJ-8247 +https://doi.org/10.48597/PRF4-GGCJ +https://doi.org/10.48597/6BHX-7NTZ +https://doi.org/10.48597/22DT-RS7T +https://doi.org/10.48597/MBHY-Z4ZW +https://doi.org/10.48597/R2RG-QA7E +https://doi.org/10.48597/9HB4-WHQ7 +https://doi.org/10.48597/UNSC-M4VZ +https://doi.org/10.48597/FUMZ-2UYQ +https://doi.org/10.48597/BW28-PE8H +https://doi.org/10.48597/52UB-SUA8 +https://doi.org/10.48597/QFBY-7C7C +https://doi.org/10.48597/QUWT-88UW +https://doi.org/10.48597/ZRHA-VG4N +https://doi.org/10.48597/Q4BW-NEDX +https://doi.org/10.48597/SSDD-ZXJM +https://doi.org/10.48597/3DPG-9WXV +https://doi.org/10.48597/JATU-HGR3 +https://doi.org/10.48597/2GW9-7U3J +https://doi.org/10.48597/HU33-CD5J +https://doi.org/10.48597/7AFN-GNYF +https://doi.org/10.48597/63ZZ-68D7 +https://doi.org/10.48597/9QHX-Y8JH +https://doi.org/10.48597/66BN-ZGA9 +https://doi.org/10.48597/BWQK-WNEC +https://doi.org/10.48597/ECVG-F5QY +https://doi.org/10.48597/A9XH-VH4P +https://doi.org/10.48597/QRUZ-R53K +https://doi.org/10.48597/X6M4-3HJ4 +https://doi.org/10.48597/9TU4-5PZK +https://doi.org/10.48597/6AVH-YHF2 +https://doi.org/10.48597/665N-M8BX +https://doi.org/10.48597/9KN4-626Y +https://doi.org/10.48597/YQJE-Y5B7 +https://doi.org/10.48597/SJFA-PWMC +https://doi.org/10.48597/SW5Y-KF46 +https://doi.org/10.48597/9Q3C-K8U8 +https://doi.org/10.48597/7MXN-RKBB +https://doi.org/10.48597/CYSE-TP5V +https://doi.org/10.48597/VZ9G-KNF6 +https://doi.org/10.48597/XXRM-P5EE +https://doi.org/10.48597/6RXY-B4P5 +https://doi.org/10.48597/DZ3D-ZJ62 +https://doi.org/10.48597/55TU-R6SF +https://doi.org/10.48597/BC9P-F96P +https://doi.org/10.48597/UKXB-KHSZ +https://doi.org/10.48597/NM6K-8GK9 +https://doi.org/10.48597/425M-N3DZ +https://doi.org/10.48597/92UJ-HKXN +https://doi.org/10.48597/E6Z5-YJ4M +https://doi.org/10.48597/TN6N-UK45 +https://doi.org/10.48597/Y6YT-ZJPS +https://doi.org/10.48597/3AD4-CMU9 +https://doi.org/10.48597/Y4RN-9A2Q +https://doi.org/10.48597/GR8F-YFBJ +https://doi.org/10.48597/4UTT-5ZK6 +https://doi.org/10.48597/48JR-XKZU +https://doi.org/10.48597/B44Q-NSAQ +https://doi.org/10.48597/D4G3-XBRM +https://doi.org/10.48597/KJKA-SBVW +https://doi.org/10.48597/GJYF-JGXZ +https://doi.org/10.48597/JE42-2FPP +https://doi.org/10.48597/RM8M-897F +https://doi.org/10.48597/DAFV-VM9W +https://doi.org/10.48597/FEMU-9ZSG +https://doi.org/10.48597/3XAT-ZJUP +https://doi.org/10.48597/QVMF-DYGP +https://doi.org/10.48597/M9FE-FXKJ +https://doi.org/10.48597/NUP4-F2Y9 +https://doi.org/10.48597/RAH9-DBMG +https://doi.org/10.48597/CKKU-N3PB +https://doi.org/10.48597/HWT6-9WTW +https://doi.org/10.48597/E9JC-65YX +https://doi.org/10.48597/GB5U-AGP5 +https://doi.org/10.48597/QTBZ-WS3C +https://doi.org/10.48597/PUBR-43F4 +https://doi.org/10.48597/HJ2Z-MHPN +https://doi.org/10.48597/YQFA-A7XU +https://doi.org/10.48597/GA3A-BK32 +https://doi.org/10.48597/ZSQ9-WKXZ +https://doi.org/10.48597/DYW8-SM58 +https://doi.org/10.48597/YNZ5-BXTU +https://doi.org/10.48597/5CHA-F3UP +https://doi.org/10.48597/8BQX-4AHT +https://doi.org/10.48597/G3JC-YMVK +https://doi.org/10.48597/JUU5-J38V +https://doi.org/10.48597/M2PK-M3XG +https://doi.org/10.48597/G26M-G8T6 +https://doi.org/10.48597/N6MS-3H8H +https://doi.org/10.48597/TN9G-EPGZ +https://doi.org/10.48597/3QWP-C7WK +https://doi.org/10.48597/N3AK-XDP9 +https://doi.org/10.48597/34PD-26T5 +https://doi.org/10.48597/T5D9-3JNB +https://doi.org/10.48597/KXXF-EFWY +https://doi.org/10.48597/2365-QNHJ +https://doi.org/10.48597/YNN3-WCKW +https://doi.org/10.48597/XJ92-3PH6 +https://doi.org/10.48597/GQNQ-7U2R +https://doi.org/10.48597/4553-8PBZ +https://doi.org/10.48597/7WW3-VABP +https://doi.org/10.48597/TH7W-4Y3X +https://doi.org/10.48597/F5D9-GU5R +https://doi.org/10.48597/A4XG-7MG4 +https://doi.org/10.48597/XJNC-W87P +https://doi.org/10.48597/BWMV-EJGE +https://doi.org/10.48597/P37X-7XZG +https://doi.org/10.48597/Y4D4-BZPJ +https://doi.org/10.48597/5D8J-KAAH +https://doi.org/10.48597/K73F-ZCEP +https://doi.org/10.48597/HA9Q-ZS8X +https://doi.org/10.48597/XHXF-TZ28 +https://doi.org/10.48597/VDPN-B5RQ +https://doi.org/10.48597/3HY2-PDRV +https://doi.org/10.48597/DZZ5-6QYN +https://doi.org/10.48597/UUKM-J3W2 +https://doi.org/10.48597/87FS-JWM3 +https://doi.org/10.48597/U4S8-2EAS +https://doi.org/10.48597/W45N-APX5 +https://doi.org/10.48597/35YK-8TR6 +https://doi.org/10.48597/WR44-752R +https://doi.org/10.48597/8AYF-RCFA +https://doi.org/10.48597/4HSH-HGCW +https://doi.org/10.48597/GCPS-GCNC +https://doi.org/10.48597/DN2D-XNFF +https://doi.org/10.48597/SVKN-48MW +https://doi.org/10.48597/RYPC-5PNT +https://doi.org/10.48597/ZVA3-AB54 +https://doi.org/10.48597/4WEA-RDAW +https://doi.org/10.48597/K6XG-9VKH +https://doi.org/10.48597/DJZB-VG97 +https://doi.org/10.48597/TAY2-TYXZ +https://doi.org/10.48597/U93A-YQCM +https://doi.org/10.48597/DPPP-C6J5 +https://doi.org/10.48597/ZN8A-F8VN +https://doi.org/10.48597/3EBP-8MAN +https://doi.org/10.48597/G42A-23UC +https://doi.org/10.48597/Y53H-GG8R +https://doi.org/10.48597/9UBM-KFK3 +https://doi.org/10.48597/7BD5-J3HT +https://doi.org/10.48597/2WKV-MDJV +https://doi.org/10.48597/SXR8-AKD2 +https://doi.org/10.48597/9MDV-BWF7 +https://doi.org/10.48597/JU9D-88ZZ +https://doi.org/10.48597/XFDP-KY93 +https://doi.org/10.48597/KQ2M-FZH6 +https://doi.org/10.48597/TKYR-QHG4 +https://doi.org/10.48597/4KUS-DUJ3 +https://doi.org/10.48597/EFB6-3XKN +https://doi.org/10.48597/BMSW-5CCT +https://doi.org/10.48597/YAH8-CWPD +https://doi.org/10.48597/AAA2-EPN9 +https://doi.org/10.48597/M7F3-JQHN +https://doi.org/10.48597/U9KB-7H8R +https://doi.org/10.48597/HHWW-MTKW +https://doi.org/10.48597/99CM-W6QX +https://doi.org/10.48597/UJ5F-5EXW +https://doi.org/10.48597/TYZB-CRGC +https://doi.org/10.48597/M9DG-EASW +https://doi.org/10.48597/GBAA-Z6J9 +https://doi.org/10.48597/SJJB-4RPJ +https://doi.org/10.48597/PKEX-UJ4U +https://doi.org/10.48597/QQMH-4PWN +https://doi.org/10.48597/5EQZ-7YPG +https://doi.org/10.48597/YQFP-JE77 +https://doi.org/10.48597/QRJ4-ZAX7 +https://doi.org/10.48597/YTB5-4SBF +https://doi.org/10.48597/WXC4-FU64 +https://doi.org/10.48597/P2JA-48CX +https://doi.org/10.48597/KRCY-8QEF +https://doi.org/10.48597/AM9A-SKJX +https://doi.org/10.48597/3WK6-RM34 +https://doi.org/10.48597/DNR7-7WRW +https://doi.org/10.48597/2XRN-323C +https://doi.org/10.48597/EK4A-W9EU +https://doi.org/10.48597/P3E8-JBZ4 +https://doi.org/10.48597/9ZCY-MS24 +https://doi.org/10.48597/7NKN-MRTW +https://doi.org/10.48597/PT4B-B5XE +https://doi.org/10.48597/FBM7-6PWB +https://doi.org/10.48597/XAUX-8S7T +https://doi.org/10.48597/GXXZ-UR63 +https://doi.org/10.48597/RRQP-MCJJ +https://doi.org/10.48597/4CNS-QKFN +https://doi.org/10.48597/TKZT-G8H9 +https://doi.org/10.48597/KKQA-QHD6 +https://doi.org/10.48597/54ZV-2D72 +https://doi.org/10.48597/AS9P-72JC +https://doi.org/10.48597/HR3G-HESE +https://doi.org/10.48597/2KCM-2TDE +https://doi.org/10.48597/X4AH-45PU +https://doi.org/10.48597/8WVH-NKDR +https://doi.org/10.48597/GSMS-26NH +https://doi.org/10.48597/T2D8-3JGS +https://doi.org/10.48597/QK4D-EBD4 +https://doi.org/10.48597/DJ8C-M9W8 +https://doi.org/10.48597/7DWE-RVVC +https://doi.org/10.48597/55EM-P7K8 +https://doi.org/10.48597/86RG-7GTY +https://doi.org/10.48597/SRUW-GDRJ +https://doi.org/10.48597/PNCM-D4AD +https://doi.org/10.48597/B6R8-HYMV +https://doi.org/10.48597/CB75-3HW2 +https://doi.org/10.48597/VN2M-9JHQ +https://doi.org/10.48597/2ZU3-BWZQ +https://doi.org/10.48597/AENZ-36JW +https://doi.org/10.48597/78MY-39VQ +https://doi.org/10.48597/EMH6-T77F +https://doi.org/10.48597/86UA-65G3 +https://doi.org/10.48597/VW5N-CEJE +https://doi.org/10.48597/8PQF-99ED +https://doi.org/10.48597/FV7Q-5UTF +https://doi.org/10.48597/68DX-37Y9 +https://doi.org/10.48597/FEGK-CTER +https://doi.org/10.48597/MUV9-Q3CN +https://doi.org/10.48597/GQWX-H3J7 +https://doi.org/10.48597/ZK9M-Y733 +https://doi.org/10.48597/PK4G-9F5B +https://doi.org/10.48597/NEUG-GY39 +https://doi.org/10.48597/ECJP-X3PG +https://doi.org/10.48597/6A6E-EHHJ +https://doi.org/10.48597/G8RP-KYVW +https://doi.org/10.48597/ZFJY-GHWC +https://doi.org/10.48597/WCW8-MJ2F +https://doi.org/10.48597/TJHA-KXXS +https://doi.org/10.48597/QYH5-TM3U +https://doi.org/10.48597/PUSK-MF9J +https://doi.org/10.48597/HTK7-ZBNB +https://doi.org/10.48597/277C-PWEA +https://doi.org/10.48597/2ZQW-S82J +https://doi.org/10.48597/34D5-X5JM +https://doi.org/10.48597/88PY-QDTS +https://doi.org/10.48597/G7ZD-2PPK +https://doi.org/10.48597/D9AU-J7ZQ +https://doi.org/10.48597/5M89-ANSK +https://doi.org/10.48597/RVV6-M4Z8 +https://doi.org/10.48597/VKJ5-7HWT +https://doi.org/10.48597/CB7B-Y5DU +https://doi.org/10.48597/B7ZF-VAYK +https://doi.org/10.48597/WK4A-3G4U +https://doi.org/10.48597/A624-E6XJ +https://doi.org/10.48597/2KEB-RBM4 +https://doi.org/10.48597/7C5H-T8QR +https://doi.org/10.48597/RRSN-HDUT +https://doi.org/10.48597/ARJX-7XYF +https://doi.org/10.48597/M5Y7-BQ9V +https://doi.org/10.48597/7JZY-M4Y8 +https://doi.org/10.48597/PTVG-TKSC +https://doi.org/10.48597/DR6Q-VY9J +https://doi.org/10.48597/XTHR-CJVK +https://doi.org/10.48597/Z5Y4-MVDV +https://doi.org/10.48597/BFM8-XM6H +https://doi.org/10.48597/F9RF-DVVT +https://doi.org/10.48597/ASPN-BFM5 +https://doi.org/10.48597/4W9C-BPCF +https://doi.org/10.48597/EA3N-9Q2B +https://doi.org/10.48597/2D5G-GN4W +https://doi.org/10.48597/9QXH-F55F +https://doi.org/10.48597/8JQJ-QYCT +https://doi.org/10.48597/BXNN-JBJD +https://doi.org/10.48597/PVPY-JUG2 +https://doi.org/10.48597/R7FR-4HFQ +https://doi.org/10.48597/PJGV-HEKD +https://doi.org/10.48597/EUPQ-BE64 +https://doi.org/10.48597/TPGA-XM3N +https://doi.org/10.48597/T24B-22ZQ +https://doi.org/10.48597/UX4K-HED9 +https://doi.org/10.48597/8HEM-HTP9 +https://doi.org/10.48597/66K9-VVQT +https://doi.org/10.48597/AZYT-RHRB +https://doi.org/10.48597/FCKA-VV68 +https://doi.org/10.48597/X5SN-N2KY +https://doi.org/10.48597/2REA-UDX4 +https://doi.org/10.48597/PXQJ-PZW2 +https://doi.org/10.48597/NA55-EB23 +https://doi.org/10.48597/EWPW-4P3B +https://doi.org/10.48597/86G8-UEVF +https://doi.org/10.48597/Q2EJ-NZGM +https://doi.org/10.48597/9TXY-V5FU +https://doi.org/10.48597/TSXP-9QNR +https://doi.org/10.48597/8DZR-9VHM +https://doi.org/10.48597/HV6Y-S9DR +https://doi.org/10.48597/WNKA-2HTA +https://doi.org/10.48597/QGY9-YN2F +https://doi.org/10.48597/XX9R-6VK7 +https://doi.org/10.48597/GT9X-Z2VJ +https://doi.org/10.48597/SHVW-7QJD +https://doi.org/10.48597/9GFU-Y82Y +https://doi.org/10.48597/D8R6-V3RQ +https://doi.org/10.48597/T228-3V74 +https://doi.org/10.48597/BWRS-HEZG +https://doi.org/10.48597/SYW8-GVMK +https://doi.org/10.48597/F2VH-Q56U +https://doi.org/10.48597/KYD7-WHYG +https://doi.org/10.48597/P5KX-YDRX +https://doi.org/10.48597/J2QV-GMHE +https://doi.org/10.48597/7WMK-MHNP +https://doi.org/10.48597/BP2J-N4RB +https://doi.org/10.48597/UMWQ-KV9S +https://doi.org/10.48597/7XUK-4PQ2 +https://doi.org/10.48597/H793-J5QT +https://doi.org/10.48597/9T64-EK52 +https://doi.org/10.48597/MUHF-HDV6 +https://doi.org/10.48597/B3SM-ZA3P +https://doi.org/10.48597/4UJ2-NH8A +https://doi.org/10.48597/EERM-7ZXZ +https://doi.org/10.48597/U568-YMUB +https://doi.org/10.48597/9ASF-3TYB +https://doi.org/10.48597/FB7T-X33U +https://doi.org/10.48597/BTVX-4AVV +https://doi.org/10.48597/U698-U92H +https://doi.org/10.48597/BM32-DA8E +https://doi.org/10.48597/Z7MJ-CHES +https://doi.org/10.48597/HF9M-7UEQ +https://doi.org/10.48597/DWAJ-5AK8 +https://doi.org/10.48597/9NKG-H6NG +https://doi.org/10.48597/TGT4-HFXS +https://doi.org/10.48597/9VF9-DSM2 +https://doi.org/10.48597/AX4K-KP8D +https://doi.org/10.48597/A9NE-UFRH +https://doi.org/10.48597/MFR7-EQ4J +https://doi.org/10.48597/M2FC-CTQB +https://doi.org/10.48597/4PYV-TCJR +https://doi.org/10.48597/FWEM-3QEN +https://doi.org/10.48597/EKDP-BKRZ +https://doi.org/10.48597/9AK5-GJXS +https://doi.org/10.48597/ZK2F-XKYD +https://doi.org/10.48597/XVKG-26RF +https://doi.org/10.48597/GQ5K-6BHR +https://doi.org/10.48597/AXK9-DWNT +https://doi.org/10.48597/EDTW-ZQ5Y +https://doi.org/10.48597/JX59-2BNH +https://doi.org/10.48597/FVSU-DUEA +https://doi.org/10.48597/NJZ3-UGET +https://doi.org/10.48597/ZMU8-ADQ5 +https://doi.org/10.48597/NEQC-PC34 +https://doi.org/10.48597/EMW3-U74G +https://doi.org/10.48597/ECXZ-CGQJ +https://doi.org/10.48597/CV35-4MGF +https://doi.org/10.48597/WJZR-TUXN +https://doi.org/10.48597/3M9Z-648F +https://doi.org/10.48597/Y5M2-S5MF +https://doi.org/10.48597/7848-39SV +https://doi.org/10.48597/5VAS-4YRQ +https://doi.org/10.48597/74GS-KN4H +https://doi.org/10.48597/MQZY-8PAT +https://doi.org/10.48597/E3M4-GPQC +https://doi.org/10.48597/NDXJ-CB3D +https://doi.org/10.48597/ZH9B-8BVF +https://doi.org/10.48597/HCRP-JBYF +https://doi.org/10.48597/JPYV-U9HW +https://doi.org/10.48597/AZTR-ZTBP +https://doi.org/10.48597/43ED-2B7P +https://doi.org/10.48597/8U4M-EP2S +https://doi.org/10.48597/PZMS-HEWW +https://doi.org/10.48597/T8YX-WEEF +https://doi.org/10.48597/A8AA-X3SN +https://doi.org/10.48597/RZHS-33AR +https://doi.org/10.48597/GADZ-9X9P +https://doi.org/10.48597/CYCZ-GAWG +https://doi.org/10.48597/MJU9-WSNC +https://doi.org/10.48597/E92X-VQZN +https://doi.org/10.48597/CC9Q-8A7Q +https://doi.org/10.48597/2X9T-9FMC +https://doi.org/10.48597/Z9N3-9BEV +https://doi.org/10.48597/4PUD-9VF3 +https://doi.org/10.48597/K2M9-YD3V +https://doi.org/10.48597/EXBX-6DGS +https://doi.org/10.48597/USGY-T224 +https://doi.org/10.48597/EJJC-JAC3 +https://doi.org/10.48597/TCSY-YCCJ +https://doi.org/10.48597/CP7M-DSXP +https://doi.org/10.48597/XTXF-PFS3 +https://doi.org/10.48597/FNC3-4WQ3 +https://doi.org/10.48597/WKZ8-G9PV +https://doi.org/10.48597/JXHM-HNC5 +https://doi.org/10.48597/NTXV-AMGU +https://doi.org/10.48597/5F27-XU27 +https://doi.org/10.48597/CTYC-6Q2R +https://doi.org/10.48597/FMBX-GGFE +https://doi.org/10.48597/ZBUV-AW67 +https://doi.org/10.48597/UDKZ-NXTF +https://doi.org/10.48597/9BCA-BW8B +https://doi.org/10.48597/PX9X-C5C9 +https://doi.org/10.48597/VNKY-8PQV +https://doi.org/10.48597/6PQX-C6V2 +https://doi.org/10.48597/S5DH-GVZT +https://doi.org/10.48597/R8X9-HYNT +https://doi.org/10.48597/HG5Y-VNT8 +https://doi.org/10.48597/4KQM-RJBQ +https://doi.org/10.48597/XPEH-HGWE +https://doi.org/10.48597/CAYU-7GHG +https://doi.org/10.48597/QXYY-A46R +https://doi.org/10.48597/PH42-G596 +https://doi.org/10.48597/TCTU-DTQB +https://doi.org/10.48597/AKZA-6Q3V +https://doi.org/10.48597/FSMG-FG4F +https://doi.org/10.48597/VWNU-8WHT +https://doi.org/10.48597/KH9N-2ZTS +https://doi.org/10.48597/KUG7-98MB +https://doi.org/10.48597/FBWK-AG3G +https://doi.org/10.48597/2HPC-24FQ +https://doi.org/10.48597/VWT9-K5VM +https://doi.org/10.48597/BP8J-KP8P +https://doi.org/10.48597/EUXF-2E59 +https://doi.org/10.48597/ABJM-H75G +https://doi.org/10.48597/U7XX-TXQ4 +https://doi.org/10.48597/XQKY-X5ZG +https://doi.org/10.48597/VTCM-5TXK +https://doi.org/10.48597/SKBH-C6JD +https://doi.org/10.48597/QZF9-FRU3 +https://doi.org/10.48597/T7CA-ZBBH +https://doi.org/10.48597/8JAB-2VMZ +https://doi.org/10.48597/HAS7-GBA4 +https://doi.org/10.48597/NJST-EAHW +https://doi.org/10.48597/46GS-3KA4 +https://doi.org/10.48597/6BPZ-EB4W +https://doi.org/10.48597/HYQN-VAN3 +https://doi.org/10.48597/WTVV-52CZ +https://doi.org/10.48597/9HM9-RK9J +https://doi.org/10.48597/PXDN-D75H +https://doi.org/10.48597/NUZ5-JG5A +https://doi.org/10.48597/PB6T-HWCE +https://doi.org/10.48597/S227-PQTQ +https://doi.org/10.48597/WZ9V-YSBZ +https://doi.org/10.48597/75DP-TYS4 +https://doi.org/10.48597/YBQ5-PNGR +https://doi.org/10.48597/QKNM-SPV8 +https://doi.org/10.48597/HBPQ-7M75 +https://doi.org/10.48597/52RU-CSHA +https://doi.org/10.48597/X6R8-VYAH +https://doi.org/10.48597/464P-S2PV +https://doi.org/10.48597/R2BF-65SF +https://doi.org/10.48597/FRYS-ATU5 +https://doi.org/10.48597/89YZ-KK3Y +https://doi.org/10.48597/MPGT-YKGC +https://doi.org/10.48597/V3CX-X7MY +https://doi.org/10.48597/V3C8-R93A +https://doi.org/10.48597/AAZV-4MDQ +https://doi.org/10.48597/UJJB-UKX5 +https://doi.org/10.48597/YA6T-8NCJ +https://doi.org/10.48597/PFGD-GR33 +https://doi.org/10.48597/FWJY-BYFW +https://doi.org/10.48597/E56M-FCFD +https://doi.org/10.48597/TE9M-MC6M +https://doi.org/10.48597/UVA3-MVVN +https://doi.org/10.48597/GACN-Z2AN +https://doi.org/10.48597/VK8E-RH99 +https://doi.org/10.48597/HKVQ-8D8G +https://doi.org/10.48597/7ZVT-MB9X +https://doi.org/10.48597/JB5T-AT6J +https://doi.org/10.48597/FFX5-FCBK +https://doi.org/10.48597/FW46-RX63 +https://doi.org/10.48597/QWV7-NDKV +https://doi.org/10.48597/DS9Z-997T +https://doi.org/10.48597/W2HZ-NUCN +https://doi.org/10.48597/5X8H-FCTN +https://doi.org/10.48597/THF2-X5KE +https://doi.org/10.48597/A9TC-GRU4 +https://doi.org/10.48597/TNQF-MTUA +https://doi.org/10.48597/YJA7-QZQH +https://doi.org/10.48597/Z9V6-FWYV +https://doi.org/10.48597/SNCV-GNF6 +https://doi.org/10.48597/YEFQ-CNWM +https://doi.org/10.48597/SSTB-KXRM +https://doi.org/10.48597/BVCS-68AC +https://doi.org/10.48597/XMF4-T9UJ +https://doi.org/10.48597/USCT-H7RD +https://doi.org/10.48597/XTEZ-QEHV +https://doi.org/10.48597/J4JK-DVTJ +https://doi.org/10.48597/XQTV-6APT +https://doi.org/10.48597/F9DD-GNQH +https://doi.org/10.48597/RP9F-JDYP +https://doi.org/10.48597/3C65-U9UR +https://doi.org/10.48597/APS2-7FYB +https://doi.org/10.48597/8S5Y-VR6F +https://doi.org/10.48597/AFR9-5A7Y +https://doi.org/10.48597/2SPK-9GUX +https://doi.org/10.48597/43ZG-DKR8 +https://doi.org/10.48597/FQRQ-8YEM +https://doi.org/10.48597/NHDS-NDDQ +https://doi.org/10.48597/98NT-67YB +https://doi.org/10.48597/2BTD-8A7V +https://doi.org/10.48597/3YN6-5RKN +https://doi.org/10.48597/QMVC-CTJE +https://doi.org/10.48597/4RFW-UGCR +https://doi.org/10.48597/4Q65-H65H +https://doi.org/10.48597/5BUE-6A4X +https://doi.org/10.48597/6MPA-4G9Y +https://doi.org/10.48597/D3AJ-949X +https://doi.org/10.48597/CVX9-5VTU +https://doi.org/10.48597/EGTM-5FE2 +https://doi.org/10.48597/XEE6-B73P +https://doi.org/10.48597/P6FE-EDDF +https://doi.org/10.48597/2GVM-AV4T +https://doi.org/10.48597/RF2S-8JA8 +https://doi.org/10.48597/ECB2-D6BQ +https://doi.org/10.48597/4DRM-5ZSC +https://doi.org/10.48597/5YQG-6CCD +https://doi.org/10.48597/GA7Y-5N7B +https://doi.org/10.48597/YXJK-F2HR +https://doi.org/10.48597/VXD6-RB2W +https://doi.org/10.48597/72G5-DYBD +https://doi.org/10.48597/5QBW-XQSR +https://doi.org/10.48597/V58J-WCD4 +https://doi.org/10.48597/97CS-AM8G +https://doi.org/10.48597/SXT5-8R4X +https://doi.org/10.48597/SQQ5-2WT6 +https://doi.org/10.48597/6FXE-STM5 +https://doi.org/10.48597/GQ4Y-QMA3 +https://doi.org/10.48597/RQCZ-Z5KT +https://doi.org/10.48597/RKWR-HA8U +https://doi.org/10.48597/X962-H2CJ +https://doi.org/10.48597/E76A-YW4E +https://doi.org/10.48597/CZSJ-QV4T +https://doi.org/10.48597/N6Q7-GUNP +https://doi.org/10.48597/5YU8-WJE5 +https://doi.org/10.48597/9PA5-XN3H +https://doi.org/10.48597/CDH8-N96W +https://doi.org/10.48597/38AU-CVMR +https://doi.org/10.48597/8BFH-FTYN +https://doi.org/10.48597/DWN4-T22K +https://doi.org/10.48597/CR5B-AQ6V +https://doi.org/10.48597/HKK2-9355 +https://doi.org/10.48597/VBC6-RF5H +https://doi.org/10.48597/8VG3-GVSZ +https://doi.org/10.48597/6S9N-GBF7 +https://doi.org/10.48597/PC3Q-FZPP +https://doi.org/10.48597/48MV-QXEJ +https://doi.org/10.48597/R76G-YE8Z +https://doi.org/10.48597/8MRX-G92H +https://doi.org/10.48597/YPYH-4QP2 +https://doi.org/10.48597/PZM2-GBN4 +https://doi.org/10.48597/RGPG-85P8 +https://doi.org/10.48597/UN38-T7P7 +https://doi.org/10.48597/74PA-E27C +https://doi.org/10.48597/6SAN-8CYK +https://doi.org/10.48597/UAR3-Q5U7 +https://doi.org/10.48597/XP9X-Y625 +https://doi.org/10.48597/QGKP-FN6X +https://doi.org/10.48597/7H95-TQ3Z +https://doi.org/10.48597/X56M-8EN3 +https://doi.org/10.48597/4CQM-V8A6 +https://doi.org/10.48597/CCZ2-XRZA +https://doi.org/10.48597/RCV6-A36E +https://doi.org/10.48597/5PYT-AVSU +https://doi.org/10.48597/QR2F-KFYU +https://doi.org/10.48597/GN5R-8MVB +https://doi.org/10.48597/8VEK-XDTH +https://doi.org/10.48597/AWBE-PC97 +https://doi.org/10.48597/ZAKZ-XQJP +https://doi.org/10.48597/RMGQ-5HK3 +https://doi.org/10.48597/ABPV-XZX2 +https://doi.org/10.48597/2HD4-94S7 +https://doi.org/10.48597/HJV7-NQUU +https://doi.org/10.48597/QTPE-Y9AQ +https://doi.org/10.48597/GFAC-4D79 +https://doi.org/10.48597/MV26-8W3C +https://doi.org/10.48597/K2JY-D94Z +https://doi.org/10.48597/V6J8-X882 +https://doi.org/10.48597/T72J-HNNS +https://doi.org/10.48597/49AW-N3W8 +https://doi.org/10.48597/DR3U-EEDV +https://doi.org/10.48597/XEPY-2DK6 +https://doi.org/10.48597/PK5S-M2BH +https://doi.org/10.48597/K2UF-3CZM +https://doi.org/10.48597/WXJD-FWV3 +https://doi.org/10.48597/WXVJ-Y2JF +https://doi.org/10.48597/VVDR-7AQG +https://doi.org/10.48597/DQPC-7ET5 +https://doi.org/10.48597/EDUZ-S447 +https://doi.org/10.48597/4KSR-FGES +https://doi.org/10.48597/2B34-8T7T +https://doi.org/10.48597/4F7W-HAV8 +https://doi.org/10.48597/F5GC-RACY +https://doi.org/10.48597/KCWB-527J +https://doi.org/10.48597/KC2A-RDNQ +https://doi.org/10.48597/PD3U-KFMK +https://doi.org/10.48597/R7NF-CGE6 +https://doi.org/10.48597/CFXG-ASS4 +https://doi.org/10.48597/XNG9-PDDY +https://doi.org/10.48597/2NGM-ZSGQ +https://doi.org/10.48597/WU6K-MCH5 +https://doi.org/10.48597/B4EE-V3PN +https://doi.org/10.48597/AW64-Z7H6 +https://doi.org/10.48597/TA4F-4C74 +https://doi.org/10.48597/KGXA-P2Z8 +https://doi.org/10.48597/D85A-BNFD +https://doi.org/10.48597/4URK-2TEK +https://doi.org/10.48597/29HQ-CYX9 +https://doi.org/10.48597/U54Q-RY8X +https://doi.org/10.48597/8M26-R8CY +https://doi.org/10.48597/Z8B8-UAGG +https://doi.org/10.48597/QDHU-6K3G +https://doi.org/10.48597/J889-3SU3 +https://doi.org/10.48597/47RX-E99A +https://doi.org/10.48597/8QKN-QFH3 +https://doi.org/10.48597/6ZSW-R8ZP +https://doi.org/10.48597/AFZZ-FRGE +https://doi.org/10.48597/UZK7-BHZG +https://doi.org/10.48597/PUU5-4SUA +https://doi.org/10.48597/373J-YRNT +https://doi.org/10.48597/UZ5S-ENS2 +https://doi.org/10.48597/8CSE-ZME7 +https://doi.org/10.48597/TM39-8TMC +https://doi.org/10.48597/82AF-E47G +https://doi.org/10.48597/YER9-WXFH +https://doi.org/10.48597/ZZVH-MD82 +https://doi.org/10.48597/9DY7-GU6R +https://doi.org/10.48597/CZVC-SGDH +https://doi.org/10.48597/7N5C-R5XZ +https://doi.org/10.48597/Q44C-CKFB +https://doi.org/10.48597/VCQK-768W +https://doi.org/10.48597/N3RA-SXXK +https://doi.org/10.48597/QXD4-7J3Q +https://doi.org/10.48597/V3WK-8AU9 +https://doi.org/10.48597/N497-43MA +https://doi.org/10.48597/45KN-TMX7 +https://doi.org/10.48597/6B5K-98EY +https://doi.org/10.48597/CMSZ-X8EM +https://doi.org/10.48597/A2VX-3VAN +https://doi.org/10.48597/KJ5X-GFN9 +https://doi.org/10.48597/H4R6-DFU8 +https://doi.org/10.48597/N466-4X7A +https://doi.org/10.48597/RRHN-NSNN +https://doi.org/10.48597/DDSG-4YET +https://doi.org/10.48597/UUMF-7MQP +https://doi.org/10.48597/W44J-SXTX +https://doi.org/10.48597/5AYJ-XQX8 +https://doi.org/10.48597/ESAE-CZ4C +https://doi.org/10.48597/5ZVS-HWJQ +https://doi.org/10.48597/Q4XQ-5KVE +https://doi.org/10.48597/ES8V-RZSQ +https://doi.org/10.48597/Z5DR-9E59 +https://doi.org/10.48597/S2TB-39UX +https://doi.org/10.48597/R8J7-THQ8 +https://doi.org/10.48597/38A8-N2FH +https://doi.org/10.48597/F6KZ-FDG8 +https://doi.org/10.48597/9BU9-BXZK +https://doi.org/10.48597/Q7BS-CNA5 +https://doi.org/10.48597/UEGG-FJ7X +https://doi.org/10.48597/SYKG-RZBD +https://doi.org/10.48597/87PH-267C +https://doi.org/10.48597/DNNK-MY5Y +https://doi.org/10.48597/45TQ-K5SS +https://doi.org/10.48597/F29Z-X5C4 +https://doi.org/10.48597/R3UY-ATAA +https://doi.org/10.48597/SVKF-RG8C +https://doi.org/10.48597/9BSR-VVW8 +https://doi.org/10.48597/W3ZP-KC2E +https://doi.org/10.48597/5936-E7TV +https://doi.org/10.48597/HNFZ-GBZY +https://doi.org/10.48597/69DZ-46H2 +https://doi.org/10.48597/NQQA-BJJG +https://doi.org/10.48597/GV9M-J6NG +https://doi.org/10.48597/6W5J-39GK +https://doi.org/10.48597/B9MB-YCPZ +https://doi.org/10.48597/AMKB-557Z +https://doi.org/10.48597/5V8W-WCW6 +https://doi.org/10.48597/6GW4-NRHT +https://doi.org/10.48597/BWET-XJDF +https://doi.org/10.48597/K8BF-SZ3D +https://doi.org/10.48597/6DS8-KGYD +https://doi.org/10.48597/6AVN-YF5W +https://doi.org/10.48597/A6MP-BCAQ +https://doi.org/10.48597/5VSZ-BH33 +https://doi.org/10.48597/8UEM-E3V4 +https://doi.org/10.48597/EW55-3XUY +https://doi.org/10.48597/8BYU-QW7W +https://doi.org/10.48597/XKVU-AY2W +https://doi.org/10.48597/HAMC-EGJ4 +https://doi.org/10.48597/SWC3-V84A +https://doi.org/10.48597/SZ36-EB7H +https://doi.org/10.48597/UFJH-XYF7 +https://doi.org/10.48597/DR57-APT3 +https://doi.org/10.48597/5ZAD-2G6U +https://doi.org/10.48597/X4Y2-KZ9R +https://doi.org/10.48597/XBEV-NWSP +https://doi.org/10.48597/X4AZ-8VKJ +https://doi.org/10.48597/9R7D-PZRV +https://doi.org/10.48597/UPF6-P65Q +https://doi.org/10.48597/7M2A-YGDC +https://doi.org/10.48597/QM5Y-43HZ +https://doi.org/10.48597/689H-5765 +https://doi.org/10.48597/EP4S-BTBJ +https://doi.org/10.48597/E2HX-339Y +https://doi.org/10.48597/RBJ7-2H67 +https://doi.org/10.48597/P79U-2CUK +https://doi.org/10.48597/W8H4-FJHM +https://doi.org/10.48597/UUB9-XZSS +https://doi.org/10.48597/QBWR-DCMG +https://doi.org/10.48597/AV5J-K94R +https://doi.org/10.48597/SUE9-3VKC +https://doi.org/10.48597/ZZFZ-RUW8 +https://doi.org/10.48597/3XVJ-QQMF +https://doi.org/10.48597/CNRK-6RJB +https://doi.org/10.48597/Q4BN-8JZR +https://doi.org/10.48597/C9S8-KPZT +https://doi.org/10.48597/C9W4-Z5V7 +https://doi.org/10.48597/2TE6-B898 +https://doi.org/10.48597/P4KP-3PFR +https://doi.org/10.48597/YZH9-ZESW +https://doi.org/10.48597/XNUV-PNVE +https://doi.org/10.48597/RN2M-GJQZ +https://doi.org/10.48597/VZ3H-PKSA +https://doi.org/10.48597/2AVG-69HA +https://doi.org/10.48597/SWZW-GR2J +https://doi.org/10.48597/78E4-HR53 +https://doi.org/10.48597/XKPS-T5M4 +https://doi.org/10.48597/X92V-FR2P +https://doi.org/10.48597/4A6J-36KH +https://doi.org/10.48597/YDNS-BQEK +https://doi.org/10.48597/U5FV-S3PJ +https://doi.org/10.48597/P4FZ-Y8RE +https://doi.org/10.48597/6SJT-H4XT +https://doi.org/10.48597/MQWA-3Z39 +https://doi.org/10.48597/9MCB-Y68Q +https://doi.org/10.48597/74V9-EFR9 +https://doi.org/10.48597/J9EQ-S62S +https://doi.org/10.48597/Z6DJ-MZG8 +https://doi.org/10.48597/D855-P3DF +https://doi.org/10.48597/7M8W-VK6C +https://doi.org/10.48597/WQDN-WUN2 +https://doi.org/10.48597/XV3G-2FJM +https://doi.org/10.48597/RSTY-V7MF +https://doi.org/10.48597/5U4T-APJN +https://doi.org/10.48597/UB47-US6E +https://doi.org/10.48597/8UW6-YGRW +https://doi.org/10.48597/K83G-VG9Y +https://doi.org/10.48597/UTPJ-Y3W9 +https://doi.org/10.48597/TBY5-TP4P +https://doi.org/10.48597/SZMN-H7VW +https://doi.org/10.48597/ZYCM-6MUJ +https://doi.org/10.48597/BY5X-YU4C +https://doi.org/10.48597/JSAW-KPJN +https://doi.org/10.48597/8E4M-ZPY2 +https://doi.org/10.48597/ZWHD-9P8H +https://doi.org/10.48597/EW8W-XQKB +https://doi.org/10.48597/YKZH-3TJW +https://doi.org/10.48597/MBTF-EUV6 +https://doi.org/10.48597/C669-HCQP +https://doi.org/10.48597/U2ZC-DM4X +https://doi.org/10.48597/MSJY-ATJ9 +https://doi.org/10.48597/652Q-WT6T +https://doi.org/10.48597/D7GM-65BS +https://doi.org/10.48597/PARA-XZKA +https://doi.org/10.48597/ND9X-698N +https://doi.org/10.48597/VAXN-96DC +https://doi.org/10.48597/NM33-ZE6S +https://doi.org/10.48597/UAG2-QD7Y +https://doi.org/10.48597/49GN-5D39 +https://doi.org/10.48597/8G32-KM73 +https://doi.org/10.48597/SA97-8X7B +https://doi.org/10.48597/7HGU-44F7 +https://doi.org/10.48597/2MEF-WBNS +https://doi.org/10.48597/ZYXT-TUU2 +https://doi.org/10.48597/C44Z-QUXH +https://doi.org/10.48597/XXF9-QFG5 +https://doi.org/10.48597/N4VB-RUG5 +https://doi.org/10.48597/AEBJ-CS5X +https://doi.org/10.48597/C985-SAJJ +https://doi.org/10.48597/ZZSK-QT2A +https://doi.org/10.48597/EBB4-8SQV +https://doi.org/10.48597/MUYM-BHZE +https://doi.org/10.48597/ZZQY-CPQB +https://doi.org/10.48597/WESH-NHMW +https://doi.org/10.48597/JEW6-X64B +https://doi.org/10.48597/G37A-HHJY +https://doi.org/10.48597/SU2B-J8BF +https://doi.org/10.48597/QZGN-8GKZ +https://doi.org/10.48597/4WZZ-YCUA +https://doi.org/10.48597/66S3-QFAK +https://doi.org/10.48597/4H55-38CV +https://doi.org/10.48597/328F-SVPE +https://doi.org/10.48597/U55X-MJJK +https://doi.org/10.48597/8CXN-Y9R9 +https://doi.org/10.48597/J9KN-GNXT +https://doi.org/10.48597/FYKJ-9K5B +https://doi.org/10.48597/RRNT-4DDA +https://doi.org/10.48597/8PGB-KNHC +https://doi.org/10.48597/683T-6U2N +https://doi.org/10.48597/ZC5H-5EWN +https://doi.org/10.48597/U8PG-7R3R +https://doi.org/10.48597/YPZM-AK5M +https://doi.org/10.48597/597D-98KD +https://doi.org/10.48597/VA2B-DZJA +https://doi.org/10.48597/TZUT-2J6H +https://doi.org/10.48597/BNK9-SS4E +https://doi.org/10.48597/QZSJ-MD2J +https://doi.org/10.48597/EPKJ-3M7D +https://doi.org/10.48597/PY27-3VCU +https://doi.org/10.48597/G4AW-J2UV +https://doi.org/10.48597/STDG-8XZP +https://doi.org/10.48597/AET7-YPVE +https://doi.org/10.48597/EFU4-WQCW +https://doi.org/10.48597/BKN5-PY7G +https://doi.org/10.48597/3KWQ-A6U3 +https://doi.org/10.48597/8T2V-UPSJ +https://doi.org/10.48597/8TYQ-CB6U +https://doi.org/10.48597/Q4NF-HHF5 +https://doi.org/10.48597/GB2X-ME92 +https://doi.org/10.48597/PG5H-9CSH +https://doi.org/10.48597/QF74-6TXP +https://doi.org/10.48597/8QCM-UXPG +https://doi.org/10.48597/E9UW-HQ77 +https://doi.org/10.48597/VH4K-KAGT +https://doi.org/10.48597/SEYS-FHHF +https://doi.org/10.48597/95NT-WMRT +https://doi.org/10.48597/5AZX-NKF9 +https://doi.org/10.48597/SU7H-EXTP +https://doi.org/10.48597/5HTG-C5EQ +https://doi.org/10.48597/AJDP-2UEX +https://doi.org/10.48597/TSK9-AT93 +https://doi.org/10.48597/V96R-X3B4 +https://doi.org/10.48597/5UV6-HF7P +https://doi.org/10.48597/QDMU-29GW +https://doi.org/10.48597/QTSD-6YND +https://doi.org/10.48597/KJ4N-5YHE +https://doi.org/10.48597/SJEM-CQD6 +https://doi.org/10.48597/D662-5KZM +https://doi.org/10.48597/UJFK-7KEN +https://doi.org/10.48597/XSF9-Y6G2 +https://doi.org/10.48597/SHX9-4D85 +https://doi.org/10.48597/3FDA-FEVV +https://doi.org/10.48597/NKFT-DYQV +https://doi.org/10.48597/ZP9B-PYM3 +https://doi.org/10.48597/B3AJ-DXHS +https://doi.org/10.48597/9U7V-64G5 +https://doi.org/10.48597/22C6-VY3E +https://doi.org/10.48597/AST6-AK2K +https://doi.org/10.48597/C3EU-GJQX +https://doi.org/10.48597/B4QQ-D5PH +https://doi.org/10.48597/9NCJ-Z6HT +https://doi.org/10.48597/NNF7-QBEB +https://doi.org/10.48597/364S-JB47 +https://doi.org/10.48597/6MGR-ZTF7 +https://doi.org/10.48597/YTVN-YDVT +https://doi.org/10.48597/EFDQ-VBQF +https://doi.org/10.48597/8TJ7-2XQX +https://doi.org/10.48597/MTUE-WAYG +https://doi.org/10.48597/JXXT-EMUE +https://doi.org/10.48597/YHWH-FS6H +https://doi.org/10.48597/UHJZ-F6M4 +https://doi.org/10.48597/88HY-8H4T +https://doi.org/10.48597/AVVG-JCP5 +https://doi.org/10.48597/VYB5-VANG +https://doi.org/10.48597/92PE-DP5F +https://doi.org/10.48597/CBFG-95HZ +https://doi.org/10.48597/BKM8-AEAT +https://doi.org/10.48597/FRP7-QETB +https://doi.org/10.48597/JXRH-M4CH +https://doi.org/10.48597/UDC9-WG58 +https://doi.org/10.48597/3X7Y-EBHG +https://doi.org/10.48597/PWN7-8YQ3 +https://doi.org/10.48597/5AD6-A9G2 +https://doi.org/10.48597/T9WF-6VDM +https://doi.org/10.48597/MHT7-PUZC +https://doi.org/10.48597/NENA-3EBP +https://doi.org/10.48597/WSKR-QJNN +https://doi.org/10.48597/5NXH-HWQ4 +https://doi.org/10.48597/TBRD-HQMJ +https://doi.org/10.48597/PQYV-PB4R +https://doi.org/10.48597/NUJX-B8SW +https://doi.org/10.48597/HTCU-KPUV +https://doi.org/10.48597/4SSA-A5AN +https://doi.org/10.48597/734K-KN4F +https://doi.org/10.48597/H5GJ-5PYS +https://doi.org/10.48597/MMFV-UX3U +https://doi.org/10.48597/3B3K-KBMM +https://doi.org/10.48597/8MQ3-TVWW +https://doi.org/10.48597/AX4R-47WM +https://doi.org/10.48597/JG28-F9WF +https://doi.org/10.48597/J7CC-HTHM +https://doi.org/10.48597/YWMY-NSTK +https://doi.org/10.48597/HTNE-497H +https://doi.org/10.48597/A5BC-RQFZ +https://doi.org/10.48597/D45Q-MBZ5 +https://doi.org/10.48597/RM6G-8CY3 +https://doi.org/10.48597/X7CQ-ENTS +https://doi.org/10.48597/A2C3-TZ2D +https://doi.org/10.48597/ES6N-PDMW +https://doi.org/10.48597/72DV-R9GW +https://doi.org/10.48597/GJBQ-UB55 +https://doi.org/10.48597/WNU6-AP9C +https://doi.org/10.48597/HNUW-DENW +https://doi.org/10.48597/ZMDF-A8PU +https://doi.org/10.48597/MFG8-YQRK +https://doi.org/10.48597/7ZWC-ZFW2 +https://doi.org/10.48597/VSWT-F5NM +https://doi.org/10.48597/R9YY-Z4AK +https://doi.org/10.48597/5JSB-4CBM +https://doi.org/10.48597/YQC7-S8HM +https://doi.org/10.48597/GQB9-JKRC +https://doi.org/10.48597/K8SN-XQWJ +https://doi.org/10.48597/RPUD-UBAG +https://doi.org/10.48597/8PRP-JWGD +https://doi.org/10.48597/FCRZ-NNJZ +https://doi.org/10.48597/ZKE2-GUC8 +https://doi.org/10.48597/2S6E-BE65 +https://doi.org/10.48597/MTQD-9FSW +https://doi.org/10.48597/VHTF-GKGW +https://doi.org/10.48597/RHGR-NZAJ +https://doi.org/10.48597/W5MN-WW8A +https://doi.org/10.48597/VMJV-3XMY +https://doi.org/10.48597/D6M7-A9ND +https://doi.org/10.48597/PKEQ-S9PT +https://doi.org/10.48597/7KND-4CCV +https://doi.org/10.48597/4QJ3-RHC8 +https://doi.org/10.48597/QCGR-PWK3 +https://doi.org/10.48597/YUKS-PFGH +https://doi.org/10.48597/UFGG-HD8N +https://doi.org/10.48597/EQWK-TV29 +https://doi.org/10.48597/WWFN-Z9KY +https://doi.org/10.48597/GKBC-4WTU +https://doi.org/10.48597/6BU4-9EAP +https://doi.org/10.48597/RR7W-3J39 +https://doi.org/10.48597/3WRM-H6VU +https://doi.org/10.48597/UU6A-AA49 +https://doi.org/10.48597/FU46-HZE4 +https://doi.org/10.48597/PMZ6-ZYVD +https://doi.org/10.48597/3ZYN-QW99 +https://doi.org/10.48597/YZ22-XSVU +https://doi.org/10.48597/Z6XM-2CQP +https://doi.org/10.48597/PEQG-9XKC +https://doi.org/10.48597/QVKZ-H8SG +https://doi.org/10.48597/UGVY-E92W +https://doi.org/10.48597/H8QX-ZFPC +https://doi.org/10.48597/EWYX-GJYM +https://doi.org/10.48597/XGJH-SWEZ +https://doi.org/10.48597/M5J5-T8MN +https://doi.org/10.48597/ANKE-XXT8 +https://doi.org/10.48597/ZN3G-8TYP +https://doi.org/10.48597/638J-E6YQ +https://doi.org/10.48597/UP4S-83KW +https://doi.org/10.48597/4JGN-ZDHF +https://doi.org/10.48597/3SPQ-YXUE +https://doi.org/10.48597/9UW9-AQ3J +https://doi.org/10.48597/ZSXV-VDEX +https://doi.org/10.48597/UYGH-2HWV +https://doi.org/10.48597/ZEV4-DF6X +https://doi.org/10.48597/Y2C3-R86T +https://doi.org/10.48597/ABFP-QNKK +https://doi.org/10.48597/JX4Z-PTFM +https://doi.org/10.48597/WZ3N-E6T8 +https://doi.org/10.48597/5GXJ-39J6 +https://doi.org/10.48597/Q3Z3-AW4T +https://doi.org/10.48597/TNPK-SYFW +https://doi.org/10.48597/K4YN-5ZZH +https://doi.org/10.48597/AJN4-PMSS +https://doi.org/10.48597/BZDF-2KWC +https://doi.org/10.48597/DY3U-CUDR +https://doi.org/10.48597/X5DQ-UWMM +https://doi.org/10.48597/75QE-CF95 +https://doi.org/10.48597/UDT9-D4A6 +https://doi.org/10.48597/DPEW-KZYQ +https://doi.org/10.48597/YKSY-4ZRU +https://doi.org/10.48597/GKAW-6KE6 +https://doi.org/10.48597/YSVD-JG97 +https://doi.org/10.48597/9D4U-CHWF +https://doi.org/10.48597/94FF-3TXD +https://doi.org/10.48597/ZWHV-8U8E +https://doi.org/10.48597/B86H-KZ85 +https://doi.org/10.48597/48RX-H7WX +https://doi.org/10.48597/4VQ9-FCZB +https://doi.org/10.48597/Z2M8-75RB +https://doi.org/10.48597/7EHH-B3M9 +https://doi.org/10.48597/EBYR-V7F4 +https://doi.org/10.48597/H4F9-6D76 +https://doi.org/10.48597/X3WW-4PAS +https://doi.org/10.48597/RAZG-HNBF +https://doi.org/10.48597/UPK5-3SE9 +https://doi.org/10.48597/FUT6-63EN +https://doi.org/10.48597/NMW2-TXB2 +https://doi.org/10.48597/TNAF-2VE3 +https://doi.org/10.48597/MRJT-N5M3 +https://doi.org/10.48597/PGTC-CMC6 +https://doi.org/10.48597/2Z4K-VFC3 +https://doi.org/10.48597/6KW6-W425 +https://doi.org/10.48597/FNGR-5R35 +https://doi.org/10.48597/GZN9-ATEN +https://doi.org/10.48597/CNW5-7FRG +https://doi.org/10.48597/PYS8-4N8W +https://doi.org/10.48597/3XUW-KFBA +https://doi.org/10.48597/TB7W-5KSX +https://doi.org/10.48597/4MPH-FPZ9 +https://doi.org/10.48597/U5CM-M4ZX +https://doi.org/10.48597/4FQ7-94FC +https://doi.org/10.48597/8ZAT-SQVB +https://doi.org/10.48597/WPFY-Q9XB +https://doi.org/10.48597/YJJT-J2WR +https://doi.org/10.48597/PJYH-HQQT +https://doi.org/10.48597/8ZEV-8NHJ +https://doi.org/10.48597/2DTD-VR84 +https://doi.org/10.48597/GU7A-PAKT +https://doi.org/10.48597/8E5D-PEMX +https://doi.org/10.48597/B3UT-3R4S +https://doi.org/10.48597/FC6F-EVD3 +https://doi.org/10.48597/C34Z-2QZE +https://doi.org/10.48597/VRHY-SNVQ +https://doi.org/10.48597/TAWF-MFDW +https://doi.org/10.48597/6K6A-WTYU +https://doi.org/10.48597/GDNV-J56M +https://doi.org/10.48597/V8B5-RK8K +https://doi.org/10.48597/KBJY-FC8C +https://doi.org/10.48597/U8ZU-EWE7 +https://doi.org/10.48597/FBYN-7KXT +https://doi.org/10.48597/WQA6-Z8TW +https://doi.org/10.48597/X665-3V9H +https://doi.org/10.48597/WS5H-ZKJT +https://doi.org/10.48597/TCHU-VJJK +https://doi.org/10.48597/AWU4-79H8 +https://doi.org/10.48597/M5D2-C9DM +https://doi.org/10.48597/PSTQ-JJKB +https://doi.org/10.48597/YQQV-3V3S +https://doi.org/10.48597/DGJU-RWUT +https://doi.org/10.48597/RS4K-JWNE +https://doi.org/10.48597/XD74-VFQ5 +https://doi.org/10.48597/4EXV-D3FJ +https://doi.org/10.48597/G2ZR-52SE +https://doi.org/10.48597/8B3N-TTJK +https://doi.org/10.48597/4G88-DVAC +https://doi.org/10.48597/KF8N-5XUG +https://doi.org/10.48597/CDP4-VECK +https://doi.org/10.48597/Z3PZ-8MK5 +https://doi.org/10.48597/KNUJ-43SP +https://doi.org/10.48597/M5JF-S9QS +https://doi.org/10.48597/GZN9-URXH +https://doi.org/10.48597/GRH4-CFXS +https://doi.org/10.48597/CZBA-PYJA +https://doi.org/10.48597/7U9J-ZGRE +https://doi.org/10.48597/EVE7-E6J4 +https://doi.org/10.48597/TG73-4F4T +https://doi.org/10.48597/M5ES-TCNV +https://doi.org/10.48597/QMWC-8Y4C +https://doi.org/10.48597/6V8W-N9VM +https://doi.org/10.48597/VNYM-9HQR +https://doi.org/10.48597/JNA7-KMN2 +https://doi.org/10.48597/HFYN-99CS +https://doi.org/10.48597/4Z42-MPBV +https://doi.org/10.48597/8Z6V-PKJK +https://doi.org/10.48597/S7GU-B2Q4 +https://doi.org/10.48597/T6Q7-ZCQY +https://doi.org/10.48597/MZJ2-KS7Y +https://doi.org/10.48597/9KJM-KPAW +https://doi.org/10.48597/8SCE-2UPZ +https://doi.org/10.48597/ZKUX-RCNF +https://doi.org/10.48597/8XSG-MG3Z +https://doi.org/10.48597/4J6H-QND4 +https://doi.org/10.48597/E7JS-CQNM +https://doi.org/10.48597/RQ5U-QCXU +https://doi.org/10.48597/6QBB-M95Q +https://doi.org/10.48597/MEQM-XCJK +https://doi.org/10.48597/7Q9Y-AUA7 +https://doi.org/10.48597/CJME-5NG2 +https://doi.org/10.48597/DWGP-49UX +https://doi.org/10.48597/SGDR-NRU6 +https://doi.org/10.48597/2J47-78E9 +https://doi.org/10.48597/3MRM-DSSK +https://doi.org/10.48597/A7VM-VET5 +https://doi.org/10.48597/XZXN-5N2H +https://doi.org/10.48597/KAFH-YQZ6 +https://doi.org/10.48597/D4S8-KHXT +https://doi.org/10.48597/HG9T-995E +https://doi.org/10.48597/QYHV-GUDR +https://doi.org/10.48597/ZJJG-SB55 +https://doi.org/10.48597/J4N2-APFY +https://doi.org/10.48597/V4W4-NVX6 +https://doi.org/10.48597/KQR6-D5JV +https://doi.org/10.48597/3VTB-N9P6 +https://doi.org/10.48597/AT5H-REQQ +https://doi.org/10.48597/B4P4-R2UV +https://doi.org/10.48597/SVZC-QG8F +https://doi.org/10.48597/FBK7-Y4FW +https://doi.org/10.48597/3RZJ-5THM +https://doi.org/10.48597/W8DF-KKEP +https://doi.org/10.48597/DCP8-K5V9 +https://doi.org/10.48597/UW9P-932X +https://doi.org/10.48597/4PQA-ENTG +https://doi.org/10.48597/J7NS-RJCF +https://doi.org/10.48597/PEWM-J6HU +https://doi.org/10.48597/THUT-ZU6W +https://doi.org/10.48597/9FGK-NAA9 +https://doi.org/10.48597/RA3C-RYMM +https://doi.org/10.48597/Z7MK-7KBT +https://doi.org/10.48597/C26V-JV88 +https://doi.org/10.48597/X63Z-CYMY +https://doi.org/10.48597/P2JD-KFAB +https://doi.org/10.48597/CAYV-KPQR +https://doi.org/10.48597/5745-N9JS +https://doi.org/10.48597/4DG3-98ZG +https://doi.org/10.48597/UH4K-6S6G +https://doi.org/10.48597/VSNN-FX6T +https://doi.org/10.48597/P2US-TYS2 +https://doi.org/10.48597/J8VM-CXE5 +https://doi.org/10.48597/TD98-6XHZ +https://doi.org/10.48597/WKA2-B8ZN +https://doi.org/10.48597/5SJG-2XSP +https://doi.org/10.48597/P6JQ-3RKB +https://doi.org/10.48597/8FC7-JSWW +https://doi.org/10.48597/EJ7Y-EC8G +https://doi.org/10.48597/FTUY-6BFT +https://doi.org/10.48597/SNE8-D8J2 +https://doi.org/10.48597/8N2V-EF4A +https://doi.org/10.48597/HG84-ZHG5 +https://doi.org/10.48597/69F4-YD7M +https://doi.org/10.48597/3BV4-HYY7 +https://doi.org/10.48597/ZY4G-DCTB +https://doi.org/10.48597/Q9NV-AC8X +https://doi.org/10.48597/GDMK-U87B +https://doi.org/10.48597/3VC3-97PC +https://doi.org/10.48597/8W8N-H5N9 +https://doi.org/10.48597/58C7-DKYF +https://doi.org/10.48597/7X2K-KGQ5 +https://doi.org/10.48597/4T4D-WAX4 +https://doi.org/10.48597/J8EP-HR89 +https://doi.org/10.48597/22WH-UHEZ +https://doi.org/10.48597/3FKQ-SAGV +https://doi.org/10.48597/4XM8-QV7B +https://doi.org/10.48597/BPDB-G6V6 +https://doi.org/10.48597/X3XN-CFNY +https://doi.org/10.48597/QVYH-KZQR +https://doi.org/10.48597/7T6Q-JHVG +https://doi.org/10.48597/9USM-5HG6 +https://doi.org/10.48597/SPQ9-RMJ2 +https://doi.org/10.48597/RSFZ-RV8Q +https://doi.org/10.48597/FJW7-JAWH +https://doi.org/10.48597/B5J5-4786 +https://doi.org/10.48597/8SQU-2DP9 +https://doi.org/10.48597/BCH5-TZMB +https://doi.org/10.48597/3U2K-D5VM +https://doi.org/10.48597/74DR-JDN3 +https://doi.org/10.48597/SA8B-XUPK +https://doi.org/10.48597/45EK-DZZN +https://doi.org/10.48597/FDZ7-A6P9 +https://doi.org/10.48597/QFBB-FG95 +https://doi.org/10.48597/8HZW-6AVZ +https://doi.org/10.48597/WM5T-237B +https://doi.org/10.48597/Z24X-UQM7 +https://doi.org/10.48597/7GAN-T3N5 +https://doi.org/10.48597/H75V-DN8Z +https://doi.org/10.48597/FE62-AXAY +https://doi.org/10.48597/SQAE-J9WA +https://doi.org/10.48597/28FW-Y2EY +https://doi.org/10.48597/AG4Y-HA5V +https://doi.org/10.48597/9PRF-JPTD +https://doi.org/10.48597/MNSQ-7ZRZ +https://doi.org/10.48597/UPFF-9CSD +https://doi.org/10.48597/52D8-Y7CT +https://doi.org/10.48597/BPV6-G7FU +https://doi.org/10.48597/QE4C-UYZG +https://doi.org/10.48597/WXBH-P6MY +https://doi.org/10.48597/T3J5-QU7Y +https://doi.org/10.48597/K5UE-75X7 +https://doi.org/10.48597/XYG3-VB54 +https://doi.org/10.48597/ZA44-RZN9 +https://doi.org/10.48597/AUQB-2GZK +https://doi.org/10.48597/MFJJ-ZQ85 +https://doi.org/10.48597/PFWV-2V7Z +https://doi.org/10.48597/H35Y-PJWK +https://doi.org/10.48597/SG87-MBJS +https://doi.org/10.48597/ZPEY-E2S9 +https://doi.org/10.48597/YMUH-ZJN4 +https://doi.org/10.48597/G56S-PCVK +https://doi.org/10.48597/BJYD-SACQ +https://doi.org/10.48597/SH5Q-GA2K +https://doi.org/10.48597/B4TG-PU8W +https://doi.org/10.48597/6E9U-X4DE +https://doi.org/10.48597/Y85Z-CW7N +https://doi.org/10.48597/6VM4-MXZQ +https://doi.org/10.48597/9DFC-YERH +https://doi.org/10.48597/AG3A-NH9R +https://doi.org/10.48597/DWNB-4UJG +https://doi.org/10.48597/WVHD-N2XG +https://doi.org/10.48597/FMEY-233H +https://doi.org/10.48597/9USV-DVQG +https://doi.org/10.48597/5G7G-6T8N +https://doi.org/10.48597/WAWA-Y5DW +https://doi.org/10.48597/VNAV-B2JA +https://doi.org/10.48597/7RFP-R4K5 +https://doi.org/10.48597/JX38-DP9D +https://doi.org/10.48597/T9DJ-57DB +https://doi.org/10.48597/PN52-PKPJ +https://doi.org/10.48597/2G5H-CYGH +https://doi.org/10.48597/RKXJ-WNBU +https://doi.org/10.48597/KBAC-MKNH +https://doi.org/10.48597/R8NQ-MA8H +https://doi.org/10.48597/HAVT-9H7A +https://doi.org/10.48597/MBNZ-WM2M +https://doi.org/10.48597/FPSM-PRDZ +https://doi.org/10.48597/4EZG-ETPX +https://doi.org/10.48597/SX45-K772 +https://doi.org/10.48597/ZEDG-MFC2 +https://doi.org/10.48597/44MJ-HUMW +https://doi.org/10.48597/RJU6-3SH8 +https://doi.org/10.48597/447C-MAZR +https://doi.org/10.48597/2BNJ-8KXT +https://doi.org/10.48597/JVW4-UCKF +https://doi.org/10.48597/49C6-EQHD +https://doi.org/10.48597/V5WG-MX8V +https://doi.org/10.48597/PB7G-QPD2 +https://doi.org/10.48597/D4MB-DG5U +https://doi.org/10.48597/5SET-TQNG +https://doi.org/10.48597/JS2Q-UP4M +https://doi.org/10.48597/GAAX-76WN +https://doi.org/10.48597/R4MP-VS6N +https://doi.org/10.48597/2HZ2-TT4M +https://doi.org/10.48597/XE8S-DWEV +https://doi.org/10.48597/E2YT-88HX +https://doi.org/10.48597/8Q9H-S9W8 +https://doi.org/10.48597/PFX3-FE9R +https://doi.org/10.48597/TNJ6-RUD2 +https://doi.org/10.48597/YXJQ-MCA2 +https://doi.org/10.48597/CS95-J9T3 +https://doi.org/10.48597/NTM3-FRAF +https://doi.org/10.48597/ZGJJ-YUWN +https://doi.org/10.48597/HWJW-FKEQ +https://doi.org/10.48597/8QH4-AD3A +https://doi.org/10.48597/Q6C8-TH7D +https://doi.org/10.48597/Q6PB-BEZ2 +https://doi.org/10.48597/EW3E-MK9P +https://doi.org/10.48597/QDUT-DWMF +https://doi.org/10.48597/RPRH-ZE75 +https://doi.org/10.48597/PXCG-N6JK +https://doi.org/10.48597/3PAV-2TPR +https://doi.org/10.48597/KP93-K7PH +https://doi.org/10.48597/MVVB-3526 +https://doi.org/10.48597/6R8G-DQGP +https://doi.org/10.48597/SGET-7BA5 +https://doi.org/10.48597/TE76-YHWS +https://doi.org/10.48597/VJM7-8BP7 +https://doi.org/10.48597/RGKD-HRNX +https://doi.org/10.48597/QEC6-W57W +https://doi.org/10.48597/MS3V-R79T +https://doi.org/10.48597/P2SG-QG7Y +https://doi.org/10.48597/TR2U-JE77 +https://doi.org/10.48597/ZDWP-9XZS +https://doi.org/10.48597/XHKD-H8RS +https://doi.org/10.48597/2UTZ-A74X +https://doi.org/10.48597/YZBC-M8CM +https://doi.org/10.48597/ZUFF-KHKN +https://doi.org/10.48597/G9KT-23TW +https://doi.org/10.48597/Y3J9-DQJ6 +https://doi.org/10.48597/CXVP-8NC7 +https://doi.org/10.48597/TTHT-49XK +https://doi.org/10.48597/SPMM-QPH5 +https://doi.org/10.48597/U6SH-RARM +https://doi.org/10.48597/RB6S-VWFU +https://doi.org/10.48597/CYEN-A9BM +https://doi.org/10.48597/BPDX-VAUR +https://doi.org/10.48597/CVQG-T4ZU +https://doi.org/10.48597/8KY4-ZVBS +https://doi.org/10.48597/PEER-77HG +https://doi.org/10.48597/VN57-MDEB +https://doi.org/10.48597/8T9Z-PXFF +https://doi.org/10.48597/SHGT-299W +https://doi.org/10.48597/EMJE-79CZ +https://doi.org/10.48597/HKAB-T5GT +https://doi.org/10.48597/WS79-JZ6H +https://doi.org/10.48597/6WRT-SKY5 +https://doi.org/10.48597/WUWT-SM43 +https://doi.org/10.48597/W4KW-C7QR +https://doi.org/10.48597/BGMN-HMJU +https://doi.org/10.48597/QWK7-9U65 +https://doi.org/10.48597/9V98-FZNH +https://doi.org/10.48597/ZX4Z-9F26 +https://doi.org/10.48597/F5GD-UHDV +https://doi.org/10.48597/ZGGD-V99M +https://doi.org/10.48597/KHUA-TVC8 +https://doi.org/10.48597/PV9M-A8DC +https://doi.org/10.48597/KVDR-WFF5 +https://doi.org/10.48597/KNE8-VEAN +https://doi.org/10.48597/7Z8A-ZK9W +https://doi.org/10.48597/MMEG-VWVD +https://doi.org/10.48597/T7MU-WC25 +https://doi.org/10.48597/689E-MFFD +https://doi.org/10.48597/BVTG-JC6K +https://doi.org/10.48597/QNRJ-XUY3 +https://doi.org/10.48597/82CZ-458Z +https://doi.org/10.48597/BFRY-FKFK +https://doi.org/10.48597/YNQ4-5VBK +https://doi.org/10.48597/BPCD-FAC6 +https://doi.org/10.48597/4PVN-59XD +https://doi.org/10.48597/R4ZM-3QBZ +https://doi.org/10.48597/WEU9-Z7HG +https://doi.org/10.48597/YCB5-Z3ZJ +https://doi.org/10.48597/528D-GMJ4 +https://doi.org/10.48597/J3TG-ZP4R +https://doi.org/10.48597/7FWV-AT6J +https://doi.org/10.48597/J4XV-F8UY +https://doi.org/10.48597/VSBX-CRVD +https://doi.org/10.48597/63DD-57V4 +https://doi.org/10.48597/RJ9Y-DQ8W +https://doi.org/10.48597/CN8Y-HX5G +https://doi.org/10.48597/WMUH-FNSW +https://doi.org/10.48597/AKH9-7PUZ +https://doi.org/10.48597/ZKT9-ZNC8 +https://doi.org/10.48597/VZ4W-XQ7J +https://doi.org/10.48597/37CE-ASDV +https://doi.org/10.48597/VV86-AFFW +https://doi.org/10.48597/AAS9-N224 +https://doi.org/10.48597/XGH4-QNUA +https://doi.org/10.48597/T4VZ-T3XH +https://doi.org/10.48597/XZS3-X2XG +https://doi.org/10.48597/Z6RT-TMZW +https://doi.org/10.48597/5958-KTBN +https://doi.org/10.48597/JR7P-R7B9 +https://doi.org/10.48597/56QY-XJ6K +https://doi.org/10.48597/F5ZR-3W5K +https://doi.org/10.48597/3UX8-BK3X +https://doi.org/10.48597/CURV-SQF7 +https://doi.org/10.48597/7R6H-4F6C +https://doi.org/10.48597/U3XD-QW38 +https://doi.org/10.48597/NQS5-JR8J +https://doi.org/10.48597/MTZ8-A2C3 +https://doi.org/10.48597/8CUF-GGPQ +https://doi.org/10.48597/ACPX-5WY9 +https://doi.org/10.48597/2SAW-ZP88 +https://doi.org/10.48597/B6UF-H4CS +https://doi.org/10.48597/PRAT-KYB2 +https://doi.org/10.48597/H7EV-NY4D +https://doi.org/10.48597/FJYU-SBVT +https://doi.org/10.48597/2F5Y-A6PG +https://doi.org/10.48597/US6Y-SHY5 +https://doi.org/10.48597/FSMK-FPMU +https://doi.org/10.48597/REZU-EUDF +https://doi.org/10.48597/W7YQ-E9MZ +https://doi.org/10.48597/CD47-WZMB +https://doi.org/10.48597/PF6R-WYHC +https://doi.org/10.48597/9STS-JMUJ +https://doi.org/10.48597/G4W4-PHVP +https://doi.org/10.48597/ENFB-7WQZ +https://doi.org/10.48597/7AXP-8HN3 +https://doi.org/10.48597/XZAN-QSA4 +https://doi.org/10.48597/3FDX-XBRV +https://doi.org/10.48597/2YZE-J8Z2 +https://doi.org/10.48597/XCVP-A5BH +https://doi.org/10.48597/4Q8P-E8QW +https://doi.org/10.48597/B7PY-YHSD +https://doi.org/10.48597/FMUH-ZXSV +https://doi.org/10.48597/JNEK-9A7K +https://doi.org/10.48597/VNV7-8JVM +https://doi.org/10.48597/M33W-YSN5 +https://doi.org/10.48597/YD72-CUQM +https://doi.org/10.48597/4AEA-TNPA +https://doi.org/10.48597/Y8K5-MQQP +https://doi.org/10.48597/UQF2-YUXJ +https://doi.org/10.48597/JP2C-A7NT +https://doi.org/10.48597/9UPY-P9ZE +https://doi.org/10.48597/ZU2U-FPTY +https://doi.org/10.48597/9QRT-CQ7U +https://doi.org/10.48597/FWS7-VTCS +https://doi.org/10.48597/G8CV-GM57 +https://doi.org/10.48597/Z27P-2UEW +https://doi.org/10.48597/U7XE-HD2X +https://doi.org/10.48597/NSFC-YHSD +https://doi.org/10.48597/TZFV-6SHG +https://doi.org/10.48597/JTEF-TC4B +https://doi.org/10.48597/4S7D-FDKK +https://doi.org/10.48597/R758-E953 +https://doi.org/10.48597/EU64-98JG +https://doi.org/10.48597/TN8J-W47M +https://doi.org/10.48597/UBW2-UHTM +https://doi.org/10.48597/73BT-NZ7K +https://doi.org/10.48597/QQSS-PQBP +https://doi.org/10.48597/G8TJ-WSUA +https://doi.org/10.48597/E7KC-JYXN +https://doi.org/10.48597/PADQ-YUDJ +https://doi.org/10.48597/9FWR-XWTT +https://doi.org/10.48597/DJBC-PN8V +https://doi.org/10.48597/5FAR-4R97 +https://doi.org/10.48597/Q5A8-HMTU +https://doi.org/10.48597/2U34-E223 +https://doi.org/10.48597/X76D-C9VF +https://doi.org/10.48597/CQ3Z-YFAS +https://doi.org/10.48597/KPZK-84P6 +https://doi.org/10.48597/PQTT-QMTZ +https://doi.org/10.48597/EMPV-JSEF +https://doi.org/10.48597/W83Z-DCWM +https://doi.org/10.48597/NNQY-P5HD +https://doi.org/10.48597/97Q9-ST26 +https://doi.org/10.48597/3YVU-CRJ4 +https://doi.org/10.48597/GF4R-JJ32 +https://doi.org/10.48597/3W9C-RDBX +https://doi.org/10.48597/KCMV-5T23 +https://doi.org/10.48597/A6N3-Y8EA +https://doi.org/10.48597/EJHG-9Z3Y +https://doi.org/10.48597/TVY4-BCMA +https://doi.org/10.48597/PDPZ-Q5KT +https://doi.org/10.48597/U372-ZZCA +https://doi.org/10.48597/83FA-38GK +https://doi.org/10.48597/2HES-T9EX +https://doi.org/10.48597/RSEQ-GMYH +https://doi.org/10.48597/83Q8-C9SB +https://doi.org/10.48597/ZRP9-BFCB +https://doi.org/10.48597/KK9Z-FZAX +https://doi.org/10.48597/MZ24-XJ8C +https://doi.org/10.48597/76T6-DVEZ +https://doi.org/10.48597/Q3EY-42JK +https://doi.org/10.48597/46QE-42YB +https://doi.org/10.48597/NBVA-3E5E +https://doi.org/10.48597/GNTJ-CEEH +https://doi.org/10.48597/34HW-3BAH +https://doi.org/10.48597/SH2B-UUKV +https://doi.org/10.48597/VHMH-EGSU +https://doi.org/10.48597/8Z9Q-MX3Q +https://doi.org/10.48597/4N2D-BRAP +https://doi.org/10.48597/HSB4-U8F2 +https://doi.org/10.48597/PB4P-VEVD +https://doi.org/10.48597/5CR7-8HPK +https://doi.org/10.48597/ZJUY-8MTV +https://doi.org/10.48597/Y7NP-HS2Q +https://doi.org/10.48597/S6WW-7CYQ +https://doi.org/10.48597/FKUK-DC6Z +https://doi.org/10.48597/8TTQ-KE89 +https://doi.org/10.48597/DBC5-WN3M +https://doi.org/10.48597/FENM-DQ7H +https://doi.org/10.48597/ERH7-EAPB +https://doi.org/10.48597/3JHV-587F +https://doi.org/10.48597/EEYP-VCZ8 +https://doi.org/10.48597/B8CY-PSMG +https://doi.org/10.48597/ARCK-RFU6 +https://doi.org/10.48597/XWFQ-G2AQ +https://doi.org/10.48597/ZG8A-N5BH +https://doi.org/10.48597/NFBD-ZNBC +https://doi.org/10.48597/B2XW-7TT4 +https://doi.org/10.48597/F52N-RK3Y +https://doi.org/10.48597/7CMN-V9CE +https://doi.org/10.48597/8YW6-28TN +https://doi.org/10.48597/VHN2-NA3C +https://doi.org/10.48597/63AG-NHUR +https://doi.org/10.48597/46DN-N5WF +https://doi.org/10.48597/8GN2-P7R2 +https://doi.org/10.48597/EE7N-6F42 +https://doi.org/10.48597/MKWE-F4MG +https://doi.org/10.48597/MCV7-FSUC +https://doi.org/10.48597/P5ZQ-PBBS +https://doi.org/10.48597/A99T-5XV6 +https://doi.org/10.48597/X2FD-ESUU +https://doi.org/10.48597/QZFP-T8CN +https://doi.org/10.48597/WJR4-7824 +https://doi.org/10.48597/GFKB-RJU8 +https://doi.org/10.48597/H3WM-2ZNR +https://doi.org/10.48597/9RZR-GS7B +https://doi.org/10.48597/RJQM-J9GC +https://doi.org/10.48597/PCNN-XVM4 +https://doi.org/10.48597/SMH8-E2HF +https://doi.org/10.48597/45AV-Q4FF +https://doi.org/10.48597/F3H6-6VUV +https://doi.org/10.48597/RFW8-B4C9 +https://doi.org/10.48597/W8MQ-MR2T +https://doi.org/10.48597/P7ZZ-XZA4 +https://doi.org/10.48597/V8HE-D6HB +https://doi.org/10.48597/3MDW-6ABY +https://doi.org/10.48597/47CW-BGUY +https://doi.org/10.48597/RJP3-MRUJ +https://doi.org/10.48597/DN9Z-TSAM +https://doi.org/10.48597/KA49-JMYA +https://doi.org/10.48597/RK3C-358W +https://doi.org/10.48597/22GH-G8RP +https://doi.org/10.48597/A7W7-AV5Z +https://doi.org/10.48597/23P6-9HJC +https://doi.org/10.48597/VF46-9SMM +https://doi.org/10.48597/7RGE-SUFH +https://doi.org/10.48597/6ZA4-FZUN +https://doi.org/10.48597/68W7-5NPP +https://doi.org/10.48597/QXPJ-3677 +https://doi.org/10.48597/8SQR-EYJY +https://doi.org/10.48597/V39D-EVY4 +https://doi.org/10.48597/2NV4-FAJM +https://doi.org/10.48597/5TNU-GQCA +https://doi.org/10.48597/SWZ5-4SYV +https://doi.org/10.48597/CUFU-JMYT +https://doi.org/10.48597/NNAR-CZEG +https://doi.org/10.48597/44PW-Q3MW +https://doi.org/10.48597/R568-YUY2 +https://doi.org/10.48597/DCXN-YVJ3 +https://doi.org/10.48597/2BBU-Q7WN +https://doi.org/10.48597/3RR5-DUB9 +https://doi.org/10.48597/43AE-JHP8 +https://doi.org/10.48597/92ZV-DUVC +https://doi.org/10.48597/WKBH-Z8SK +https://doi.org/10.48597/AD96-G6VN +https://doi.org/10.48597/N2KN-BMPQ +https://doi.org/10.48597/QTSZ-RW65 +https://doi.org/10.48597/S3G2-KKFX +https://doi.org/10.48597/YNRN-NQBA +https://doi.org/10.48597/9JSQ-V6SJ +https://doi.org/10.48597/WJHW-GZNH +https://doi.org/10.48597/G244-6H6F +https://doi.org/10.48597/BZ8C-4BS3 +https://doi.org/10.48597/JR2V-CFA2 +https://doi.org/10.48597/89XV-WGUC +https://doi.org/10.48597/PHY6-9BQ8 +https://doi.org/10.48597/W9YZ-T5M3 +https://doi.org/10.48597/Y552-4HPH +https://doi.org/10.48597/UMZ9-EJPT +https://doi.org/10.48597/8UNV-A3NR +https://doi.org/10.48597/Q8UP-V25Y +https://doi.org/10.48597/AWV8-MXN8 +https://doi.org/10.48597/N892-SY76 +https://doi.org/10.48597/X7PR-CMFP +https://doi.org/10.48597/5G79-BDVH +https://doi.org/10.48597/KXZG-SHB4 +https://doi.org/10.48597/RGP4-KRM7 +https://doi.org/10.48597/8PKN-DRTT +https://doi.org/10.48597/5854-2KE2 +https://doi.org/10.48597/DVKM-GYP4 +https://doi.org/10.48597/QCZS-8RW3 +https://doi.org/10.48597/QTQF-KSAZ +https://doi.org/10.48597/JMEE-78EY +https://doi.org/10.48597/PDYN-7DUJ +https://doi.org/10.48597/U8HX-C5X5 +https://doi.org/10.48597/MM74-B4TY +https://doi.org/10.48597/6YTF-UW8M +https://doi.org/10.48597/NFPY-5H2W +https://doi.org/10.48597/YWHC-AGWH +https://doi.org/10.48597/2CPC-X4BZ +https://doi.org/10.48597/B4SK-KDFX +https://doi.org/10.48597/5JMV-6F48 +https://doi.org/10.48597/FDBV-SS7F +https://doi.org/10.48597/6XCG-RRU7 +https://doi.org/10.48597/HDVA-X8SE +https://doi.org/10.48597/3G25-8HHU +https://doi.org/10.48597/D5CK-SJPK +https://doi.org/10.48597/7K9M-HE2F +https://doi.org/10.48597/ASUK-JEH5 +https://doi.org/10.48597/WAQE-ZWUW +https://doi.org/10.48597/U7DQ-AY5V +https://doi.org/10.48597/9CWR-AMX5 +https://doi.org/10.48597/QT2N-Q766 +https://doi.org/10.48597/C2CM-7U76 +https://doi.org/10.48597/FVAM-32PN +https://doi.org/10.48597/YN74-HWAH +https://doi.org/10.48597/N7E4-UHDB +https://doi.org/10.48597/5U3P-2662 +https://doi.org/10.48597/SGN5-M9RZ +https://doi.org/10.48597/8KQU-THRW +https://doi.org/10.48597/GAN6-TMPE +https://doi.org/10.48597/VKCC-RFMC +https://doi.org/10.48597/J9Y4-VXZV +https://doi.org/10.48597/9GM3-GWX9 +https://doi.org/10.48597/52QA-HPJH +https://doi.org/10.48597/HJY2-ZM5T +https://doi.org/10.48597/WBUD-CTEP +https://doi.org/10.48597/B98V-JVPD +https://doi.org/10.48597/89GZ-SDHJ +https://doi.org/10.48597/DYGT-8SGU +https://doi.org/10.48597/ZURZ-PRKC +https://doi.org/10.48597/FPHW-9HAE +https://doi.org/10.48597/SN62-9DHH +https://doi.org/10.48597/3FM8-4SXP +https://doi.org/10.48597/HNWJ-J9XV +https://doi.org/10.48597/A3Y6-878K +https://doi.org/10.48597/2VBH-8Z3E +https://doi.org/10.48597/JJKR-WYJY +https://doi.org/10.48597/5HEB-73XZ +https://doi.org/10.48597/FPP4-CW6A +https://doi.org/10.48597/NW9M-XZ33 +https://doi.org/10.48597/CKNM-XAHH +https://doi.org/10.48597/NVV8-EKCX +https://doi.org/10.48597/3W4A-237S +https://doi.org/10.48597/M7DT-7HGU +https://doi.org/10.48597/4ZZA-9PJE +https://doi.org/10.48597/JNMA-MEDU +https://doi.org/10.48597/AYG9-MB3Q +https://doi.org/10.48597/VVBG-7CDH +https://doi.org/10.48597/GSW7-UA4Q +https://doi.org/10.48597/RBGC-F969 +https://doi.org/10.48597/YVC8-GZUJ +https://doi.org/10.48597/YV32-WNX5 +https://doi.org/10.48597/U377-KJ7U +https://doi.org/10.48597/6PFA-4EGY +https://doi.org/10.48597/PFPS-VEYR +https://doi.org/10.48597/RJQ6-4PYA +https://doi.org/10.48597/B6UD-BZND +https://doi.org/10.48597/4ZD6-7CGB +https://doi.org/10.48597/S4CX-9C38 +https://doi.org/10.48597/NRPP-59KP +https://doi.org/10.48597/9AHP-VRJX +https://doi.org/10.48597/PXJ4-JM7H +https://doi.org/10.48597/QP5T-TSWX +https://doi.org/10.48597/J968-M6GC +https://doi.org/10.48597/66FH-NS8F +https://doi.org/10.48597/VR34-B44S +https://doi.org/10.48597/7UNS-9VHP +https://doi.org/10.48597/85MX-QF8X +https://doi.org/10.48597/YJTT-ZEYP +https://doi.org/10.48597/EV5J-5SC8 +https://doi.org/10.48597/87H5-TMNM +https://doi.org/10.48597/624Z-YGBQ +https://doi.org/10.48597/AEXJ-KYT2 +https://doi.org/10.48597/7R87-X22W +https://doi.org/10.48597/YFSU-VB24 +https://doi.org/10.48597/S3W2-XPG2 +https://doi.org/10.48597/A4CH-UP98 +https://doi.org/10.48597/XK26-EJEA +https://doi.org/10.48597/K722-G3DY +https://doi.org/10.48597/5B7Q-7VZU +https://doi.org/10.48597/PBFQ-PPYH +https://doi.org/10.48597/F45Z-Q3P3 +https://doi.org/10.48597/28ZU-ZUKX +https://doi.org/10.48597/7MDV-7WWF +https://doi.org/10.48597/7H3U-8YRT +https://doi.org/10.48597/SJQS-WCQR +https://doi.org/10.48597/V6SZ-W7GQ +https://doi.org/10.48597/KMZ6-28RY +https://doi.org/10.48597/X6G8-KSY3 +https://doi.org/10.48597/2SSQ-F2FV +https://doi.org/10.48597/YD6T-68UZ +https://doi.org/10.48597/8WNX-UU4F +https://doi.org/10.48597/PPSK-XJJY +https://doi.org/10.48597/DBPQ-987W +https://doi.org/10.48597/HH6S-3K2Z +https://doi.org/10.48597/CBNS-99A8 +https://doi.org/10.48597/P9WA-ZGJU +https://doi.org/10.48597/T26R-EDVC +https://doi.org/10.48597/M7EH-4WBW +https://doi.org/10.48597/8RBS-UE93 +https://doi.org/10.48597/MJ33-UUWD +https://doi.org/10.48597/EHJJ-ZEYZ +https://doi.org/10.48597/33TF-2FM2 +https://doi.org/10.48597/P75D-8FMC +https://doi.org/10.48597/FHVB-75EF +https://doi.org/10.48597/7DAK-WXD4 +https://doi.org/10.48597/8534-VEB2 +https://doi.org/10.48597/GWPM-89MX +https://doi.org/10.48597/WF6U-KDAK +https://doi.org/10.48597/6NB5-HKYN +https://doi.org/10.48597/UZKT-535W +https://doi.org/10.48597/S35M-P2NY +https://doi.org/10.48597/5WE9-KPKU +https://doi.org/10.48597/QP7A-8UAF +https://doi.org/10.48597/9XAT-YBW8 +https://doi.org/10.48597/BTJA-FVJD +https://doi.org/10.48597/ARYW-TDQG +https://doi.org/10.48597/PYYF-T3YG +https://doi.org/10.48597/CZWF-NM5U +https://doi.org/10.48597/X74Q-28DF +https://doi.org/10.48597/QBBM-37NR +https://doi.org/10.48597/6HPE-NNQJ +https://doi.org/10.48597/BNHA-XAJM +https://doi.org/10.48597/52W6-NR47 +https://doi.org/10.48597/CXSP-FMJE +https://doi.org/10.48597/H5KZ-XTWC +https://doi.org/10.48597/R85M-KHW2 +https://doi.org/10.48597/AQU9-CZDD +https://doi.org/10.48597/BNFS-NN9G +https://doi.org/10.48597/X38K-KZZA +https://doi.org/10.48597/CZ8F-9V9P +https://doi.org/10.48597/ATT8-CEYD +https://doi.org/10.48597/HQ8W-VDRY +https://doi.org/10.48597/9X5B-KR3N +https://doi.org/10.48597/EP2N-FBQ6 +https://doi.org/10.48597/ECX4-YR3K +https://doi.org/10.48597/4VFT-8S3T +https://doi.org/10.48597/RUSD-ZWUC +https://doi.org/10.48597/KQVT-QJNM +https://doi.org/10.48597/5S2F-2W39 +https://doi.org/10.48597/8QU5-Q6ZD +https://doi.org/10.48597/Q5AY-4TZE +https://doi.org/10.48597/4V9Z-7K8R +https://doi.org/10.48597/WSTD-VM9S +https://doi.org/10.48597/N6VN-7SMP +https://doi.org/10.48597/CEQM-86DV +https://doi.org/10.48597/WRJY-G5TV +https://doi.org/10.48597/SXED-7H6P +https://doi.org/10.48597/R5GN-4V62 +https://doi.org/10.48597/TAHZ-TRB6 +https://doi.org/10.48597/85F5-KBH5 +https://doi.org/10.48597/A8S6-79HB +https://doi.org/10.48597/HYYK-U2XM +https://doi.org/10.48597/DH5K-6UX2 +https://doi.org/10.48597/66PV-8VCR +https://doi.org/10.48597/YDUZ-P9XY +https://doi.org/10.48597/CH9E-DTFA +https://doi.org/10.48597/JXFH-54WA +https://doi.org/10.48597/XVMZ-P43T +https://doi.org/10.48597/WDKA-H8V7 +https://doi.org/10.48597/QEKX-CK57 +https://doi.org/10.48597/YYS9-VDMP +https://doi.org/10.48597/7YEJ-WHFP +https://doi.org/10.48597/A2RX-BUV9 +https://doi.org/10.48597/KE88-TXNM +https://doi.org/10.48597/YFT5-3N8C +https://doi.org/10.48597/3CGB-3JKG +https://doi.org/10.48597/BTTV-44GN +https://doi.org/10.48597/323F-J8N3 +https://doi.org/10.48597/TV36-KNBE +https://doi.org/10.48597/VJAT-QQ8W +https://doi.org/10.48597/KG43-4QGN +https://doi.org/10.48597/URQH-NW4D +https://doi.org/10.48597/BWWJ-EZN9 +https://doi.org/10.48597/85R2-PSFH +https://doi.org/10.48597/87H9-NQP6 +https://doi.org/10.48597/84CC-GKKC +https://doi.org/10.48597/ZW72-P3AS +https://doi.org/10.48597/5MY6-R4HK +https://doi.org/10.48597/ADUN-VENM +https://doi.org/10.48597/BZWV-XAX7 +https://doi.org/10.48597/WM68-5SM9 +https://doi.org/10.48597/7KD9-GAMP +https://doi.org/10.48597/96JF-WCAH +https://doi.org/10.48597/3RHY-EKZG +https://doi.org/10.48597/ECMK-E97U +https://doi.org/10.48597/43AN-UJJ6 +https://doi.org/10.48597/EE9Z-QGD4 +https://doi.org/10.48597/7WHR-3AJR +https://doi.org/10.48597/W8JB-BH3N +https://doi.org/10.48597/6JWW-PFPR +https://doi.org/10.48597/DWQM-2QEU +https://doi.org/10.48597/VWDG-XVRB +https://doi.org/10.48597/U7H8-QYHC +https://doi.org/10.48597/2NS3-R9PR +https://doi.org/10.48597/294W-VYGG +https://doi.org/10.48597/SXJS-AP9N +https://doi.org/10.48597/TH2A-8VQE +https://doi.org/10.48597/6ERX-CWH6 +https://doi.org/10.48597/BHAB-SSE9 +https://doi.org/10.48597/X3TP-83TT +https://doi.org/10.48597/GUMH-2G3B +https://doi.org/10.48597/7PAG-PT5T +https://doi.org/10.48597/4GW3-CMP5 +https://doi.org/10.48597/5HU4-B83G +https://doi.org/10.48597/3MSQ-NMTQ +https://doi.org/10.48597/3QV2-RBN5 +https://doi.org/10.48597/BWEC-Q98U +https://doi.org/10.48597/WTJ7-NH3B +https://doi.org/10.48597/PWMY-2FGD +https://doi.org/10.48597/JWSV-R58M +https://doi.org/10.48597/SHHF-AE4F +https://doi.org/10.48597/3DGY-4KBD +https://doi.org/10.48597/ZEFY-NQ88 +https://doi.org/10.48597/7EJJ-CHUZ +https://doi.org/10.48597/59G9-ZNWM +https://doi.org/10.48597/VNGA-RMS5 +https://doi.org/10.48597/PUCD-9CE3 +https://doi.org/10.48597/Y889-S8C3 +https://doi.org/10.48597/VH6R-6H26 +https://doi.org/10.48597/3XVZ-U64S +https://doi.org/10.48597/ED44-KN9C +https://doi.org/10.48597/Z7GH-AH57 +https://doi.org/10.48597/MRPX-EVUT +https://doi.org/10.48597/MT48-NPFJ +https://doi.org/10.48597/SZ83-39H6 +https://doi.org/10.48597/493R-D9GE +https://doi.org/10.48597/JZJU-8B4H +https://doi.org/10.48597/P9FB-AYK9 +https://doi.org/10.48597/4C8C-DMNX +https://doi.org/10.48597/8FMT-U2BG +https://doi.org/10.48597/FED4-ZX6Y +https://doi.org/10.48597/DQEU-GNXE +https://doi.org/10.48597/B3GX-SFVE +https://doi.org/10.48597/XRUA-M2NU +https://doi.org/10.48597/49J6-UNR2 +https://doi.org/10.48597/TD3F-HJ6B +https://doi.org/10.48597/Q8QR-SV7H +https://doi.org/10.48597/7CP9-XGPD +https://doi.org/10.48597/S8RR-843M +https://doi.org/10.48597/9WQ5-34NP +https://doi.org/10.48597/2GSA-HUE7 +https://doi.org/10.48597/2WBJ-5EAZ +https://doi.org/10.48597/9MFT-YNQ7 +https://doi.org/10.48597/ZFDU-6GS9 +https://doi.org/10.48597/U45J-RBJS +https://doi.org/10.48597/SM4S-3XN6 +https://doi.org/10.48597/7UQK-MHPM +https://doi.org/10.48597/3PEW-TJW7 +https://doi.org/10.48597/XX3T-WBC3 +https://doi.org/10.48597/MCPM-44QW +https://doi.org/10.48597/QBHF-ZDAM +https://doi.org/10.48597/PBKJ-3EC6 +https://doi.org/10.48597/N8UZ-RH57 +https://doi.org/10.48597/MVVQ-7GZG +https://doi.org/10.48597/G3Q3-38A8 +https://doi.org/10.48597/RVFU-D2S7 +https://doi.org/10.48597/WWB7-DMV8 +https://doi.org/10.48597/FQ7J-46E2 +https://doi.org/10.48597/VE8S-32P5 +https://doi.org/10.48597/JVAD-AEZS +https://doi.org/10.48597/HMAA-JYZK +https://doi.org/10.48597/GVBZ-ZGAS +https://doi.org/10.48597/7WQC-FQSN +https://doi.org/10.48597/4TF7-X4N2 +https://doi.org/10.48597/K557-4AHS +https://doi.org/10.48597/UKWJ-84QY +https://doi.org/10.48597/ST3W-R6NF +https://doi.org/10.48597/52Q7-257R +https://doi.org/10.48597/K788-Y4HF +https://doi.org/10.48597/MECU-GBA4 +https://doi.org/10.48597/J558-NH6Q +https://doi.org/10.48597/GU6Y-N5E5 +https://doi.org/10.48597/UN6F-CPQZ +https://doi.org/10.48597/ZUNN-JZ5D +https://doi.org/10.48597/VSVW-NBEE +https://doi.org/10.48597/T2NP-EXKZ +https://doi.org/10.48597/V4J8-BKZ3 +https://doi.org/10.48597/E9PU-KVQW +https://doi.org/10.48597/7YM2-W4F3 +https://doi.org/10.48597/K296-ZEQZ +https://doi.org/10.48597/C79V-42RC +https://doi.org/10.48597/P4GD-F3HD +https://doi.org/10.48597/HKY7-RJ93 +https://doi.org/10.48597/9XC6-SU7Z +https://doi.org/10.48597/VZR6-7Q45 +https://doi.org/10.48597/42DW-9JTM +https://doi.org/10.48597/M58W-8XJ5 +https://doi.org/10.48597/9J26-XX8Z +https://doi.org/10.48597/3WGH-BYUG +https://doi.org/10.48597/FZ7W-33SZ +https://doi.org/10.48597/56PT-7NN4 +https://doi.org/10.48597/5SNF-45YH +https://doi.org/10.48597/CUEX-7WJ6 +https://doi.org/10.48597/89YU-CAT5 +https://doi.org/10.48597/CA6Y-ZF8G +https://doi.org/10.48597/EK9U-A3CD +https://doi.org/10.48597/XXDP-RVTX +https://doi.org/10.48597/HZRA-HSTD +https://doi.org/10.48597/VUFN-3HWW +https://doi.org/10.48597/TEG8-D2U6 +https://doi.org/10.48597/QVT9-3F3Z +https://doi.org/10.48597/A5QM-ECV7 +https://doi.org/10.48597/X4VP-UQTH +https://doi.org/10.48597/CWT2-9PRM +https://doi.org/10.48597/WHHF-4F5H +https://doi.org/10.48597/SBDR-R6EM +https://doi.org/10.48597/ZXTR-2RC3 +https://doi.org/10.48597/XY6C-S44U +https://doi.org/10.48597/3D23-MMN6 +https://doi.org/10.48597/N44S-MUX2 +https://doi.org/10.48597/MVH6-A7F6 +https://doi.org/10.48597/WYVX-PPJC +https://doi.org/10.48597/HMD6-5J5R +https://doi.org/10.48597/JJQD-MPER +https://doi.org/10.48597/MDDX-9W2K +https://doi.org/10.48597/9SJ9-5PQD +https://doi.org/10.48597/F9W7-E56A +https://doi.org/10.48597/DBUZ-YFGM +https://doi.org/10.48597/97DA-73EH +https://doi.org/10.48597/3N4J-7DMB +https://doi.org/10.48597/J2BF-YGU7 +https://doi.org/10.48597/PWJY-8TTW +https://doi.org/10.48597/UYRY-WH7N +https://doi.org/10.48597/G9X9-SYBK +https://doi.org/10.48597/SFM6-VSVW +https://doi.org/10.48597/795B-A4RZ +https://doi.org/10.48597/F57B-2CAZ +https://doi.org/10.48597/5VPC-GC2P +https://doi.org/10.48597/43MC-6T49 +https://doi.org/10.48597/BSZN-E7FN +https://doi.org/10.48597/S5GR-D4SX +https://doi.org/10.48597/6CVW-QF2H +https://doi.org/10.48597/A47C-YZ9P +https://doi.org/10.48597/623S-SWF7 +https://doi.org/10.48597/PW5R-THPD +https://doi.org/10.48597/2F2M-QQF6 +https://doi.org/10.48597/4QFE-CWCY +https://doi.org/10.48597/49MK-SUHN +https://doi.org/10.48597/9SSE-RD6A +https://doi.org/10.48597/WRNV-EGEA +https://doi.org/10.48597/6J8Y-5JR3 +https://doi.org/10.48597/2KWN-UUK6 +https://doi.org/10.48597/CC4S-BP82 +https://doi.org/10.48597/XBHJ-MMJP +https://doi.org/10.48597/C3U6-E6R5 +https://doi.org/10.48597/UARZ-RY4T +https://doi.org/10.48597/Z7EM-5YM4 +https://doi.org/10.48597/ZCMB-RN42 +https://doi.org/10.48597/8XFV-44RU +https://doi.org/10.48597/33WC-UVR2 +https://doi.org/10.48597/YXB9-R9ZZ +https://doi.org/10.48597/RXV3-X8SM +https://doi.org/10.48597/WHRM-FVRF +https://doi.org/10.48597/J85H-857B +https://doi.org/10.48597/U9GJ-BU28 +https://doi.org/10.48597/N45U-UE4D +https://doi.org/10.48597/R5XZ-E5K3 +https://doi.org/10.48597/X2M2-TMXX +https://doi.org/10.48597/WXGU-B5TU +https://doi.org/10.48597/8CNE-E6J9 +https://doi.org/10.48597/ZDSZ-T4TF +https://doi.org/10.48597/3237-HVFZ +https://doi.org/10.48597/68ZF-9FP4 +https://doi.org/10.48597/WJVD-QJDX +https://doi.org/10.48597/X3NF-HTF5 +https://doi.org/10.48597/YP5A-6KQ8 +https://doi.org/10.48597/V9DF-MQQF +https://doi.org/10.48597/3ZPW-P8HX +https://doi.org/10.48597/Z5DR-GSFV +https://doi.org/10.48597/VAUK-8RZD +https://doi.org/10.48597/PY9R-2H2A +https://doi.org/10.48597/MFUH-ZPCC +https://doi.org/10.48597/2ZP9-9E9V +https://doi.org/10.48597/D4AY-ZU66 +https://doi.org/10.48597/STDM-TYF7 +https://doi.org/10.48597/HKKQ-N64T +https://doi.org/10.48597/KBJT-ANKX +https://doi.org/10.48597/CTM2-QRAB +https://doi.org/10.48597/PG8R-E9BQ +https://doi.org/10.48597/6A7G-REZA +https://doi.org/10.48597/Y9A2-ZFAD +https://doi.org/10.48597/TZTM-BEH6 +https://doi.org/10.48597/9Q45-2XZB +https://doi.org/10.48597/F4QS-EFW3 +https://doi.org/10.48597/RCJE-TMB7 +https://doi.org/10.48597/4YZ5-KN3K +https://doi.org/10.48597/QTPE-VGRR +https://doi.org/10.48597/G6U3-KU8X +https://doi.org/10.48597/JMXT-RCUZ +https://doi.org/10.48597/SRV9-754X +https://doi.org/10.48597/WUNX-5ZCY +https://doi.org/10.48597/C6MP-HCZP +https://doi.org/10.48597/S2GT-NQ7C +https://doi.org/10.48597/AATB-SJ54 +https://doi.org/10.48597/322A-ZBPB +https://doi.org/10.48597/QJRC-JT8Y +https://doi.org/10.48597/DZGA-56WV +https://doi.org/10.48597/XZQ7-9F4J +https://doi.org/10.48597/MWM6-WFW7 +https://doi.org/10.48597/T9DV-ED8Z +https://doi.org/10.48597/AM2G-BPRB +https://doi.org/10.48597/HKC4-WDK6 +https://doi.org/10.48597/37G6-7P7N +https://doi.org/10.48597/S4GJ-ZSHN +https://doi.org/10.48597/W54H-2RKD +https://doi.org/10.48597/N548-7DTK +https://doi.org/10.48597/3YQE-26KN +https://doi.org/10.48597/SY4M-H6QX +https://doi.org/10.48597/2KNB-7KPM +https://doi.org/10.48597/WJ8Z-AYRB +https://doi.org/10.48597/4TGZ-5HDP +https://doi.org/10.48597/QJUE-AZU7 +https://doi.org/10.48597/8EV4-9CTD +https://doi.org/10.48597/Q6AW-SRHB +https://doi.org/10.48597/FFBE-3D9G +https://doi.org/10.48597/SNZ8-DMAH +https://doi.org/10.48597/G933-ZU4R +https://doi.org/10.48597/WUNH-Z74W +https://doi.org/10.48597/QAEV-JQMH +https://doi.org/10.48597/C6A8-FGHU +https://doi.org/10.48597/53R5-V7AT +https://doi.org/10.48597/MTWM-67RV +https://doi.org/10.48597/KR2P-4C8V +https://doi.org/10.48597/B7EN-E5E4 +https://doi.org/10.48597/3BW8-AWV4 +https://doi.org/10.48597/PKRS-RJ2H +https://doi.org/10.48597/WY9H-ZTK8 +https://doi.org/10.48597/43CE-HU9T +https://doi.org/10.48597/VQ96-23SC +https://doi.org/10.48597/DVSR-64SU +https://doi.org/10.48597/99AT-F8K3 +https://doi.org/10.48597/6F93-3ZJ7 +https://doi.org/10.48597/8TWR-WMJP +https://doi.org/10.48597/SA2N-8QDY +https://doi.org/10.48597/FANR-XNAY +https://doi.org/10.48597/52WV-2XCJ +https://doi.org/10.48597/MEHQ-BRK9 +https://doi.org/10.48597/PUX6-7CWD +https://doi.org/10.48597/6TKR-9VSN +https://doi.org/10.48597/ZGRA-RNNZ +https://doi.org/10.48597/724K-MSSF +https://doi.org/10.48597/ANST-HZQ9 +https://doi.org/10.48597/SHUG-S3AG +https://doi.org/10.48597/NDDV-NKE8 +https://doi.org/10.48597/C34W-XZUR +https://doi.org/10.48597/7FK9-8W3H +https://doi.org/10.48597/FM84-X5A2 +https://doi.org/10.48597/CG7Q-QNKY +https://doi.org/10.48597/8EH9-XD6N +https://doi.org/10.48597/R65B-8RYC +https://doi.org/10.48597/XJES-K9HT +https://doi.org/10.48597/7BA2-M6RZ +https://doi.org/10.48597/QQNH-EF9P +https://doi.org/10.48597/BFEB-2YH5 +https://doi.org/10.48597/VW44-XNUA +https://doi.org/10.48597/NYM3-ANQW +https://doi.org/10.48597/VEAD-CFHE +https://doi.org/10.48597/XYG4-A2AW +https://doi.org/10.48597/MZWS-86RW +https://doi.org/10.48597/AK7E-3H9Y +https://doi.org/10.48597/G3RR-AJNU +https://doi.org/10.48597/TGNY-ZZ8N +https://doi.org/10.48597/A93A-MADG +https://doi.org/10.48597/ZSEJ-E9PV +https://doi.org/10.48597/AU6Z-GZCE +https://doi.org/10.48597/E7PC-YYDM +https://doi.org/10.48597/M2YW-AJ86 +https://doi.org/10.48597/UR7U-HV9S +https://doi.org/10.48597/M45P-4VKY +https://doi.org/10.48597/A337-UUFJ +https://doi.org/10.48597/FFB7-BDYS +https://doi.org/10.48597/AYST-9W43 +https://doi.org/10.48597/MGBQ-WQNT +https://doi.org/10.48597/P28X-CPB5 +https://doi.org/10.48597/BZNF-ZN95 +https://doi.org/10.48597/RJ9P-SEU6 +https://doi.org/10.48597/89V2-VEQE +https://doi.org/10.48597/K58P-SF76 +https://doi.org/10.48597/H66W-RKGF +https://doi.org/10.48597/PH8C-UJN9 +https://doi.org/10.48597/R565-RYRP +https://doi.org/10.48597/JDX3-MJD4 +https://doi.org/10.48597/NM6P-F9GZ +https://doi.org/10.48597/UQR5-SF2V +https://doi.org/10.48597/UVNU-SPVW +https://doi.org/10.48597/XY92-GGYQ +https://doi.org/10.48597/8TUY-DBHV +https://doi.org/10.48597/9VRD-3GZW +https://doi.org/10.48597/KXXH-CFFN +https://doi.org/10.48597/DUQP-RPYZ +https://doi.org/10.48597/JPVR-2ARX +https://doi.org/10.48597/JPZD-EV8M +https://doi.org/10.48597/DZEF-JR6Q +https://doi.org/10.48597/EMPJ-A8FM +https://doi.org/10.48597/BNPD-S3XM +https://doi.org/10.48597/NJTP-W5ST +https://doi.org/10.48597/9JH7-J7PE +https://doi.org/10.48597/AHTY-W5R7 +https://doi.org/10.48597/T5QK-MV5M +https://doi.org/10.48597/YMAG-TNYV +https://doi.org/10.48597/SNKV-JFBR +https://doi.org/10.48597/P58C-73AN +https://doi.org/10.48597/HU7D-RCHB +https://doi.org/10.48597/EHK4-XSWM +https://doi.org/10.48597/ZHQV-Q4AS +https://doi.org/10.48597/GFK9-YRHH +https://doi.org/10.48597/HWQ3-8WE4 +https://doi.org/10.48597/MRWB-A67A +https://doi.org/10.48597/Z9K6-62B2 +https://doi.org/10.48597/2Q82-647R +https://doi.org/10.48597/SF6W-UQM7 +https://doi.org/10.48597/GSXK-7C8K +https://doi.org/10.48597/HDMX-ZXBU +https://doi.org/10.48597/FH4F-F93C +https://doi.org/10.48597/XY87-3FD3 +https://doi.org/10.48597/YBP4-RQET +https://doi.org/10.48597/6EE6-G53V +https://doi.org/10.48597/ZX48-9WBG +https://doi.org/10.48597/V7DH-2DY6 +https://doi.org/10.48597/RGQA-PA42 +https://doi.org/10.48597/899K-ASW5 +https://doi.org/10.48597/3UFK-7UAD +https://doi.org/10.48597/KAMD-TBF3 +https://doi.org/10.48597/E9S5-JRND +https://doi.org/10.48597/VY6A-SUNC +https://doi.org/10.48597/MJDU-H48T +https://doi.org/10.48597/32MM-ABP6 +https://doi.org/10.48597/4BKP-7W9F +https://doi.org/10.48597/KPNU-MQ6A +https://doi.org/10.48597/XR6M-6XXP +https://doi.org/10.48597/AU75-CV98 +https://doi.org/10.48597/VE8P-Y63H +https://doi.org/10.48597/JHQG-QGJK +https://doi.org/10.48597/9TQK-ZAF3 +https://doi.org/10.48597/9PVV-V9CD +https://doi.org/10.48597/D49V-GCVK +https://doi.org/10.48597/BJSB-TH5T +https://doi.org/10.48597/KBNB-MGD8 +https://doi.org/10.48597/HXZC-4WZT +https://doi.org/10.48597/5ZKF-467F +https://doi.org/10.48597/P8PY-YSA5 +https://doi.org/10.48597/SNB2-RJ8C +https://doi.org/10.48597/6EPK-426T +https://doi.org/10.48597/F3BQ-NU84 +https://doi.org/10.48597/HW9B-NXFY +https://doi.org/10.48597/WVJS-KRJC +https://doi.org/10.48597/GCCM-VXWX +https://doi.org/10.48597/8J9E-Q2SK +https://doi.org/10.48597/Y9CF-378X +https://doi.org/10.48597/WDBY-ZHP5 +https://doi.org/10.48597/W2EG-BSX3 +https://doi.org/10.48597/8E6F-WBXE +https://doi.org/10.48597/JYZN-DKZ5 +https://doi.org/10.48597/KJHX-QTS3 +https://doi.org/10.48597/X6CZ-4M4E +https://doi.org/10.48597/N38Y-JDU5 +https://doi.org/10.48597/BHGS-9GCC +https://doi.org/10.48597/RP6F-GRK7 +https://doi.org/10.48597/FK45-RJNB +https://doi.org/10.48597/ZK86-6JTP +https://doi.org/10.48597/Y4D2-VJTP +https://doi.org/10.48597/CBR8-KASK +https://doi.org/10.48597/44R4-KR72 +https://doi.org/10.48597/SZHZ-QXYD +https://doi.org/10.48597/XV5Z-2ZDQ +https://doi.org/10.48597/D83U-ZN9F +https://doi.org/10.48597/M8DQ-ZQUD +https://doi.org/10.48597/J8WX-R5G6 +https://doi.org/10.48597/RUCT-ZMXE +https://doi.org/10.48597/8KM7-PBVA +https://doi.org/10.48597/PNAD-M9HK +https://doi.org/10.48597/6V2J-CS2S +https://doi.org/10.48597/MA2K-FZER +https://doi.org/10.48597/B8SG-VB8W +https://doi.org/10.48597/NYM5-HSXX +https://doi.org/10.48597/HE7E-FZ2B +https://doi.org/10.48597/2BM7-M2J3 +https://doi.org/10.48597/A8AW-WRZQ +https://doi.org/10.48597/SF7P-86G6 +https://doi.org/10.48597/FBMK-7EQJ +https://doi.org/10.48597/YZNZ-Z9FF +https://doi.org/10.48597/T4UU-8MY4 +https://doi.org/10.48597/QSND-6UW2 +https://doi.org/10.48597/QH4U-3AM2 +https://doi.org/10.48597/UGFM-JQGC +https://doi.org/10.48597/KBDK-9DKA +https://doi.org/10.48597/GW89-5DJN +https://doi.org/10.48597/X6BW-YEAK +https://doi.org/10.48597/M3RD-KWM8 +https://doi.org/10.48597/YRWS-XVK6 +https://doi.org/10.48597/MX67-E2X8 +https://doi.org/10.48597/YXEU-NZ65 +https://doi.org/10.48597/NMZJ-4DNN +https://doi.org/10.48597/9C56-4AH2 +https://doi.org/10.48597/GASN-EPDH +https://doi.org/10.48597/5EPS-3CAE +https://doi.org/10.48597/66NA-9MEA +https://doi.org/10.48597/ZAAK-Z2UF +https://doi.org/10.48597/J6JQ-JN2U +https://doi.org/10.48597/H7W3-5SKU +https://doi.org/10.48597/Z9CG-R9MB +https://doi.org/10.48597/7A76-2J78 +https://doi.org/10.48597/XYJN-CPHU +https://doi.org/10.48597/3JJU-Q7D3 +https://doi.org/10.48597/44TG-GC7Z +https://doi.org/10.48597/ZBSQ-84BB +https://doi.org/10.48597/N5BR-C3PE +https://doi.org/10.48597/YAE6-KUHY +https://doi.org/10.48597/TGD4-Z3ND +https://doi.org/10.48597/FFNB-DYPZ +https://doi.org/10.48597/5PBF-MJE5 +https://doi.org/10.48597/987S-DA3D +https://doi.org/10.48597/K2TC-5MGM +https://doi.org/10.48597/KEDP-8Q29 +https://doi.org/10.48597/UCE5-QQRW +https://doi.org/10.48597/VAZP-FK7S +https://doi.org/10.48597/MA39-E2YE +https://doi.org/10.48597/3WBD-BEDU +https://doi.org/10.48597/62B6-2SYZ +https://doi.org/10.48597/XPFR-RU3K +https://doi.org/10.48597/JHRZ-YHSR +https://doi.org/10.48597/W5H2-2YVB +https://doi.org/10.48597/YA4P-9CNJ +https://doi.org/10.48597/N5JF-CEY5 +https://doi.org/10.48597/8FX5-5YXG +https://doi.org/10.48597/6G8Z-B98S +https://doi.org/10.48597/PJ4F-W8MK +https://doi.org/10.48597/G29M-JWBV +https://doi.org/10.48597/92DJ-Z6HZ +https://doi.org/10.48597/BUT4-3YEX +https://doi.org/10.48597/EQQJ-HNFE +https://doi.org/10.48597/FUUR-99YN +https://doi.org/10.48597/XZ74-UA3T +https://doi.org/10.48597/T9J5-9BNZ +https://doi.org/10.48597/BH56-Q23Y +https://doi.org/10.48597/UFFH-UF99 +https://doi.org/10.48597/SB5T-5HRB +https://doi.org/10.48597/SW3W-DFE2 +https://doi.org/10.48597/FKGS-AW7T +https://doi.org/10.48597/CU7U-VB89 +https://doi.org/10.48597/YSGE-VWX6 +https://doi.org/10.48597/BN99-66N7 +https://doi.org/10.48597/K6XW-YZR2 +https://doi.org/10.48597/AVJQ-UPJM +https://doi.org/10.48597/QHPA-VSSD +https://doi.org/10.48597/HRQ9-UURX +https://doi.org/10.48597/V64V-7B4X +https://doi.org/10.48597/WSAP-QNWQ +https://doi.org/10.48597/QA8T-USYY +https://doi.org/10.48597/KGXW-BPZN +https://doi.org/10.48597/UPYV-RNQF +https://doi.org/10.48597/4BQ5-M88A +https://doi.org/10.48597/9HPS-FDMN +https://doi.org/10.48597/73SW-UXUY +https://doi.org/10.48597/PFQD-AVBR +https://doi.org/10.48597/BQH5-T3PN +https://doi.org/10.48597/WZTD-MH6T +https://doi.org/10.48597/F8NB-DVU7 +https://doi.org/10.48597/PCU7-UDVN +https://doi.org/10.48597/DVNJ-AV6Y +https://doi.org/10.48597/FDYG-2DVQ +https://doi.org/10.48597/YDNT-CT4P +https://doi.org/10.48597/X8HR-AGJ9 +https://doi.org/10.48597/3HWM-FG62 +https://doi.org/10.48597/3NPD-AKFX +https://doi.org/10.48597/XHMU-EMUB +https://doi.org/10.48597/9J3A-EPSP +https://doi.org/10.48597/3Z38-2AFS +https://doi.org/10.48597/9XWY-WAV5 +https://doi.org/10.48597/GN5R-ZTA4 +https://doi.org/10.48597/75UB-YRQW +https://doi.org/10.48597/8TC7-4924 +https://doi.org/10.48597/V9S5-MR4C +https://doi.org/10.48597/AK43-C68Z +https://doi.org/10.48597/XZF7-NV4X +https://doi.org/10.48597/JY9W-AVWU +https://doi.org/10.48597/MM9Q-CJT9 +https://doi.org/10.48597/43FV-YVUD +https://doi.org/10.48597/ZPQT-S494 +https://doi.org/10.48597/MY7F-53JJ +https://doi.org/10.48597/ZYAT-N9XK +https://doi.org/10.48597/MGER-2FYP +https://doi.org/10.48597/34HG-UJN3 +https://doi.org/10.48597/Y4BP-4MUZ +https://doi.org/10.48597/UKNA-CBNP +https://doi.org/10.48597/2GQH-EENP +https://doi.org/10.48597/DZ3T-8SWX +https://doi.org/10.48597/F892-GCXK +https://doi.org/10.48597/6GEM-B93N +https://doi.org/10.48597/6TD3-MF4U +https://doi.org/10.48597/9BG8-GJ6A +https://doi.org/10.48597/YFBH-Y5BG +https://doi.org/10.48597/YXSR-TFWF +https://doi.org/10.48597/RNKP-WFNT +https://doi.org/10.48597/RGT8-94NG +https://doi.org/10.48597/GJBE-WHWP +https://doi.org/10.48597/BNJR-9PMJ +https://doi.org/10.48597/BK8Q-SMD2 +https://doi.org/10.48597/WKMJ-3DC4 +https://doi.org/10.48597/R4SH-S4RS +https://doi.org/10.48597/9HEK-55HM +https://doi.org/10.48597/UAZG-WUY6 +https://doi.org/10.48597/VJC7-SFGP +https://doi.org/10.48597/HMV5-DTDE +https://doi.org/10.48597/XXXV-J2TC +https://doi.org/10.48597/RC3A-3KKR +https://doi.org/10.48597/CGUW-SB8X +https://doi.org/10.48597/K8YH-XBHT +https://doi.org/10.48597/NPB6-VC34 +https://doi.org/10.48597/TKPG-5DXH +https://doi.org/10.48597/8VZS-S24R +https://doi.org/10.48597/KKJ8-4ZZ9 +https://doi.org/10.48597/J575-6DP5 +https://doi.org/10.48597/CSZK-236E +https://doi.org/10.48597/6K5W-AR95 +https://doi.org/10.48597/V2G4-VRR7 +https://doi.org/10.48597/DZTZ-AQDM +https://doi.org/10.48597/9WNS-HSKY +https://doi.org/10.48597/ZW34-DBFG +https://doi.org/10.48597/PCXJ-X94R +https://doi.org/10.48597/H3AD-HWFF +https://doi.org/10.48597/WMYF-85CN +https://doi.org/10.48597/C9RE-THEH +https://doi.org/10.48597/X59Y-MGCH +https://doi.org/10.48597/728D-NHXE +https://doi.org/10.48597/Z8BD-AYMK +https://doi.org/10.48597/AYYF-UX2T +https://doi.org/10.48597/7BK3-6C7Y +https://doi.org/10.48597/AYG9-TERV +https://doi.org/10.48597/EY25-M3HP +https://doi.org/10.48597/6XE8-9MMD +https://doi.org/10.48597/F5YT-AJ4V +https://doi.org/10.48597/ZX29-9DG5 +https://doi.org/10.48597/HK4U-PB59 +https://doi.org/10.48597/3KNP-V6ZF +https://doi.org/10.48597/UYNM-5X7Y +https://doi.org/10.48597/YE4K-863F +https://doi.org/10.48597/7BNA-2FD3 +https://doi.org/10.48597/A35R-G3Y4 +https://doi.org/10.48597/DNYP-NJ7E +https://doi.org/10.48597/95JR-6GNA +https://doi.org/10.48597/VAHU-CE99 +https://doi.org/10.48597/WKFT-C86B +https://doi.org/10.48597/HVQP-JADA +https://doi.org/10.48597/SBCD-BY25 +https://doi.org/10.48597/YARF-9SKQ +https://doi.org/10.48597/GCKK-9PA3 +https://doi.org/10.48597/NBMV-ARTS +https://doi.org/10.48597/KXN8-UTSC +https://doi.org/10.48597/Y3VE-ZEMS +https://doi.org/10.48597/SUPT-PJU6 +https://doi.org/10.48597/Y3AA-489Y +https://doi.org/10.48597/P63M-M2P3 +https://doi.org/10.48597/7DCY-5V43 +https://doi.org/10.48597/6DF9-RQ9A +https://doi.org/10.48597/5RP8-87NS +https://doi.org/10.48597/D35W-DMGR +https://doi.org/10.48597/VEYJ-WWPN +https://doi.org/10.48597/MF9C-XXSE +https://doi.org/10.48597/WFNJ-5GC4 +https://doi.org/10.48597/MXPB-ZH5C +https://doi.org/10.48597/TVGS-WFWZ +https://doi.org/10.48597/WND9-GZTW +https://doi.org/10.48597/X39V-UNWA +https://doi.org/10.48597/FTGE-DU6A +https://doi.org/10.48597/C6EG-NYXT +https://doi.org/10.48597/DVS2-DG3D +https://doi.org/10.48597/QAWU-NAZ5 +https://doi.org/10.48597/55YF-DYJA +https://doi.org/10.48597/AKX8-4TYR +https://doi.org/10.48597/YZM5-HR2C +https://doi.org/10.48597/3UEY-588J +https://doi.org/10.48597/HQ7T-PUCE +https://doi.org/10.48597/ZCGS-RVHC +https://doi.org/10.48597/XVJX-SUZT +https://doi.org/10.48597/U7N7-MD9A +https://doi.org/10.48597/TRDC-JFTT +https://doi.org/10.48597/AM74-CWEQ +https://doi.org/10.48597/5MPE-PVWQ +https://doi.org/10.48597/W4MR-BCST +https://doi.org/10.48597/86SC-PFFN +https://doi.org/10.48597/JYR2-MQQC +https://doi.org/10.48597/WCHH-766G +https://doi.org/10.48597/ET8U-J456 +https://doi.org/10.48597/Q743-C79D +https://doi.org/10.48597/DRMC-HCHZ +https://doi.org/10.48597/SRS5-D86Z +https://doi.org/10.48597/8QDM-52M2 +https://doi.org/10.48597/EAHT-AE5H +https://doi.org/10.48597/NJTP-MJWW +https://doi.org/10.48597/U2MQ-N8N9 +https://doi.org/10.48597/WDBQ-7FNB +https://doi.org/10.48597/4Y8W-BHCS +https://doi.org/10.48597/ZQKV-ND6W +https://doi.org/10.48597/JJZK-NS3K +https://doi.org/10.48597/NP4M-JHDQ +https://doi.org/10.48597/3NTQ-23VN +https://doi.org/10.48597/22XC-9HXG +https://doi.org/10.48597/M67N-4SHS +https://doi.org/10.48597/5QMC-M4CT +https://doi.org/10.48597/NTZS-DNPZ +https://doi.org/10.48597/XT2Q-755U +https://doi.org/10.48597/PX7M-CF83 +https://doi.org/10.48597/Q5NG-MRTF +https://doi.org/10.48597/EB3C-EXDR +https://doi.org/10.48597/CATD-UF22 +https://doi.org/10.48597/GM2X-4PRN +https://doi.org/10.48597/MFNY-93WG +https://doi.org/10.48597/F846-WC7G +https://doi.org/10.48597/3GYY-DGE9 +https://doi.org/10.48597/NUSG-3REQ +https://doi.org/10.48597/Z5YA-BYNQ +https://doi.org/10.48597/SDWY-UXRR +https://doi.org/10.48597/U2AE-9K69 +https://doi.org/10.48597/MGVM-M6TA +https://doi.org/10.48597/SB94-QYDW +https://doi.org/10.48597/W2U4-JW66 +https://doi.org/10.48597/QKCW-RZTP +https://doi.org/10.48597/HKYX-8XTG +https://doi.org/10.48597/CTQG-7BTH +https://doi.org/10.48597/4XC7-E2SR +https://doi.org/10.48597/UR5S-Z6UF +https://doi.org/10.48597/UM77-WV6R +https://doi.org/10.48597/2GPH-KWAW +https://doi.org/10.48597/MKDK-Z984 +https://doi.org/10.48597/7CP5-ZFEQ +https://doi.org/10.48597/NXXG-NDAJ +https://doi.org/10.48597/UXZN-P8XG +https://doi.org/10.48597/W2GS-GDNQ +https://doi.org/10.48597/SEG4-7QG8 +https://doi.org/10.48597/Z9Y6-2FKT +https://doi.org/10.48597/SZ23-45GK +https://doi.org/10.48597/BMPR-ZDWR +https://doi.org/10.48597/PNYM-P65B +https://doi.org/10.48597/8XVC-RAFN +https://doi.org/10.48597/NPWW-S69E +https://doi.org/10.48597/BZDM-Q5GR +https://doi.org/10.48597/KFPA-HFJH +https://doi.org/10.48597/DQRG-3KRV +https://doi.org/10.48597/YX2H-DHHE +https://doi.org/10.48597/CZAB-48VV +https://doi.org/10.48597/A4UY-7K62 +https://doi.org/10.48597/NWQC-W7X6 +https://doi.org/10.48597/58V2-D24Y +https://doi.org/10.48597/S3JF-R4EX +https://doi.org/10.48597/32G5-V688 +https://doi.org/10.48597/CWSS-UH38 +https://doi.org/10.48597/E3BB-HVCZ +https://doi.org/10.48597/VYPF-EVUA +https://doi.org/10.48597/JAZN-86ZP +https://doi.org/10.48597/3MUA-6WHM +https://doi.org/10.48597/NGVA-X46U +https://doi.org/10.48597/3H66-EZFR +https://doi.org/10.48597/P92P-8WKN +https://doi.org/10.48597/BE2B-4773 +https://doi.org/10.48597/PXN6-9D6T +https://doi.org/10.48597/BWZ8-X5WJ +https://doi.org/10.48597/ZGYP-SA3S +https://doi.org/10.48597/VFPK-GDB8 +https://doi.org/10.48597/Y39C-8A39 +https://doi.org/10.48597/WVNU-TCJQ +https://doi.org/10.48597/UTA4-ZZGX +https://doi.org/10.48597/C8HZ-SJEZ +https://doi.org/10.48597/ZQQE-SBAR +https://doi.org/10.48597/GYCD-AVBR +https://doi.org/10.48597/GNU2-UTX6 +https://doi.org/10.48597/TA29-JGDG +https://doi.org/10.48597/ZTYF-XJ2Y +https://doi.org/10.48597/3XMN-GBZG +https://doi.org/10.48597/J87V-ENSS +https://doi.org/10.48597/WUBK-6875 +https://doi.org/10.48597/2BAM-MF8X +https://doi.org/10.48597/SHZH-FCXX +https://doi.org/10.48597/9K9M-SUTT +https://doi.org/10.48597/E4GB-6NQK +https://doi.org/10.48597/AK4T-HSRR +https://doi.org/10.48597/6GME-RPRM +https://doi.org/10.48597/G2P4-G5TU +https://doi.org/10.48597/E4JE-BJQT +https://doi.org/10.48597/XD92-NDRM +https://doi.org/10.48597/WXZZ-PVCY +https://doi.org/10.48597/X8PV-EWE3 +https://doi.org/10.48597/8WJT-6YRB +https://doi.org/10.48597/BJ3C-SX5E +https://doi.org/10.48597/2R6R-3K79 +https://doi.org/10.48597/N4F4-PVBW +https://doi.org/10.48597/FX9M-WU8M +https://doi.org/10.48597/2HGK-BT6B +https://doi.org/10.48597/AJ9D-GXZ9 +https://doi.org/10.48597/QR8N-3HDQ +https://doi.org/10.48597/FW5N-8MPK +https://doi.org/10.48597/QC79-JVYG +https://doi.org/10.48597/QQ2N-7YEX +https://doi.org/10.48597/VUK4-K97E +https://doi.org/10.48597/KSCJ-PQU6 +https://doi.org/10.48597/FY8P-5DP7 +https://doi.org/10.48597/ZNYU-8WDC +https://doi.org/10.48597/Z9ET-ZHZS +https://doi.org/10.48597/PJ2R-CT98 +https://doi.org/10.48597/59M9-CDGW +https://doi.org/10.48597/7Q9H-92Y3 +https://doi.org/10.48597/JQRU-EPCC +https://doi.org/10.48597/WYTR-5EZU +https://doi.org/10.48597/DZEP-FSEN +https://doi.org/10.48597/BTFX-Y69B +https://doi.org/10.48597/HUYF-FWRV +https://doi.org/10.48597/9PMJ-9TTN +https://doi.org/10.48597/2GHN-XGDB +https://doi.org/10.48597/Z3T4-JX2A +https://doi.org/10.48597/N7WH-ES78 +https://doi.org/10.48597/QBX3-FHN3 +https://doi.org/10.48597/88N8-8FDT +https://doi.org/10.48597/68BU-K8SB +https://doi.org/10.48597/XZ9Y-C9WR +https://doi.org/10.48597/2T2E-6ZCV +https://doi.org/10.48597/NYWJ-RTNH +https://doi.org/10.48597/7RZH-U2AT +https://doi.org/10.48597/4HHD-R9Q6 +https://doi.org/10.48597/T95X-4SFZ +https://doi.org/10.48597/EEXY-7GPF +https://doi.org/10.48597/JAUA-MCP4 +https://doi.org/10.48597/6XMY-WAFB +https://doi.org/10.48597/CYCA-H6UX +https://doi.org/10.48597/PGDC-D7EK +https://doi.org/10.48597/J9UE-QW7N +https://doi.org/10.48597/XM89-X29P +https://doi.org/10.48597/JN68-UQHE +https://doi.org/10.48597/KDTJ-VVW7 +https://doi.org/10.48597/TYKF-S5AQ +https://doi.org/10.48597/5EM5-HAS6 +https://doi.org/10.48597/G4JA-XZF7 +https://doi.org/10.48597/SW6N-QBHD +https://doi.org/10.48597/QGE6-H4ZG +https://doi.org/10.48597/8ZRB-JT5N +https://doi.org/10.48597/WSZQ-YEU2 +https://doi.org/10.48597/4UH2-HC3G +https://doi.org/10.48597/W3E2-CSA7 +https://doi.org/10.48597/UF7F-ZG5X +https://doi.org/10.48597/69R5-4ZQG +https://doi.org/10.48597/H69S-D2XM +https://doi.org/10.48597/VEM5-WBJ6 +https://doi.org/10.48597/YQNQ-KDAH +https://doi.org/10.48597/F9B2-M3MP +https://doi.org/10.48597/BXGH-67DW +https://doi.org/10.48597/QA67-YJP8 +https://doi.org/10.48597/S3HU-Q4M8 +https://doi.org/10.48597/KBY3-U8NG +https://doi.org/10.48597/5WDC-WPPH +https://doi.org/10.48597/QHU3-YYD6 +https://doi.org/10.48597/KTQM-6QXD +https://doi.org/10.48597/BFSY-P24U +https://doi.org/10.48597/XW6D-DRY6 +https://doi.org/10.48597/KPXQ-CSMK +https://doi.org/10.48597/6XC4-W2X6 +https://doi.org/10.48597/YNPV-KJDE +https://doi.org/10.48597/4JD8-BCC6 +https://doi.org/10.48597/TUJS-F9CD +https://doi.org/10.48597/THN2-Q44T +https://doi.org/10.48597/S347-KDTT +https://doi.org/10.48597/QTRD-Y4YV +https://doi.org/10.48597/6G3S-VW8E +https://doi.org/10.48597/W4Z7-CEPP +https://doi.org/10.48597/244U-URAW +https://doi.org/10.48597/MEB8-YXBK +https://doi.org/10.48597/M8VQ-GA7F +https://doi.org/10.48597/V2R5-YYBW +https://doi.org/10.48597/SADG-T2UU +https://doi.org/10.48597/REYP-J6CZ +https://doi.org/10.48597/CJTF-URXS +https://doi.org/10.48597/KE96-F2XP +https://doi.org/10.48597/2Y4G-Y54J +https://doi.org/10.48597/6M25-94G3 +https://doi.org/10.48597/4A6V-YUA5 +https://doi.org/10.48597/B58F-9PSY +https://doi.org/10.48597/EXG5-WBF2 +https://doi.org/10.48597/CSKG-3BP2 +https://doi.org/10.48597/YM8V-6MMV +https://doi.org/10.48597/3EST-MGFN +https://doi.org/10.48597/G7R3-XJU2 +https://doi.org/10.48597/2TTG-DXVD +https://doi.org/10.48597/FWCM-EM29 +https://doi.org/10.48597/PSXG-75G3 +https://doi.org/10.48597/PQTM-8968 +https://doi.org/10.48597/RYJ8-QE6M +https://doi.org/10.48597/CF9D-9SJV +https://doi.org/10.48597/TW54-XHYZ +https://doi.org/10.48597/KJ5T-KCAB +https://doi.org/10.48597/6XUW-BNV9 +https://doi.org/10.48597/TVWP-KWNW +https://doi.org/10.48597/NHBS-CYE5 +https://doi.org/10.48597/8N5G-9AAS +https://doi.org/10.48597/DGSP-DXEV +https://doi.org/10.48597/MF5R-2DCG +https://doi.org/10.48597/AJ4B-TV9A +https://doi.org/10.48597/6PJD-CYPF +https://doi.org/10.48597/N4VG-E935 +https://doi.org/10.48597/CCMS-VWUD +https://doi.org/10.48597/MGMY-6UVR +https://doi.org/10.48597/46EB-MGNA +https://doi.org/10.48597/P65G-VHJB +https://doi.org/10.48597/JSZN-6BQ9 +https://doi.org/10.48597/S8QK-CCDB +https://doi.org/10.48597/DRMD-EJ46 +https://doi.org/10.48597/NR99-GZHH +https://doi.org/10.48597/UABA-BZQJ +https://doi.org/10.48597/DAYX-UCH3 +https://doi.org/10.48597/FBDH-9DGV +https://doi.org/10.48597/E7JE-4A7K +https://doi.org/10.48597/H4DA-AK7W +https://doi.org/10.48597/F9RA-2BYE +https://doi.org/10.48597/TKP9-GG2K +https://doi.org/10.48597/RK8B-DAEY +https://doi.org/10.48597/XT3H-ERKT +https://doi.org/10.48597/PQTV-NXKV +https://doi.org/10.48597/244J-BVE2 +https://doi.org/10.48597/STVK-CDKH +https://doi.org/10.48597/JSEU-4T3Z +https://doi.org/10.48597/3SHY-NGWE +https://doi.org/10.48597/3FJJ-X6G5 +https://doi.org/10.48597/YWDK-GCQP +https://doi.org/10.48597/9UJF-7KV4 +https://doi.org/10.48597/7DR4-SK7Q +https://doi.org/10.48597/SF58-G9RJ +https://doi.org/10.48597/RRA7-HZ54 +https://doi.org/10.48597/GR4V-RP2U +https://doi.org/10.48597/9TS4-KKBZ +https://doi.org/10.48597/RX7Q-RNJQ +https://doi.org/10.48597/GV4B-5TBN +https://doi.org/10.48597/H2PR-WQPU +https://doi.org/10.48597/H4WH-7NEE +https://doi.org/10.48597/A4H5-NZA2 +https://doi.org/10.48597/X64M-5JMC +https://doi.org/10.48597/BVCM-E28G +https://doi.org/10.48597/EGRX-TFGP +https://doi.org/10.48597/ABXN-Y6Y6 +https://doi.org/10.48597/GUBV-YDK9 +https://doi.org/10.48597/FF6W-88GP +https://doi.org/10.48597/DN2K-5WQ9 +https://doi.org/10.48597/JHE8-4K5S +https://doi.org/10.48597/CGAJ-ANDY +https://doi.org/10.48597/3VCK-4CBV +https://doi.org/10.48597/2H3S-QRSA +https://doi.org/10.48597/3Y49-NNTU +https://doi.org/10.48597/96XG-T2E3 +https://doi.org/10.48597/8S4W-3X5Y +https://doi.org/10.48597/3PPA-DBZM +https://doi.org/10.48597/WB57-KJXC +https://doi.org/10.48597/GA6Q-7HKK +https://doi.org/10.48597/VSH8-HKX7 +https://doi.org/10.48597/WGX2-KBWF +https://doi.org/10.48597/4GFN-6FKN +https://doi.org/10.48597/XZ75-39UT +https://doi.org/10.48597/9P2Y-2CA8 +https://doi.org/10.48597/3WZ7-YBQM +https://doi.org/10.48597/BB96-Q3Q9 +https://doi.org/10.48597/ZC55-GXP6 +https://doi.org/10.48597/VB2T-PQ4T +https://doi.org/10.48597/97NQ-K7WA +https://doi.org/10.48597/WUY6-5E2W +https://doi.org/10.48597/VQCN-Q3A4 +https://doi.org/10.48597/GXW4-GYXE +https://doi.org/10.48597/VA2A-MKG4 +https://doi.org/10.48597/DTAN-E4U7 +https://doi.org/10.48597/JJ3R-GZ3N +https://doi.org/10.48597/6NW3-YYTG +https://doi.org/10.48597/W5JJ-RHYC +https://doi.org/10.48597/EVB2-3M98 +https://doi.org/10.48597/GSQR-6WDM +https://doi.org/10.48597/C8KJ-3C99 +https://doi.org/10.48597/UFSK-X8TR +https://doi.org/10.48597/4HE2-9DPV +https://doi.org/10.48597/QKZ8-AV5S +https://doi.org/10.48597/6K4M-S9VV +https://doi.org/10.48597/2HHW-4XYA +https://doi.org/10.48597/HPCC-D2RT +https://doi.org/10.48597/3CHC-P74P +https://doi.org/10.48597/YQRU-6XDB +https://doi.org/10.48597/DHCH-ZYW9 +https://doi.org/10.48597/BA9N-QKJZ +https://doi.org/10.48597/KQWJ-RAJ2 +https://doi.org/10.48597/XBCT-WZHQ +https://doi.org/10.48597/4CTB-4JJU +https://doi.org/10.48597/KABE-XUKP +https://doi.org/10.48597/GMTN-WA3H +https://doi.org/10.48597/BHZG-H99G +https://doi.org/10.48597/JAEM-3ZU7 +https://doi.org/10.48597/4NJS-MMRQ +https://doi.org/10.48597/288Z-KQAJ +https://doi.org/10.48597/3PDS-S5XH +https://doi.org/10.48597/E72X-MJAZ +https://doi.org/10.48597/RTRF-WR99 +https://doi.org/10.48597/49K4-5W7D +https://doi.org/10.48597/256F-UHB9 +https://doi.org/10.48597/X8Q9-N4F4 +https://doi.org/10.48597/W42R-MHY7 +https://doi.org/10.48597/W94A-N2EE +https://doi.org/10.48597/WJPW-D2KM +https://doi.org/10.48597/JA7U-68M7 +https://doi.org/10.48597/MHBD-46RK +https://doi.org/10.48597/2A3N-C3SU +https://doi.org/10.48597/UF4B-XTU3 +https://doi.org/10.48597/UDRS-E4ZD +https://doi.org/10.48597/N3KX-CFTC +https://doi.org/10.48597/NA25-U2BT +https://doi.org/10.48597/R4G3-NHTB +https://doi.org/10.48597/VFBH-ERV8 +https://doi.org/10.48597/CXDN-X9ME +https://doi.org/10.48597/BZJS-QQD2 +https://doi.org/10.48597/5NST-U6GP +https://doi.org/10.48597/7989-XKEP +https://doi.org/10.48597/S5MU-ER3M +https://doi.org/10.48597/AZZ5-S6XG +https://doi.org/10.48597/RQ26-9842 +https://doi.org/10.48597/G5BJ-NXPK +https://doi.org/10.48597/GJJZ-QBDC +https://doi.org/10.48597/YY6E-GEYM +https://doi.org/10.48597/MFNH-PSJB +https://doi.org/10.48597/2B8K-7YAY +https://doi.org/10.48597/8H4W-UHJ5 +https://doi.org/10.48597/9T4Q-KZAD +https://doi.org/10.48597/P9XN-V82H +https://doi.org/10.48597/U8W6-7A7S +https://doi.org/10.48597/ES6R-JBJT +https://doi.org/10.48597/TADW-5SUP +https://doi.org/10.48597/WSXY-RJMP +https://doi.org/10.48597/YGSR-59A8 +https://doi.org/10.48597/AYH8-U98U +https://doi.org/10.48597/8QBU-SX4G +https://doi.org/10.48597/ZU6T-6EVZ +https://doi.org/10.48597/EJJB-RUVB +https://doi.org/10.48597/H7Z8-2T2V +https://doi.org/10.48597/X7EY-T27J +https://doi.org/10.48597/XTAY-7GE8 +https://doi.org/10.48597/CGX4-V2AW +https://doi.org/10.48597/8SDP-MCV5 +https://doi.org/10.48597/VN8A-B55C +https://doi.org/10.48597/WCHP-UQ58 +https://doi.org/10.48597/9VRT-KUA2 +https://doi.org/10.48597/WETJ-Q3Z5 +https://doi.org/10.48597/RX7Q-YC6P +https://doi.org/10.48597/VQN7-92JR +https://doi.org/10.48597/J8F7-3VSB +https://doi.org/10.48597/8JD8-6KHY +https://doi.org/10.48597/4GTY-EFUG +https://doi.org/10.48597/BZ7K-XVZE +https://doi.org/10.48597/JEXF-SQUF +https://doi.org/10.48597/VVEA-VFTE +https://doi.org/10.48597/Q6XM-UNXA +https://doi.org/10.48597/CV45-ARQA +https://doi.org/10.48597/9NHQ-25A6 +https://doi.org/10.48597/6H76-6KHE +https://doi.org/10.48597/EWGG-9MYR +https://doi.org/10.48597/ZHF9-8UTX +https://doi.org/10.48597/8HD4-WSS3 +https://doi.org/10.48597/6MMC-BZWH +https://doi.org/10.48597/RWX7-VBWB +https://doi.org/10.48597/E7NU-PAR3 +https://doi.org/10.48597/CTJJ-PUNE +https://doi.org/10.48597/5FUV-MSTA +https://doi.org/10.48597/49BU-CF9A +https://doi.org/10.48597/WNNS-MG2H +https://doi.org/10.48597/6PZ8-FHWD +https://doi.org/10.48597/Z9F7-RDV7 +https://doi.org/10.48597/HFUP-J7Q7 +https://doi.org/10.48597/VQWM-H3AC +https://doi.org/10.48597/D52C-GVYJ +https://doi.org/10.48597/JSF5-YRN6 +https://doi.org/10.48597/FUQA-856X +https://doi.org/10.48597/XDFN-QZGA +https://doi.org/10.48597/69JS-Q32C +https://doi.org/10.48597/R2JA-QKS4 +https://doi.org/10.48597/WQQQ-S783 +https://doi.org/10.48597/6YQB-2MEN +https://doi.org/10.48597/8F8R-DA96 +https://doi.org/10.48597/QGZS-5XKM +https://doi.org/10.48597/37GA-PV96 +https://doi.org/10.48597/3HGH-C9P3 +https://doi.org/10.48597/X8V4-MAZV +https://doi.org/10.48597/NDCM-RCGW +https://doi.org/10.48597/DQ8E-99YM +https://doi.org/10.48597/7GEN-F8ND +https://doi.org/10.48597/52CT-DDNT +https://doi.org/10.48597/3VA6-YCVY +https://doi.org/10.48597/YP6J-MYA8 +https://doi.org/10.48597/BCVT-SEJV +https://doi.org/10.48597/78N8-K5XQ +https://doi.org/10.48597/96KH-EJRA +https://doi.org/10.48597/Z2NT-RJAF +https://doi.org/10.48597/KCXB-QQRR +https://doi.org/10.48597/CKHH-2HS5 +https://doi.org/10.48597/THUM-CEY8 +https://doi.org/10.48597/C4VN-XJD2 +https://doi.org/10.48597/YRJZ-6HVX +https://doi.org/10.48597/WJQ9-Q5A2 +https://doi.org/10.48597/9HZ7-4FN4 +https://doi.org/10.48597/UHZB-5BMP +https://doi.org/10.48597/868K-ZYU2 +https://doi.org/10.48597/B966-WQDS +https://doi.org/10.48597/5MSP-59GS +https://doi.org/10.48597/AC4T-5UZ5 +https://doi.org/10.48597/W67V-X88N +https://doi.org/10.48597/WZC8-TQEW +https://doi.org/10.48597/2J8E-PC6P +https://doi.org/10.48597/BTMF-JQJJ +https://doi.org/10.48597/BGXC-QUH5 +https://doi.org/10.48597/TR2Y-5B8W +https://doi.org/10.48597/E5WB-NXRG +https://doi.org/10.48597/HY6Q-CU7D +https://doi.org/10.48597/JNBH-3FXB +https://doi.org/10.48597/PNBZ-JGH3 +https://doi.org/10.48597/5QEP-Z25J +https://doi.org/10.48597/GA5M-8FJ3 +https://doi.org/10.48597/834H-VUTV +https://doi.org/10.48597/XK2C-X4DZ +https://doi.org/10.48597/BTUX-DZ2E +https://doi.org/10.48597/M4CS-NVM3 +https://doi.org/10.48597/F774-9ADN +https://doi.org/10.48597/MD2X-HJ5H +https://doi.org/10.48597/YHEP-P29M +https://doi.org/10.48597/Y5NR-38UE +https://doi.org/10.48597/2YQH-8UQ9 +https://doi.org/10.48597/K836-7Z2N +https://doi.org/10.48597/RPWX-UE7D +https://doi.org/10.48597/KEJJ-3S34 +https://doi.org/10.48597/6HR3-BG67 +https://doi.org/10.48597/U7ZV-99BZ +https://doi.org/10.48597/HZXR-QJRD +https://doi.org/10.48597/SDDX-M5RG +https://doi.org/10.48597/SP78-2BKV +https://doi.org/10.48597/44GJ-Z6QB +https://doi.org/10.48597/7ETC-9CFQ +https://doi.org/10.48597/NAPP-U4PN +https://doi.org/10.48597/KCFH-JDKJ +https://doi.org/10.48597/V2YA-YVFF +https://doi.org/10.48597/J75N-XAE2 +https://doi.org/10.48597/9QFV-3SAR +https://doi.org/10.48597/TPMQ-9YMY +https://doi.org/10.48597/8MA6-4H58 +https://doi.org/10.48597/YWWT-54Z2 +https://doi.org/10.48597/KRV4-2JQY +https://doi.org/10.48597/Q6VF-Z7PA +https://doi.org/10.48597/GTPN-RMMB +https://doi.org/10.48597/85DK-B9CT +https://doi.org/10.48597/GYMZ-9EVZ +https://doi.org/10.48597/RBNV-5QRK +https://doi.org/10.48597/KJ4Y-KKJQ +https://doi.org/10.48597/P5BH-794M +https://doi.org/10.48597/TZZN-4NJX +https://doi.org/10.48597/9AW7-GGSX +https://doi.org/10.48597/K8T8-GAC3 +https://doi.org/10.48597/C7SC-ZJ9A +https://doi.org/10.48597/FZSE-Z33C +https://doi.org/10.48597/TFMD-DSKU +https://doi.org/10.48597/AMKG-W9AR +https://doi.org/10.48597/AUMJ-EES5 +https://doi.org/10.48597/2JZ3-F4RY +https://doi.org/10.48597/2YQB-6A7F +https://doi.org/10.48597/52PW-DVSZ +https://doi.org/10.48597/QAG9-62E5 +https://doi.org/10.48597/XZ3M-XT2U +https://doi.org/10.48597/TK68-7QPZ +https://doi.org/10.48597/353U-MQAP +https://doi.org/10.48597/G4PN-WNKE +https://doi.org/10.48597/7HMK-DX85 +https://doi.org/10.48597/5WUH-VUKT +https://doi.org/10.48597/C6Y2-XMCN +https://doi.org/10.48597/9XCG-XKKR +https://doi.org/10.48597/KJCU-5EDG +https://doi.org/10.48597/YMX3-VY7H +https://doi.org/10.48597/UUNF-TZXQ +https://doi.org/10.48597/29TP-3FSF +https://doi.org/10.48597/D9BY-X6T8 +https://doi.org/10.48597/HZ49-BXMR +https://doi.org/10.48597/FQKV-CUNW +https://doi.org/10.48597/5Y79-BDAD +https://doi.org/10.48597/FC7X-MRED +https://doi.org/10.48597/PKQP-EHQF +https://doi.org/10.48597/4GWD-HZH9 +https://doi.org/10.48597/QQHD-5JVS +https://doi.org/10.48597/YY68-CSSS +https://doi.org/10.48597/VDYW-GEHK +https://doi.org/10.48597/BV6N-VGCB +https://doi.org/10.48597/MYNZ-56V9 +https://doi.org/10.48597/XYFT-H46A +https://doi.org/10.48597/UZDM-TPCV +https://doi.org/10.48597/X3T8-SYZW +https://doi.org/10.48597/U8YP-HVS2 +https://doi.org/10.48597/WJZS-NDZA +https://doi.org/10.48597/3X32-7CMH +https://doi.org/10.48597/TP92-E944 +https://doi.org/10.48597/583F-6NMJ +https://doi.org/10.48597/MHAV-78BV +https://doi.org/10.48597/SC7B-WTHF +https://doi.org/10.48597/JPQJ-CF9H +https://doi.org/10.48597/PCC8-5ZR9 +https://doi.org/10.48597/WZQ6-RJ69 +https://doi.org/10.48597/DANR-4GFR +https://doi.org/10.48597/FNCR-6MQA +https://doi.org/10.48597/ASS5-QYDD +https://doi.org/10.48597/BEHM-FJAX +https://doi.org/10.48597/UVFC-TUDA +https://doi.org/10.48597/G57Q-85JY +https://doi.org/10.48597/KKZR-RZ96 +https://doi.org/10.48597/XV7G-U2KB +https://doi.org/10.48597/VHBS-NZV7 +https://doi.org/10.48597/2F9X-PSBD +https://doi.org/10.48597/EDQA-X7ZA +https://doi.org/10.48597/Z2D4-EDZY +https://doi.org/10.48597/6QFB-7Q7U +https://doi.org/10.48597/AZ3E-7AKV +https://doi.org/10.48597/MP3N-P3X3 +https://doi.org/10.48597/C4RQ-SPNK +https://doi.org/10.48597/J279-ZPY8 +https://doi.org/10.48597/YK7P-T42P +https://doi.org/10.48597/UFDH-JCQ3 +https://doi.org/10.48597/YN6E-4B55 +https://doi.org/10.48597/CR3Z-PRCH +https://doi.org/10.48597/87TD-5ZWE +https://doi.org/10.48597/R35B-YSQN +https://doi.org/10.48597/2YEW-YCZQ +https://doi.org/10.48597/5Q8D-XDYB +https://doi.org/10.48597/RNF6-Q3W2 +https://doi.org/10.48597/CM9X-EEQ9 +https://doi.org/10.48597/XVBV-GFKH +https://doi.org/10.48597/K46F-GD2P +https://doi.org/10.48597/V89Z-F58G +https://doi.org/10.48597/S8A7-PK2D +https://doi.org/10.48597/395F-75YG +https://doi.org/10.48597/Z4XT-VYGH +https://doi.org/10.48597/AYN5-E6VM +https://doi.org/10.48597/J45P-X2D2 +https://doi.org/10.48597/BHFB-KKJS +https://doi.org/10.48597/8C5C-S7M3 +https://doi.org/10.48597/NPKW-FDPV +https://doi.org/10.48597/8596-9NDJ +https://doi.org/10.48597/X586-Q6WR +https://doi.org/10.48597/3RAR-N5S8 +https://doi.org/10.48597/ZFT3-ATUH +https://doi.org/10.48597/X4WA-PV96 +https://doi.org/10.48597/HFD9-RDYH +https://doi.org/10.48597/B9DW-4YB5 +https://doi.org/10.48597/SUSV-PTR5 +https://doi.org/10.48597/2S7E-PCMS +https://doi.org/10.48597/H9Z6-G45A +https://doi.org/10.48597/DXGY-WTDW +https://doi.org/10.48597/EFJA-PXJU +https://doi.org/10.48597/V8WU-69DW +https://doi.org/10.48597/GEE9-X8KR +https://doi.org/10.48597/FEMH-GQ69 +https://doi.org/10.48597/U3GV-XVPY +https://doi.org/10.48597/FFJH-K67S +https://doi.org/10.48597/KBPH-VDWB +https://doi.org/10.48597/FKGD-Q2DN +https://doi.org/10.48597/AQQK-5A6N +https://doi.org/10.48597/3YY5-WSAF +https://doi.org/10.48597/54F8-7MJR +https://doi.org/10.48597/DWTU-92BQ +https://doi.org/10.48597/XK33-QAQU +https://doi.org/10.48597/P4S8-ZFS6 +https://doi.org/10.48597/E78X-8Q55 +https://doi.org/10.48597/6DGR-MUTK +https://doi.org/10.48597/V89C-P2Y8 +https://doi.org/10.48597/P3HD-KWCT +https://doi.org/10.48597/NRUA-W95Z +https://doi.org/10.48597/MZAZ-932Z +https://doi.org/10.48597/FWPX-5P5J +https://doi.org/10.48597/Y434-5AY7 +https://doi.org/10.48597/NJZS-HRWV +https://doi.org/10.48597/UQPX-744N +https://doi.org/10.48597/TZ5K-A5RQ +https://doi.org/10.48597/X6H2-AZUS +https://doi.org/10.48597/KNT7-Y6JH +https://doi.org/10.48597/GBPZ-JZBM +https://doi.org/10.48597/NG57-VBW6 +https://doi.org/10.48597/VW74-Y8T5 +https://doi.org/10.48597/Z5WR-EA5J +https://doi.org/10.48597/BK33-HJUX +https://doi.org/10.48597/YSPS-CF5R +https://doi.org/10.48597/BHSE-X6SQ +https://doi.org/10.48597/FXNR-66ET +https://doi.org/10.48597/NSM8-E3R8 +https://doi.org/10.48597/YYEB-3GU8 +https://doi.org/10.48597/4RVW-WSTJ +https://doi.org/10.48597/5W5T-34T6 +https://doi.org/10.48597/ZVFQ-7TS7 +https://doi.org/10.48597/6RPR-E9NR +https://doi.org/10.48597/XAUY-9BU8 +https://doi.org/10.48597/WAUT-KZMU +https://doi.org/10.48597/X6Z9-5X6W +https://doi.org/10.48597/TEBX-PWZ7 +https://doi.org/10.48597/RH38-RN4E +https://doi.org/10.48597/2VDH-J4ST +https://doi.org/10.48597/X7DQ-SYMX +https://doi.org/10.48597/GRGN-3MBY +https://doi.org/10.48597/HC7Q-QUWN +https://doi.org/10.48597/CQ6T-Q6JE +https://doi.org/10.48597/EZKK-69AK +https://doi.org/10.48597/5273-FB8V +https://doi.org/10.48597/MV5Q-TNE9 +https://doi.org/10.48597/MSSD-9H3C +https://doi.org/10.48597/2YB3-GZBV +https://doi.org/10.48597/G2Q3-EKY8 +https://doi.org/10.48597/WFB8-DQ3F +https://doi.org/10.48597/H25B-8ERJ +https://doi.org/10.48597/WBKT-XS2S +https://doi.org/10.48597/RZMJ-GJJA +https://doi.org/10.48597/G9F6-FHPG +https://doi.org/10.48597/NE34-BJQJ +https://doi.org/10.48597/A36R-AN6V +https://doi.org/10.48597/JKVZ-GR4K +https://doi.org/10.48597/QC8N-RRQ8 +https://doi.org/10.48597/34XW-TB8M +https://doi.org/10.48597/V89B-XB5E +https://doi.org/10.48597/ZYVZ-YG93 +https://doi.org/10.48597/ANY5-JWN4 +https://doi.org/10.48597/53FN-YP9K +https://doi.org/10.48597/E92T-JU6G +https://doi.org/10.48597/APBU-HUQH +https://doi.org/10.48597/4HK6-93A3 +https://doi.org/10.48597/EYKX-7E4V +https://doi.org/10.48597/3FYJ-FDNW +https://doi.org/10.48597/S5T7-RBKF +https://doi.org/10.48597/E6G8-7PNJ +https://doi.org/10.48597/F296-HCJ2 +https://doi.org/10.48597/5V7P-HAED +https://doi.org/10.48597/33PH-53N3 +https://doi.org/10.48597/UM42-CU2D +https://doi.org/10.48597/M6HP-WNGK +https://doi.org/10.48597/VRCE-8MV9 +https://doi.org/10.48597/QBX4-JWPF +https://doi.org/10.48597/TF42-8JE9 +https://doi.org/10.48597/WHGW-GMWG +https://doi.org/10.48597/TEV9-WPZ9 +https://doi.org/10.48597/E8UH-WXE8 +https://doi.org/10.48597/8BJN-XMY2 +https://doi.org/10.48597/JHKM-R5X7 +https://doi.org/10.48597/XMCA-MTRD +https://doi.org/10.48597/JTAW-CJK6 +https://doi.org/10.48597/85XM-MHTY +https://doi.org/10.48597/X2CX-V9UA +https://doi.org/10.48597/ENBX-NB6V +https://doi.org/10.48597/7UV3-PDJS +https://doi.org/10.48597/2CC3-2NHR +https://doi.org/10.48597/H5JG-9V2E +https://doi.org/10.48597/GATM-JBBF +https://doi.org/10.48597/P8XK-DF5H +https://doi.org/10.48597/H5QZ-828S +https://doi.org/10.48597/3B6Y-GFN7 +https://doi.org/10.48597/BE6C-QKGC +https://doi.org/10.48597/DRQX-2M5R +https://doi.org/10.48597/MFP8-NHNS +https://doi.org/10.48597/4CNT-X9N7 +https://doi.org/10.48597/S9JB-RD4P +https://doi.org/10.48597/M5B5-8EC6 +https://doi.org/10.48597/3568-2W3Q +https://doi.org/10.48597/HDVP-JPZS +https://doi.org/10.48597/FGUQ-9W9Q +https://doi.org/10.48597/3J2Z-UZFN +https://doi.org/10.48597/3WVX-5FDX +https://doi.org/10.48597/AM7V-MXBA +https://doi.org/10.48597/6MDP-RRWW +https://doi.org/10.48597/6XVF-TEJE +https://doi.org/10.48597/YZME-XK48 +https://doi.org/10.48597/N27B-SFBY +https://doi.org/10.48597/BU7P-KQN2 +https://doi.org/10.48597/YW4D-4WU7 +https://doi.org/10.48597/Q376-Y6K8 +https://doi.org/10.48597/R99Y-S9D8 +https://doi.org/10.48597/HJ5M-JHTN +https://doi.org/10.48597/TDBH-83XT +https://doi.org/10.48597/HWK9-25UF +https://doi.org/10.48597/GCR2-9NBH +https://doi.org/10.48597/ZH4E-VDM6 +https://doi.org/10.48597/FN8T-CU8R +https://doi.org/10.48597/6VEH-TUSF +https://doi.org/10.48597/8SQY-SJPV +https://doi.org/10.48597/BKV7-S48E +https://doi.org/10.48597/HX23-VARN +https://doi.org/10.48597/5T7S-6PXT +https://doi.org/10.48597/U4GZ-EWDR +https://doi.org/10.48597/DB74-N8A3 +https://doi.org/10.48597/26J6-7YJT +https://doi.org/10.48597/KCXH-9RX6 +https://doi.org/10.48597/SYNH-MY55 +https://doi.org/10.48597/FB4T-NXDD +https://doi.org/10.48597/D68F-SJK3 +https://doi.org/10.48597/D8CX-BNKP +https://doi.org/10.48597/582X-SG9R +https://doi.org/10.48597/TDHZ-8ARX +https://doi.org/10.48597/PB2F-FV4T +https://doi.org/10.48597/5NSF-TNP8 +https://doi.org/10.48597/T9ZX-W8N8 +https://doi.org/10.48597/XAJM-3CJG +https://doi.org/10.48597/YW74-KPKY +https://doi.org/10.48597/XQJB-4NCK +https://doi.org/10.48597/JAMS-DX6B +https://doi.org/10.48597/H77N-MX2A +https://doi.org/10.48597/5WWF-Y3MG +https://doi.org/10.48597/FMEG-845E +https://doi.org/10.48597/RNR5-P9YU +https://doi.org/10.48597/T6YT-J8BU +https://doi.org/10.48597/922N-MM7K +https://doi.org/10.48597/TERE-PGUN +https://doi.org/10.48597/P84X-RHEK +https://doi.org/10.48597/ZFW2-UB3U +https://doi.org/10.48597/SX7T-VMTB +https://doi.org/10.48597/KQFY-WSNJ +https://doi.org/10.48597/7A39-792H +https://doi.org/10.48597/6C9C-3GC2 +https://doi.org/10.48597/FEQ9-8G9R +https://doi.org/10.48597/KTB8-UWY5 +https://doi.org/10.48597/W4YP-B9B8 +https://doi.org/10.48597/AKCA-EMHN +https://doi.org/10.48597/JK3B-S5RU +https://doi.org/10.48597/54CV-VFV4 +https://doi.org/10.48597/SFU4-CS9T +https://doi.org/10.48597/HDG9-ZHWZ +https://doi.org/10.48597/GXMR-D82U +https://doi.org/10.48597/2PC2-SUU9 +https://doi.org/10.48597/BPYT-QSGV +https://doi.org/10.48597/QHJ4-35MS +https://doi.org/10.48597/WQ6F-T7H3 +https://doi.org/10.48597/EAKR-T86C +https://doi.org/10.48597/QT6N-ZDZZ +https://doi.org/10.48597/8P5V-9RGK +https://doi.org/10.48597/X43Z-PMJY +https://doi.org/10.48597/CTBB-22JC +https://doi.org/10.48597/S6GG-8JC2 +https://doi.org/10.48597/WXHA-52JG +https://doi.org/10.48597/7GBS-35JW +https://doi.org/10.48597/P6M7-4RBM +https://doi.org/10.48597/NNKE-DTB6 +https://doi.org/10.48597/ZV99-GZXP +https://doi.org/10.48597/4ABG-9FED +https://doi.org/10.48597/DT58-ZSN7 +https://doi.org/10.48597/PZNX-VYXF +https://doi.org/10.48597/DM3C-W3UW +https://doi.org/10.48597/F4B6-A9AH +https://doi.org/10.48597/VAT7-KWTU +https://doi.org/10.48597/ZX9A-6R53 +https://doi.org/10.48597/P85Y-4F2G +https://doi.org/10.48597/EK7Z-4X95 +https://doi.org/10.48597/G3QP-M6PT +https://doi.org/10.48597/WJMA-JE7N +https://doi.org/10.48597/CDYB-KU38 +https://doi.org/10.48597/Z9HM-85AN +https://doi.org/10.48597/9SUJ-RK7C +https://doi.org/10.48597/FWYG-WW3V +https://doi.org/10.48597/TMJ4-BBJX +https://doi.org/10.48597/WEG5-FKXS +https://doi.org/10.48597/YV4S-SG83 +https://doi.org/10.48597/V266-C6TV +https://doi.org/10.48597/YH8M-Q94S +https://doi.org/10.48597/GTPD-NFR4 +https://doi.org/10.48597/Y3GP-GKP7 +https://doi.org/10.48597/43TC-V86G +https://doi.org/10.48597/8TQ7-2KHU +https://doi.org/10.48597/PY2P-FJS5 +https://doi.org/10.48597/AG79-463Y +https://doi.org/10.48597/63B3-EU6K +https://doi.org/10.48597/939C-SC4B +https://doi.org/10.48597/W4NH-E9CJ +https://doi.org/10.48597/6YAF-FWUB +https://doi.org/10.48597/8DJQ-9J2M +https://doi.org/10.48597/R8Q7-NX3U +https://doi.org/10.48597/XV8M-KSNS +https://doi.org/10.48597/N374-6B79 +https://doi.org/10.48597/N9ZM-RCSF +https://doi.org/10.48597/PXBD-AE6A +https://doi.org/10.48597/MPFD-EN6D +https://doi.org/10.48597/G8K6-KZR6 +https://doi.org/10.48597/RP98-QJZP +https://doi.org/10.48597/CMPY-TA9B +https://doi.org/10.48597/QDJB-CSPC +https://doi.org/10.48597/JNFU-UM7X +https://doi.org/10.48597/WD9R-Z8C7 +https://doi.org/10.48597/AXV8-WGJ6 +https://doi.org/10.48597/JPPG-XK33 +https://doi.org/10.48597/9WF9-SGYZ +https://doi.org/10.48597/XTH9-DSFE +https://doi.org/10.48597/793W-423M +https://doi.org/10.48597/NZF5-D6PN +https://doi.org/10.48597/CT9R-TTZ4 +https://doi.org/10.48597/TCBD-YMJB +https://doi.org/10.48597/2QX3-UAAW +https://doi.org/10.48597/N56B-UJU4 +https://doi.org/10.48597/2KV5-HUTG +https://doi.org/10.48597/A8W5-Z54C +https://doi.org/10.48597/THBB-THE2 +https://doi.org/10.48597/7K2M-D2JF +https://doi.org/10.48597/WXPM-HNDP +https://doi.org/10.48597/WBKA-4HF2 +https://doi.org/10.48597/Z9E3-8YSW +https://doi.org/10.48597/68WW-MT25 +https://doi.org/10.48597/SPRF-BQKJ +https://doi.org/10.48597/RJXT-DRXW +https://doi.org/10.48597/PE5Q-4ZFC +https://doi.org/10.48597/EXA2-PTR3 +https://doi.org/10.48597/HUBH-H9UN +https://doi.org/10.48597/RXDE-TUBF +https://doi.org/10.48597/2PGD-UB48 +https://doi.org/10.48597/VJBG-2D36 +https://doi.org/10.48597/W5R8-9BFZ +https://doi.org/10.48597/NE39-9C4S +https://doi.org/10.48597/KSEJ-FC58 +https://doi.org/10.48597/3JCR-RZAX +https://doi.org/10.48597/JTWY-434S +https://doi.org/10.48597/GVZU-J527 +https://doi.org/10.48597/46U7-Q5NC +https://doi.org/10.48597/AGCX-SZCN +https://doi.org/10.48597/UXV2-ZSSB +https://doi.org/10.48597/EP4K-ZUCS +https://doi.org/10.48597/Z88S-2XQD +https://doi.org/10.48597/DPAM-YVYQ +https://doi.org/10.48597/FKHP-UJYT +https://doi.org/10.48597/5RPK-Z835 +https://doi.org/10.48597/5ZHM-256P +https://doi.org/10.48597/HMTS-HBK6 +https://doi.org/10.48597/EB5X-C979 +https://doi.org/10.48597/CH6Q-UAFY +https://doi.org/10.48597/6WDQ-8RUA +https://doi.org/10.48597/CKPV-CFSG +https://doi.org/10.48597/QPY8-SG3A +https://doi.org/10.48597/D235-PVRK +https://doi.org/10.48597/RPQK-Q472 +https://doi.org/10.48597/VUCF-57VA +https://doi.org/10.48597/E5CR-AJ53 +https://doi.org/10.48597/ESEA-F3KV +https://doi.org/10.48597/RMGJ-QCHM +https://doi.org/10.48597/4VS5-XXCK +https://doi.org/10.48597/X7W9-DRZE +https://doi.org/10.48597/57JB-RX8M +https://doi.org/10.48597/3AKT-ZKPY +https://doi.org/10.48597/RHCE-WSUK +https://doi.org/10.48597/NGHM-X7P9 +https://doi.org/10.48597/MA38-GQT9 +https://doi.org/10.48597/MFTD-UYAK +https://doi.org/10.48597/BVR3-UYRY +https://doi.org/10.48597/CM53-5EGZ +https://doi.org/10.48597/2HYT-8Q42 +https://doi.org/10.48597/N47M-HAQP +https://doi.org/10.48597/ZGZH-TH54 +https://doi.org/10.48597/BEU4-4HNM +https://doi.org/10.48597/MUSB-JMB7 +https://doi.org/10.48597/R4HX-636G +https://doi.org/10.48597/RS63-MEWT +https://doi.org/10.48597/UUCV-SVPZ +https://doi.org/10.48597/HGCT-Q8E6 +https://doi.org/10.48597/DVFG-2M3F +https://doi.org/10.48597/B8C6-VVPM +https://doi.org/10.48597/37CT-PUDM +https://doi.org/10.48597/JRMP-AZBN +https://doi.org/10.48597/DANB-U9MQ +https://doi.org/10.48597/W82N-FMM3 +https://doi.org/10.48597/78ZU-DT4W +https://doi.org/10.48597/DQAG-V6Y7 +https://doi.org/10.48597/3T9A-6SQE +https://doi.org/10.48597/TFBR-CZMA +https://doi.org/10.48597/X8G4-3NMM +https://doi.org/10.48597/9H8M-6NAV +https://doi.org/10.48597/FZ7Z-FHU4 +https://doi.org/10.48597/Z2UM-ZWX2 +https://doi.org/10.48597/35VF-W58T +https://doi.org/10.48597/VGAP-4VED +https://doi.org/10.48597/SD7F-ZRPZ +https://doi.org/10.48597/VUU9-64EG +https://doi.org/10.48597/AXNP-HJ9T +https://doi.org/10.48597/RK8G-2FPU +https://doi.org/10.48597/CQF6-G79C +https://doi.org/10.48597/GPHG-W59N +https://doi.org/10.48597/FCEV-A6YW +https://doi.org/10.48597/H72H-TYUU +https://doi.org/10.48597/9DFX-2YGQ +https://doi.org/10.48597/KZYD-HUU7 +https://doi.org/10.48597/VXCD-H4G4 +https://doi.org/10.48597/JV5B-GCM2 +https://doi.org/10.48597/B8H7-SJMR +https://doi.org/10.48597/KKJY-FP84 +https://doi.org/10.48597/2V9N-6Z5R +https://doi.org/10.48597/QT7Z-VVJY +https://doi.org/10.48597/B2MU-8VMM +https://doi.org/10.48597/97Y3-H69V +https://doi.org/10.48597/FHX7-VXJC +https://doi.org/10.48597/SK95-WF89 +https://doi.org/10.48597/KDEH-MREK +https://doi.org/10.48597/SR6M-UN4G +https://doi.org/10.48597/5DEJ-4DDM +https://doi.org/10.48597/C4P8-NZZ9 +https://doi.org/10.48597/3C3V-WVJG +https://doi.org/10.48597/54FE-YP8Y +https://doi.org/10.48597/A3CD-33YU +https://doi.org/10.48597/42M4-KHNG +https://doi.org/10.48597/TFTP-S5RH +https://doi.org/10.48597/PK47-K62T +https://doi.org/10.48597/2B7W-3BG2 +https://doi.org/10.48597/PENZ-Z4WD +https://doi.org/10.48597/YUVF-GYZQ +https://doi.org/10.48597/P9NA-FU5P +https://doi.org/10.48597/Z99V-779A +https://doi.org/10.48597/HAPS-WGKX +https://doi.org/10.48597/57NH-ZNBS +https://doi.org/10.48597/ER9S-S8S3 +https://doi.org/10.48597/8PJD-NF2M +https://doi.org/10.48597/6E9A-8XGP +https://doi.org/10.48597/CVF6-K2V3 +https://doi.org/10.48597/K7K6-VFZ3 +https://doi.org/10.48597/UMQ5-YZFT +https://doi.org/10.48597/5J96-4H4V +https://doi.org/10.48597/KF6A-N782 +https://doi.org/10.48597/YVQQ-2QKS +https://doi.org/10.48597/WNZA-K299 +https://doi.org/10.48597/ZD86-J3EN +https://doi.org/10.48597/XBRN-AHBC +https://doi.org/10.48597/8X7J-RU8Y +https://doi.org/10.48597/BSQG-N6CW +https://doi.org/10.48597/4VMW-JTBX +https://doi.org/10.48597/JYEK-GCQG +https://doi.org/10.48597/BEX4-X948 +https://doi.org/10.48597/NFUW-J82E +https://doi.org/10.48597/DAG6-8WYR +https://doi.org/10.48597/9F48-7M9A +https://doi.org/10.48597/UYBU-6H96 +https://doi.org/10.48597/SHS7-BH7C +https://doi.org/10.48597/N2TZ-SY72 +https://doi.org/10.48597/3CEZ-64M8 +https://doi.org/10.48597/857S-VJZ9 +https://doi.org/10.48597/GEZB-TEKY +https://doi.org/10.48597/NHPY-NM73 +https://doi.org/10.48597/PW4A-MENG +https://doi.org/10.48597/ESER-RX9T +https://doi.org/10.48597/SZ8K-XV63 +https://doi.org/10.48597/DQ5K-5P6B +https://doi.org/10.48597/BKS5-N632 +https://doi.org/10.48597/W74T-EMGC +https://doi.org/10.48597/ZYYY-ESKQ +https://doi.org/10.48597/7NED-RSU8 +https://doi.org/10.48597/6FE7-XM4Z +https://doi.org/10.48597/TNE9-USB2 +https://doi.org/10.48597/3GMJ-3VVX +https://doi.org/10.48597/Q6Y6-KMSF +https://doi.org/10.48597/Z6J3-ZNE7 +https://doi.org/10.48597/K3UA-ANCP +https://doi.org/10.48597/VT59-PJW2 +https://doi.org/10.48597/NNPB-CYFJ +https://doi.org/10.48597/48SQ-SRU5 +https://doi.org/10.48597/2UKG-FNWG +https://doi.org/10.48597/8VCT-UDMU +https://doi.org/10.48597/SNGC-WDJG +https://doi.org/10.48597/JDEJ-4U88 +https://doi.org/10.48597/B6JU-RZQX +https://doi.org/10.48597/54HF-63V5 +https://doi.org/10.48597/KCFG-VHEZ +https://doi.org/10.48597/Z8A8-7GZW +https://doi.org/10.48597/MM43-7YFW +https://doi.org/10.48597/2KC4-4DCN +https://doi.org/10.48597/EX8M-QTAB +https://doi.org/10.48597/F56C-TK5C +https://doi.org/10.48597/BCM2-JM58 +https://doi.org/10.48597/Y9MG-M9KD +https://doi.org/10.48597/HHEG-6G38 +https://doi.org/10.48597/MSTQ-EN3W +https://doi.org/10.48597/BM42-RVS4 +https://doi.org/10.48597/W9AU-HP3Q +https://doi.org/10.48597/PHD5-U6JG +https://doi.org/10.48597/EZYF-MQ7A +https://doi.org/10.48597/Z8B6-H474 +https://doi.org/10.48597/QBHB-MF6W +https://doi.org/10.48597/S3H8-QT52 +https://doi.org/10.48597/27QQ-GVCH +https://doi.org/10.48597/RGV4-ZWH7 +https://doi.org/10.48597/2R88-7UCU +https://doi.org/10.48597/8JXR-TR8W +https://doi.org/10.48597/24QB-HHSF +https://doi.org/10.48597/65VN-KQWK +https://doi.org/10.48597/W4VN-G8F8 +https://doi.org/10.48597/4M6Y-XY3H +https://doi.org/10.48597/9VDB-QPCX +https://doi.org/10.48597/UMGN-5PHD +https://doi.org/10.48597/G264-BMHB +https://doi.org/10.48597/FTG3-B62Z +https://doi.org/10.48597/BJ7K-JFJY +https://doi.org/10.48597/XQXD-YKWD +https://doi.org/10.48597/2V9A-XUSM +https://doi.org/10.48597/DKUQ-KNNV +https://doi.org/10.48597/JHS4-5ZUR +https://doi.org/10.48597/T3DP-W38C +https://doi.org/10.48597/EE5S-DACC +https://doi.org/10.48597/2BZY-KMCA +https://doi.org/10.48597/A25G-KSS9 +https://doi.org/10.48597/JYWV-6ZPE +https://doi.org/10.48597/T8SH-KVSD +https://doi.org/10.48597/WMY2-GAMD +https://doi.org/10.48597/99Q9-THK3 +https://doi.org/10.48597/935D-K7CV +https://doi.org/10.48597/BSDN-JDKV +https://doi.org/10.48597/CYJM-7ABN +https://doi.org/10.48597/VV32-TXXT +https://doi.org/10.48597/Z5AC-UCX7 +https://doi.org/10.48597/47FB-N6VQ +https://doi.org/10.48597/NKPS-KDE6 +https://doi.org/10.48597/SZWU-NDSD +https://doi.org/10.48597/PUMH-8HPE +https://doi.org/10.48597/69AP-BFFZ +https://doi.org/10.48597/MWZE-BSXS +https://doi.org/10.48597/C3UD-WENY +https://doi.org/10.48597/4XF4-UWNF +https://doi.org/10.48597/DRR5-6AZD +https://doi.org/10.48597/257R-DXCZ +https://doi.org/10.48597/68BW-ASKP +https://doi.org/10.48597/YVME-75UG +https://doi.org/10.48597/5KFX-KH84 +https://doi.org/10.48597/TSRY-9YP8 +https://doi.org/10.48597/25YH-2MZE +https://doi.org/10.48597/BVFA-ZVM4 +https://doi.org/10.48597/5V85-5EAN +https://doi.org/10.48597/BTUB-H9R7 +https://doi.org/10.48597/QKCY-A6UX +https://doi.org/10.48597/44GX-XC2B +https://doi.org/10.48597/BSS5-WHRM +https://doi.org/10.48597/EVV3-GGF4 +https://doi.org/10.48597/MZ8P-FTXA +https://doi.org/10.48597/TQJR-UWWS +https://doi.org/10.48597/7TJ8-PWRK +https://doi.org/10.48597/WXRH-PP6G +https://doi.org/10.48597/DXUG-85SG +https://doi.org/10.48597/6XJ2-BGUU +https://doi.org/10.48597/WWRT-ET9G +https://doi.org/10.48597/9WJE-Q2JR +https://doi.org/10.48597/4FZD-R5ZC +https://doi.org/10.48597/T98A-K3HK +https://doi.org/10.48597/WDTH-SMCZ +https://doi.org/10.48597/8JF7-E4Y7 +https://doi.org/10.48597/CM9A-D4F3 +https://doi.org/10.48597/497G-73Q8 +https://doi.org/10.48597/86GD-2ARM +https://doi.org/10.48597/PWYD-UHYG +https://doi.org/10.48597/4A5D-BZSY +https://doi.org/10.48597/Y9MV-TMKT +https://doi.org/10.48597/TEUK-JZZT +https://doi.org/10.48597/8ZTV-HFZ5 +https://doi.org/10.48597/2AUW-6K43 +https://doi.org/10.48597/DX3J-TEYJ +https://doi.org/10.48597/RTC6-DNA8 +https://doi.org/10.48597/6YCA-QWZB +https://doi.org/10.48597/G5EW-EM3X +https://doi.org/10.48597/9PF2-QXDC +https://doi.org/10.48597/8S29-PUHP +https://doi.org/10.48597/PAEQ-CXYU +https://doi.org/10.48597/6FBG-6VPC +https://doi.org/10.48597/NCJ3-29D9 +https://doi.org/10.48597/ZAUT-REZR +https://doi.org/10.48597/5RKQ-N9NR +https://doi.org/10.48597/JDHK-YAZE +https://doi.org/10.48597/VZDY-YD74 +https://doi.org/10.48597/5GGG-TRZ6 +https://doi.org/10.48597/7RZA-XG9J +https://doi.org/10.48597/VAB8-M4X7 +https://doi.org/10.48597/3DMH-S5Y5 +https://doi.org/10.48597/G8D9-SPKB +https://doi.org/10.48597/M6XH-6KCF +https://doi.org/10.48597/WKF9-K8F7 +https://doi.org/10.48597/VS3M-WGWY +https://doi.org/10.48597/GJVZ-6SFJ +https://doi.org/10.48597/46J4-G9GS +https://doi.org/10.48597/ASZM-ZTM4 +https://doi.org/10.48597/27WY-7UB3 +https://doi.org/10.48597/BTX4-3K3F +https://doi.org/10.48597/VDZC-FSS9 +https://doi.org/10.48597/5P7J-RC3G +https://doi.org/10.48597/54KT-FE6W +https://doi.org/10.48597/7KBE-7T3T +https://doi.org/10.48597/PZC4-DGVN +https://doi.org/10.48597/P44E-RYBW +https://doi.org/10.48597/KHEA-VUXC +https://doi.org/10.48597/S53A-GW4Z +https://doi.org/10.48597/H8D2-V997 +https://doi.org/10.48597/96WM-57E8 +https://doi.org/10.48597/GVU2-SGYU +https://doi.org/10.48597/KAT8-UBW9 +https://doi.org/10.48597/J98P-JPF8 +https://doi.org/10.48597/YT8T-T27R +https://doi.org/10.48597/3P9Z-6GSC +https://doi.org/10.48597/JQMA-WJX9 +https://doi.org/10.48597/XA22-DZNK +https://doi.org/10.48597/GYJH-629M +https://doi.org/10.48597/NF8D-EUNK +https://doi.org/10.48597/VAMH-YYMZ +https://doi.org/10.48597/KHFK-8J2U +https://doi.org/10.48597/GATX-7Q74 +https://doi.org/10.48597/REF6-9UMX +https://doi.org/10.48597/HFHH-PUQF +https://doi.org/10.48597/U2GZ-UYTK +https://doi.org/10.48597/YM9A-ZNAS +https://doi.org/10.48597/KBAY-ZM4A +https://doi.org/10.48597/UU4W-3FBH +https://doi.org/10.48597/FCJ8-EKK4 +https://doi.org/10.48597/KZ3Y-WE7H +https://doi.org/10.48597/Q72N-FNKU +https://doi.org/10.48597/CDX3-9WJS +https://doi.org/10.48597/UWR3-UDDG +https://doi.org/10.48597/SGT4-ZAYS +https://doi.org/10.48597/CA8V-JFEZ +https://doi.org/10.48597/3VXH-CDMW +https://doi.org/10.48597/P4MS-GR5C +https://doi.org/10.48597/6V6Z-DEHQ +https://doi.org/10.48597/YYZY-X5XN +https://doi.org/10.48597/Y5QR-5VM9 +https://doi.org/10.48597/XY44-6Z44 +https://doi.org/10.48597/MFGH-4ERQ +https://doi.org/10.48597/CWYM-KXB7 +https://doi.org/10.48597/93WC-EP7P +https://doi.org/10.48597/CMM8-7FTF +https://doi.org/10.48597/WVZM-JDUH +https://doi.org/10.48597/V742-DEJF +https://doi.org/10.48597/6TEH-NKUD +https://doi.org/10.48597/2SP8-R4S5 +https://doi.org/10.48597/3X3V-YWKE +https://doi.org/10.48597/KMYS-EQGC +https://doi.org/10.48597/Y288-Q9KN +https://doi.org/10.48597/SB5P-EMWP +https://doi.org/10.48597/Z66H-BJD6 +https://doi.org/10.48597/A9FV-CZ25 +https://doi.org/10.48597/RGJ5-SHKN +https://doi.org/10.48597/YRE8-9SEW +https://doi.org/10.48597/3AJB-R2NJ +https://doi.org/10.48597/2CNS-2EVU +https://doi.org/10.48597/FVB9-F6RF +https://doi.org/10.48597/QZFF-KY8U +https://doi.org/10.48597/M2KM-AVCZ +https://doi.org/10.48597/RBYQ-ZZAQ +https://doi.org/10.48597/5YYH-ZJA4 +https://doi.org/10.48597/FS8Q-WZNA +https://doi.org/10.48597/P8QZ-7RWZ +https://doi.org/10.48597/YYEM-D26D +https://doi.org/10.48597/7CNC-VRNB +https://doi.org/10.48597/3KGS-FP2R +https://doi.org/10.48597/HC8H-3DPV +https://doi.org/10.48597/CABQ-68W2 +https://doi.org/10.48597/ZWFA-89CZ +https://doi.org/10.48597/ZGC9-M77K +https://doi.org/10.48597/4XA5-ZZAG +https://doi.org/10.48597/AARF-5X82 +https://doi.org/10.48597/NZMX-PMJR +https://doi.org/10.48597/JKYX-9H6N +https://doi.org/10.48597/B2M7-QTU7 +https://doi.org/10.48597/ZBD4-HTAG +https://doi.org/10.48597/P389-5CWK +https://doi.org/10.48597/ZQS5-B64T +https://doi.org/10.48597/CZUF-5N7E +https://doi.org/10.48597/G6BX-ABJH +https://doi.org/10.48597/2Y5D-WBQE +https://doi.org/10.48597/5N8A-TR7Z +https://doi.org/10.48597/4B7E-2YRT +https://doi.org/10.48597/ZMVP-3VNP +https://doi.org/10.48597/373Y-SBGF +https://doi.org/10.48597/K5GH-6J7M +https://doi.org/10.48597/5DR8-ZYDM +https://doi.org/10.48597/Y6Q4-PB3S +https://doi.org/10.48597/G534-PRG8 +https://doi.org/10.48597/6VFK-UUCA +https://doi.org/10.48597/XYVK-XQ9D +https://doi.org/10.48597/M6RE-9ZDC +https://doi.org/10.48597/9J7V-U22A +https://doi.org/10.48597/6HMR-NTGQ +https://doi.org/10.48597/99C8-3YQC +https://doi.org/10.48597/V8K7-BJPY +https://doi.org/10.48597/JDD7-ZWUU +https://doi.org/10.48597/Q6Y5-DXV8 +https://doi.org/10.48597/M895-TX9E +https://doi.org/10.48597/HVGA-8W23 +https://doi.org/10.48597/JTNC-AQE5 +https://doi.org/10.48597/US9G-4FJG +https://doi.org/10.48597/4UGG-55BZ +https://doi.org/10.48597/33GX-4DP4 +https://doi.org/10.48597/42UJ-5SPE +https://doi.org/10.48597/3N77-QF4J +https://doi.org/10.48597/ZBQK-E38V +https://doi.org/10.48597/T7ZW-S6UT +https://doi.org/10.48597/8AUT-748P +https://doi.org/10.48597/WNGB-CM25 +https://doi.org/10.48597/GC96-Z65H +https://doi.org/10.48597/TYX7-K3AW +https://doi.org/10.48597/RDTW-5M44 +https://doi.org/10.48597/YDGC-94KE +https://doi.org/10.48597/5NJC-UNVX +https://doi.org/10.48597/YUAZ-A2QG +https://doi.org/10.48597/VJYT-QTNA +https://doi.org/10.48597/DRR7-QAKQ +https://doi.org/10.48597/87EM-U7GK +https://doi.org/10.48597/8GUZ-GCQD +https://doi.org/10.48597/FG72-SZVF +https://doi.org/10.48597/GSAR-73Q2 +https://doi.org/10.48597/7E2C-93ZM +https://doi.org/10.48597/Y2XM-UC9M +https://doi.org/10.48597/WMU7-F7WQ +https://doi.org/10.48597/BWGE-SHXN +https://doi.org/10.48597/Z6WZ-WHFW +https://doi.org/10.48597/ANHS-AUN5 +https://doi.org/10.48597/VFVP-AS6H +https://doi.org/10.48597/A4S5-ETCJ +https://doi.org/10.48597/YHQ3-AD6N +https://doi.org/10.48597/UQC5-9T22 +https://doi.org/10.48597/N5JK-ZB63 +https://doi.org/10.48597/93S9-5ZD5 +https://doi.org/10.48597/2K6J-C8JS +https://doi.org/10.48597/A3Q8-JTUA +https://doi.org/10.48597/GK8U-QC3E +https://doi.org/10.48597/KPD8-6R2Q +https://doi.org/10.48597/ERA8-FJBN +https://doi.org/10.48597/RUMM-3PT8 +https://doi.org/10.48597/GTHS-G8GZ +https://doi.org/10.48597/BV4B-2QYR +https://doi.org/10.48597/3B7W-SU6Z +https://doi.org/10.48597/QMZW-XX3P +https://doi.org/10.48597/QQN8-TM4H +https://doi.org/10.48597/2WCM-CFBK +https://doi.org/10.48597/7YXQ-WNXJ +https://doi.org/10.48597/ZFFK-SHM4 +https://doi.org/10.48597/YQKA-UG5K +https://doi.org/10.48597/7KWV-8XNR +https://doi.org/10.48597/YYQY-3ZAF +https://doi.org/10.48597/2ZP5-4296 +https://doi.org/10.48597/Z8K7-S38N +https://doi.org/10.48597/9E4F-FJ4S +https://doi.org/10.48597/9SDT-9CW8 +https://doi.org/10.48597/6Q36-MBZ2 +https://doi.org/10.48597/UD2X-478C +https://doi.org/10.48597/KBU6-JRZ9 +https://doi.org/10.48597/DHAJ-9BWM +https://doi.org/10.48597/XNED-8EQ9 +https://doi.org/10.48597/7S7V-H837 +https://doi.org/10.48597/ND6S-2HDV +https://doi.org/10.48597/3U8X-WXGE +https://doi.org/10.48597/YVXJ-5MRG +https://doi.org/10.48597/5G5C-CVKX +https://doi.org/10.48597/UEFN-45WG +https://doi.org/10.48597/68CH-FWWE +https://doi.org/10.48597/FDZC-6NCR +https://doi.org/10.48597/WWJX-7RDD +https://doi.org/10.48597/9NHH-HAS2 +https://doi.org/10.48597/HQ9Y-2NCR +https://doi.org/10.48597/P7AG-RZ2D +https://doi.org/10.48597/ND65-K5XV +https://doi.org/10.48597/KXJB-V4G6 +https://doi.org/10.48597/RZXF-JMBC +https://doi.org/10.48597/FGXY-YBR2 +https://doi.org/10.48597/ZQTU-Z2JQ +https://doi.org/10.48597/EBUK-6CTM +https://doi.org/10.48597/C4TY-NMQ6 +https://doi.org/10.48597/ZCSA-Y38Q +https://doi.org/10.48597/7VWB-R8XN +https://doi.org/10.48597/XRAN-EJWY +https://doi.org/10.48597/7DDR-4DHC +https://doi.org/10.48597/JQW6-TX2B +https://doi.org/10.48597/YMDK-BEHN +https://doi.org/10.48597/XCE8-DE3E +https://doi.org/10.48597/YMQ5-FH3K +https://doi.org/10.48597/483D-2Q6X +https://doi.org/10.48597/EVTW-E5YX +https://doi.org/10.48597/38PG-Y9GQ +https://doi.org/10.48597/29QD-XKPN +https://doi.org/10.48597/R2UG-MEWH +https://doi.org/10.48597/BD5N-HBQC +https://doi.org/10.48597/TZ54-XYJ8 +https://doi.org/10.48597/8QC9-T9D3 +https://doi.org/10.48597/5P6D-E6VV +https://doi.org/10.48597/QJCV-BSDY +https://doi.org/10.48597/C6DJ-8G38 +https://doi.org/10.48597/6AJC-F76F +https://doi.org/10.48597/PDMX-V6MU +https://doi.org/10.48597/49EJ-FJTF +https://doi.org/10.48597/3DM3-GQBK +https://doi.org/10.48597/H8X6-QJG3 +https://doi.org/10.48597/55M5-MAE2 +https://doi.org/10.48597/S98X-8BJX +https://doi.org/10.48597/DXNY-GH9N +https://doi.org/10.48597/RZHZ-98B5 +https://doi.org/10.48597/ZN8N-W4JF +https://doi.org/10.48597/CQY4-5AFT +https://doi.org/10.48597/HJUF-XHFW +https://doi.org/10.48597/Y4KM-8CF2 +https://doi.org/10.48597/MJTP-999Z +https://doi.org/10.48597/F9JF-ZSGJ +https://doi.org/10.48597/A2GH-XGU9 +https://doi.org/10.48597/DDF6-D6SR +https://doi.org/10.48597/B5R6-3FSR +https://doi.org/10.48597/CUJD-PJFY +https://doi.org/10.48597/XCXN-88XB +https://doi.org/10.48597/AQJY-2MBP +https://doi.org/10.48597/SA5Y-Q3DK +https://doi.org/10.48597/FD3Y-ANKZ +https://doi.org/10.48597/HYCT-M9FN +https://doi.org/10.48597/4B3N-7GFS +https://doi.org/10.48597/ABC3-XDDW +https://doi.org/10.48597/9E2K-B2ER +https://doi.org/10.48597/JS7U-BWFP +https://doi.org/10.48597/QM95-B7ZQ +https://doi.org/10.48597/39SK-6V6W +https://doi.org/10.48597/XARQ-PBQN +https://doi.org/10.48597/URBG-9KZF +https://doi.org/10.48597/YPHN-7SJ5 +https://doi.org/10.48597/EX98-JAJR +https://doi.org/10.48597/A4PZ-GEF3 +https://doi.org/10.48597/CQ7C-3BV9 +https://doi.org/10.48597/SSCD-E6W2 +https://doi.org/10.48597/SM2R-2AU8 +https://doi.org/10.48597/NHTW-ZYCK +https://doi.org/10.48597/6G6M-HMRB +https://doi.org/10.48597/55TW-JSM5 +https://doi.org/10.48597/DBG3-B3Z6 +https://doi.org/10.48597/MZEW-RRJV +https://doi.org/10.48597/FEBZ-CC68 +https://doi.org/10.48597/MVU9-SMXZ +https://doi.org/10.48597/2USS-53AV +https://doi.org/10.48597/E83G-XRHW +https://doi.org/10.48597/2HZ4-4ZSC +https://doi.org/10.48597/8XXR-URSN +https://doi.org/10.48597/VUY6-8JAM +https://doi.org/10.48597/4M97-V8RP +https://doi.org/10.48597/4G8E-76U6 +https://doi.org/10.48597/K9W3-BE5S +https://doi.org/10.48597/YJVH-9V5N +https://doi.org/10.48597/BZ7D-9SVR +https://doi.org/10.48597/WJJV-4N4F +https://doi.org/10.48597/WVMU-KSHP +https://doi.org/10.48597/TUWH-3B6K +https://doi.org/10.48597/RNM7-SRS9 +https://doi.org/10.48597/P9VS-K9CY +https://doi.org/10.48597/SZBD-HDCW +https://doi.org/10.48597/PBPT-AWCQ +https://doi.org/10.48597/TF7R-7TB5 +https://doi.org/10.48597/9KP7-ASAS +https://doi.org/10.48597/3XYU-NS75 +https://doi.org/10.48597/7VJR-2WHF +https://doi.org/10.48597/UGQY-D46C +https://doi.org/10.48597/GY3E-WJJE +https://doi.org/10.48597/X59U-UGBB +https://doi.org/10.48597/XZYY-PZSV +https://doi.org/10.48597/UH3U-UY5F +https://doi.org/10.48597/W7UX-MFQE +https://doi.org/10.48597/FVXM-M78V +https://doi.org/10.48597/F6Q2-D9YG +https://doi.org/10.48597/KYQB-DWZV +https://doi.org/10.48597/YBMJ-F9BC +https://doi.org/10.48597/6MUW-K89P +https://doi.org/10.48597/WAND-CMJX +https://doi.org/10.48597/KXUB-HUZU +https://doi.org/10.48597/N8K7-2QJT +https://doi.org/10.48597/2799-FKK2 +https://doi.org/10.48597/TAEC-3TJT +https://doi.org/10.48597/HMRH-64QE +https://doi.org/10.48597/RKE7-S83M +https://doi.org/10.48597/387R-YRXW +https://doi.org/10.48597/P7EH-9MYW +https://doi.org/10.48597/T6MX-CEKH +https://doi.org/10.48597/G97T-A6PX +https://doi.org/10.48597/KWA2-HHR4 +https://doi.org/10.48597/KRVB-48YZ +https://doi.org/10.48597/4TH5-SGMV +https://doi.org/10.48597/HAP6-WYRQ +https://doi.org/10.48597/MYRX-GGH5 +https://doi.org/10.48597/4ZQA-96TU +https://doi.org/10.48597/KU4R-GAR5 +https://doi.org/10.48597/PR92-Z2ED +https://doi.org/10.48597/DK6R-6YPV +https://doi.org/10.48597/MZNH-94CB +https://doi.org/10.48597/4KHA-HH74 +https://doi.org/10.48597/2PXP-8SSY +https://doi.org/10.48597/7WJ6-3K7J +https://doi.org/10.48597/KJKX-X5SB +https://doi.org/10.48597/2KS6-H7XP +https://doi.org/10.48597/KXP2-3YQF +https://doi.org/10.48597/YH9V-9G6V +https://doi.org/10.48597/AYJ6-SNTC +https://doi.org/10.48597/YSM7-3PW4 +https://doi.org/10.48597/33JH-3C8B +https://doi.org/10.48597/BPC6-HMV2 +https://doi.org/10.48597/TE9K-FD7G +https://doi.org/10.48597/DJXF-HN5H +https://doi.org/10.48597/NV6D-ZR4H +https://doi.org/10.48597/ETYT-63PV +https://doi.org/10.48597/U5Y2-NZUD +https://doi.org/10.48597/C9EB-GGVX +https://doi.org/10.48597/N54C-A3FR +https://doi.org/10.48597/28WX-8R7P +https://doi.org/10.48597/ZVCT-7JVQ +https://doi.org/10.48597/W5PE-B9WU +https://doi.org/10.48597/Y4DA-Y6P9 +https://doi.org/10.48597/PYMH-YKVX +https://doi.org/10.48597/FFGG-SBAD +https://doi.org/10.48597/CW5N-WVT3 +https://doi.org/10.48597/6VMB-9YQU +https://doi.org/10.48597/BDWV-RRG3 +https://doi.org/10.48597/WHDN-68U3 +https://doi.org/10.48597/PHX4-R4UX +https://doi.org/10.48597/4M9U-H6HU +https://doi.org/10.48597/F9SU-4H2T +https://doi.org/10.48597/MQRH-2RZW +https://doi.org/10.48597/V9CZ-CQCF +https://doi.org/10.48597/6GNX-7243 +https://doi.org/10.48597/TARA-J9AH +https://doi.org/10.48597/F9A4-9535 +https://doi.org/10.48597/N5UH-SPYT +https://doi.org/10.48597/6WSA-JPC3 +https://doi.org/10.48597/E99N-WZPK +https://doi.org/10.48597/9Y9G-62XP +https://doi.org/10.48597/28KN-NUTT +https://doi.org/10.48597/3Z9V-5E75 +https://doi.org/10.48597/GDB8-BN9S +https://doi.org/10.48597/J5MQ-K8EY +https://doi.org/10.48597/MGFQ-BCSE +https://doi.org/10.48597/2X9H-SFDS +https://doi.org/10.48597/2FY7-CT5F +https://doi.org/10.48597/YWWS-7S23 +https://doi.org/10.48597/AKUH-2R8H +https://doi.org/10.48597/B37T-CZ69 +https://doi.org/10.48597/YNZ4-Y5NT +https://doi.org/10.48597/RFDK-DY37 +https://doi.org/10.48597/F6E9-BWVN +https://doi.org/10.48597/B3G6-KBCZ +https://doi.org/10.48597/F4EB-8E4B +https://doi.org/10.48597/PKW6-2MHT +https://doi.org/10.48597/F2C6-N9WB +https://doi.org/10.48597/9QJ7-RZ84 +https://doi.org/10.48597/V64B-936N +https://doi.org/10.48597/6GP9-KM25 +https://doi.org/10.48597/W68K-R8ET +https://doi.org/10.48597/XYVQ-HEPW +https://doi.org/10.48597/3SGT-T78H +https://doi.org/10.48597/MBAU-PYM7 +https://doi.org/10.48597/W44V-5A3K +https://doi.org/10.48597/KMWD-ET53 +https://doi.org/10.48597/P7XV-5553 +https://doi.org/10.48597/P83J-G3W9 +https://doi.org/10.48597/MBAR-8TES +https://doi.org/10.48597/8M3C-A7E4 +https://doi.org/10.48597/3WQH-T572 +https://doi.org/10.48597/89Z7-X2X6 +https://doi.org/10.48597/B8FT-A7YB +https://doi.org/10.48597/JQV2-HKFY +https://doi.org/10.48597/3Q9Z-RRBC +https://doi.org/10.48597/NHB4-47TW +https://doi.org/10.48597/XNMP-6AAF +https://doi.org/10.48597/SEUY-SFVD +https://doi.org/10.48597/339S-6D7Y +https://doi.org/10.48597/KJE9-YMYT +https://doi.org/10.48597/BH5A-7WCR +https://doi.org/10.48597/KBHU-WT9S +https://doi.org/10.48597/J9DA-ZBDJ +https://doi.org/10.48597/ZJFS-BNNX +https://doi.org/10.48597/GC2Q-73YP +https://doi.org/10.48597/EMRS-CCU7 +https://doi.org/10.48597/DWC7-4DKG +https://doi.org/10.48597/KBYB-PJZE +https://doi.org/10.48597/H92G-N5WB +https://doi.org/10.48597/7GBR-5FJU +https://doi.org/10.48597/DP9Y-XRP2 +https://doi.org/10.48597/KS75-RTU4 +https://doi.org/10.48597/MFBT-9HPT +https://doi.org/10.48597/6HVQ-WJA6 +https://doi.org/10.48597/P3BT-TEFR +https://doi.org/10.48597/9YHX-QEJM +https://doi.org/10.48597/NF4U-S9A3 +https://doi.org/10.48597/PZF8-2KAG +https://doi.org/10.48597/CXK9-MB2R +https://doi.org/10.48597/Z5UX-ZH8E +https://doi.org/10.48597/B4H9-Q6KA +https://doi.org/10.48597/TBCX-FUR9 +https://doi.org/10.48597/EMZG-GDTS +https://doi.org/10.48597/MV3F-AY4J +https://doi.org/10.48597/KUSH-KFFE +https://doi.org/10.48597/JS4E-VAEZ +https://doi.org/10.48597/97HS-5GUQ +https://doi.org/10.48597/T5NV-35CV +https://doi.org/10.48597/TXHA-VX7G +https://doi.org/10.48597/EBWT-JXTG +https://doi.org/10.48597/US87-7XEZ +https://doi.org/10.48597/RD6Y-4SSS +https://doi.org/10.48597/VWVV-DSJX +https://doi.org/10.48597/3TXS-H53B +https://doi.org/10.48597/CMAS-9DWR +https://doi.org/10.48597/QFYS-KPAV +https://doi.org/10.48597/4DMH-HNR8 +https://doi.org/10.48597/MB7W-DKW5 +https://doi.org/10.48597/JYWM-5P65 +https://doi.org/10.48597/EQ8N-NJ5R +https://doi.org/10.48597/5TQ3-WHSA +https://doi.org/10.48597/PRBW-7NWK +https://doi.org/10.48597/5FY7-XP7T +https://doi.org/10.48597/D2AY-4DFZ +https://doi.org/10.48597/TBBB-QZKY +https://doi.org/10.48597/4HV8-D26F +https://doi.org/10.48597/8RX2-UFJU +https://doi.org/10.48597/KJFZ-Y9KM +https://doi.org/10.48597/PX2G-QDCT +https://doi.org/10.48597/VR4V-6NUC +https://doi.org/10.48597/KSPE-V8DD +https://doi.org/10.48597/TCPV-3XQC +https://doi.org/10.48597/5B8X-H48S +https://doi.org/10.48597/7DXC-MT88 +https://doi.org/10.48597/3868-MYD4 +https://doi.org/10.48597/4SHB-77X8 +https://doi.org/10.48597/4T9M-UB23 +https://doi.org/10.48597/238B-W6M2 +https://doi.org/10.48597/H7DM-3V6S +https://doi.org/10.48597/8WQ5-APZY +https://doi.org/10.48597/JUQ9-CH8A +https://doi.org/10.48597/XCXS-9AAA +https://doi.org/10.48597/V7MH-AEPF +https://doi.org/10.48597/K445-M7JQ +https://doi.org/10.48597/7PWF-U7CV +https://doi.org/10.48597/NRS5-DJYN +https://doi.org/10.48597/2MGG-YUFC +https://doi.org/10.48597/6YZP-TWZ8 +https://doi.org/10.48597/43GG-43CG +https://doi.org/10.48597/TJV5-5642 +https://doi.org/10.48597/BYW7-UCAH +https://doi.org/10.48597/UGGB-EK8R +https://doi.org/10.48597/U66R-QE9J +https://doi.org/10.48597/EFH2-NWV8 +https://doi.org/10.48597/53WP-VNH7 +https://doi.org/10.48597/BKH2-HXAW +https://doi.org/10.48597/8525-F8TK +https://doi.org/10.48597/SN6U-374R +https://doi.org/10.48597/YECS-8D4Z +https://doi.org/10.48597/WYMU-URDZ +https://doi.org/10.48597/PXJ7-K7WA +https://doi.org/10.48597/7QN5-XBZV +https://doi.org/10.48597/266D-QR9N +https://doi.org/10.48597/PP8S-NTNK +https://doi.org/10.48597/ZE5Y-UM2M +https://doi.org/10.48597/A4RG-WK67 +https://doi.org/10.48597/25WE-KSQT +https://doi.org/10.48597/7695-X3EG +https://doi.org/10.48597/T4CC-JHDM +https://doi.org/10.48597/SUYP-4KC4 +https://doi.org/10.48597/NURM-448Y +https://doi.org/10.48597/A9W3-AA64 +https://doi.org/10.48597/7NRC-CHS8 +https://doi.org/10.48597/VSK5-C2U3 +https://doi.org/10.48597/DN2Z-64U9 +https://doi.org/10.48597/6ZT9-3TYT +https://doi.org/10.48597/4XZ9-K9RD +https://doi.org/10.48597/45VH-FDKQ +https://doi.org/10.48597/27B4-2TJU +https://doi.org/10.48597/UY8U-THGX +https://doi.org/10.48597/UM8X-3FVM +https://doi.org/10.48597/KM5C-A4YS +https://doi.org/10.48597/HNMT-3GAW +https://doi.org/10.48597/JJMZ-UABF +https://doi.org/10.48597/4RWJ-WDVE +https://doi.org/10.48597/8UGC-QAVC +https://doi.org/10.48597/RE8Q-5ZVY +https://doi.org/10.48597/EU9S-TJYJ +https://doi.org/10.48597/2TZJ-EHQD +https://doi.org/10.48597/BVY8-G3ZV +https://doi.org/10.48597/J5N2-WZBH +https://doi.org/10.48597/CM4U-5SEA +https://doi.org/10.48597/22ZP-R6ZZ +https://doi.org/10.48597/QDBA-8HDU +https://doi.org/10.48597/BENZ-FUZT +https://doi.org/10.48597/W88J-9RBV +https://doi.org/10.48597/33TS-2DNU +https://doi.org/10.48597/CR5V-RKWB +https://doi.org/10.48597/JTX6-PHX6 +https://doi.org/10.48597/VAWX-KV7F +https://doi.org/10.48597/2YB7-J2GK +https://doi.org/10.48597/5MZJ-5694 +https://doi.org/10.48597/2SMQ-CKGA +https://doi.org/10.48597/DFYK-JE5Z +https://doi.org/10.48597/2RW7-7BDW +https://doi.org/10.48597/XSFN-JMK8 +https://doi.org/10.48597/5YB5-W4XG +https://doi.org/10.48597/FDHS-TY3U +https://doi.org/10.48597/RMJR-8NHN +https://doi.org/10.48597/FXS6-87SQ +https://doi.org/10.48597/RY73-TF3V +https://doi.org/10.48597/VZ3F-JVWY +https://doi.org/10.48597/VEU9-G6PZ +https://doi.org/10.48597/8JVQ-DMUJ +https://doi.org/10.48597/YBWE-MJYX +https://doi.org/10.48597/878G-HZ4Q +https://doi.org/10.48597/53RE-TK2H +https://doi.org/10.48597/YNXS-MYDP +https://doi.org/10.48597/UR23-K9MV +https://doi.org/10.48597/X79D-XBHY +https://doi.org/10.48597/F87D-2JQG +https://doi.org/10.48597/X2WF-PEA5 +https://doi.org/10.48597/D5QD-P5KW +https://doi.org/10.48597/RBVB-4D5J +https://doi.org/10.48597/MFFC-WMKE +https://doi.org/10.48597/P5GH-AMB6 +https://doi.org/10.48597/R42G-2YZ3 +https://doi.org/10.48597/VA7M-K5ZC +https://doi.org/10.48597/N63K-2UAD +https://doi.org/10.48597/K89Y-SCXT +https://doi.org/10.48597/NTAB-R4PN +https://doi.org/10.48597/G78Q-VJCW +https://doi.org/10.48597/6M65-4WWV +https://doi.org/10.48597/7Z8R-2ESB +https://doi.org/10.48597/UDBD-MGY5 +https://doi.org/10.48597/KN6Z-8VNS +https://doi.org/10.48597/D7A8-VX29 +https://doi.org/10.48597/RD7T-F4MG +https://doi.org/10.48597/2BJB-H5YZ +https://doi.org/10.48597/FYEE-ZK8M +https://doi.org/10.48597/JFRX-DWUZ +https://doi.org/10.48597/KAHH-D552 +https://doi.org/10.48597/M2Y8-QFUV +https://doi.org/10.48597/WNFZ-GU74 +https://doi.org/10.48597/EHM4-CUAN +https://doi.org/10.48597/3HYX-65RA +https://doi.org/10.48597/Z4ZN-QZRA +https://doi.org/10.48597/ZM6T-P75E +https://doi.org/10.48597/P7WS-RR57 +https://doi.org/10.48597/TFR6-4PUY +https://doi.org/10.48597/W7B7-D22H +https://doi.org/10.48597/X4G7-3XXQ +https://doi.org/10.48597/EVBV-ETN3 +https://doi.org/10.48597/5SXH-RSF3 +https://doi.org/10.48597/U4W6-TSJT +https://doi.org/10.48597/DJKC-8CTD +https://doi.org/10.48597/JE83-R576 +https://doi.org/10.48597/P8P4-RJ2C +https://doi.org/10.48597/QP86-GPF2 +https://doi.org/10.48597/F6ZD-RDPA +https://doi.org/10.48597/8DCP-8485 +https://doi.org/10.48597/DEY7-8HRB +https://doi.org/10.48597/9YF6-DQCK +https://doi.org/10.48597/RPMX-J8VW +https://doi.org/10.48597/QCKQ-K6NT +https://doi.org/10.48597/3CT3-CPRV +https://doi.org/10.48597/4WEF-CPVF +https://doi.org/10.48597/KUHE-B3GG +https://doi.org/10.48597/AHQJ-MMAJ +https://doi.org/10.48597/T2DV-X9X6 +https://doi.org/10.48597/793J-AUUX +https://doi.org/10.48597/PYXC-RSBK +https://doi.org/10.48597/FTEU-BD2X +https://doi.org/10.48597/X32Q-EX26 +https://doi.org/10.48597/QDZ7-5VME +https://doi.org/10.48597/SNKS-8Q8T +https://doi.org/10.48597/S327-HK6M +https://doi.org/10.48597/PHCV-2EEH +https://doi.org/10.48597/M3YS-NX8D +https://doi.org/10.48597/4GKE-SPA4 +https://doi.org/10.48597/7CCE-SMEH +https://doi.org/10.48597/6PCD-H87Q +https://doi.org/10.48597/AQ9T-82XY +https://doi.org/10.48597/ECN9-VCN4 +https://doi.org/10.48597/BMFP-HDUS +https://doi.org/10.48597/WHEE-UWHT +https://doi.org/10.48597/56CW-TTR9 +https://doi.org/10.48597/EEAT-Y5GU +https://doi.org/10.48597/DTA9-VEUF +https://doi.org/10.48597/KKBX-F2K7 +https://doi.org/10.48597/NNSM-86XF +https://doi.org/10.48597/2SYH-KS8M +https://doi.org/10.48597/JJ7D-3VUP +https://doi.org/10.48597/2588-EP2E +https://doi.org/10.48597/UZFN-3QZ2 +https://doi.org/10.48597/V4PY-9EYU +https://doi.org/10.48597/6HDX-QH4V +https://doi.org/10.48597/T4UU-2ZTW +https://doi.org/10.48597/Z9CK-WVQQ +https://doi.org/10.48597/3RJB-ZRRD +https://doi.org/10.48597/VF5H-T4SD +https://doi.org/10.48597/AQTF-E5TT +https://doi.org/10.48597/JXKC-S8VX +https://doi.org/10.48597/9VU8-8ABE +https://doi.org/10.48597/4HWD-39W3 +https://doi.org/10.48597/DJU7-EGMJ +https://doi.org/10.48597/VYC6-FFAB +https://doi.org/10.48597/WRFP-NTCN +https://doi.org/10.48597/3FKB-8KAU +https://doi.org/10.48597/MBDB-BDGH +https://doi.org/10.48597/KABT-EU4U +https://doi.org/10.48597/UA3T-MYS4 +https://doi.org/10.48597/E6P8-X49C +https://doi.org/10.48597/WWPT-E6QX +https://doi.org/10.48597/AA3X-XDZR +https://doi.org/10.48597/YABX-SEBX +https://doi.org/10.48597/QJUQ-ESZP +https://doi.org/10.48597/QAYP-E9FU +https://doi.org/10.48597/8EVA-73GQ +https://doi.org/10.48597/HXQ8-82YM +https://doi.org/10.48597/MBHA-KZGN +https://doi.org/10.48597/J2XT-SN8J +https://doi.org/10.48597/VMUF-2UWY +https://doi.org/10.48597/S2CE-R5SZ +https://doi.org/10.48597/K7M2-GT4G +https://doi.org/10.48597/H438-JY3P +https://doi.org/10.48597/Q9SC-MBM5 +https://doi.org/10.48597/76GH-P6GY +https://doi.org/10.48597/2MBF-M3CB +https://doi.org/10.48597/Q6AP-TGU8 +https://doi.org/10.48597/C89K-UJ8C +https://doi.org/10.48597/WD66-4BT7 +https://doi.org/10.48597/7PU3-38G4 +https://doi.org/10.48597/T3V3-USVQ +https://doi.org/10.48597/ESM5-XQ9P +https://doi.org/10.48597/VT8B-VFV7 +https://doi.org/10.48597/PHFU-RR92 +https://doi.org/10.48597/K6ZN-9Z4Y +https://doi.org/10.48597/XFCZ-AH58 +https://doi.org/10.48597/823N-A5UF +https://doi.org/10.48597/GCUJ-AYGB +https://doi.org/10.48597/CN4Y-7UG4 +https://doi.org/10.48597/BASW-4NZB +https://doi.org/10.48597/RHTM-EKTH +https://doi.org/10.48597/6QRT-GNDV +https://doi.org/10.48597/KFMC-XGK7 +https://doi.org/10.48597/RRME-M3FQ +https://doi.org/10.48597/U9CG-2HAW +https://doi.org/10.48597/83Z8-QVPQ +https://doi.org/10.48597/JFRB-5CHX +https://doi.org/10.48597/YXVF-JQR2 +https://doi.org/10.48597/5QY7-49FR +https://doi.org/10.48597/UPZU-JS3X +https://doi.org/10.48597/DRTQ-FU37 +https://doi.org/10.48597/39MZ-JC7V +https://doi.org/10.48597/2RXX-MBBH +https://doi.org/10.48597/GDCX-S3R5 +https://doi.org/10.48597/3PHB-D3XQ +https://doi.org/10.48597/AJ37-VZWY +https://doi.org/10.48597/YWA2-Y7EN +https://doi.org/10.48597/TRUK-8R7V +https://doi.org/10.48597/RCVP-MZ3Z +https://doi.org/10.48597/RZHY-WBUG +https://doi.org/10.48597/DQ83-EQBE +https://doi.org/10.48597/ZHHA-QVD9 +https://doi.org/10.48597/ERQJ-9ZSN +https://doi.org/10.48597/5W7E-3349 +https://doi.org/10.48597/NVBT-4Z8X +https://doi.org/10.48597/Q4AA-FRDU +https://doi.org/10.48597/FTPE-29EN +https://doi.org/10.48597/MDRM-5JYQ +https://doi.org/10.48597/3ESS-MBXJ +https://doi.org/10.48597/V4FE-47Y5 +https://doi.org/10.48597/Q6QP-HZGJ +https://doi.org/10.48597/EK8F-2SNC +https://doi.org/10.48597/WUKR-5EW5 +https://doi.org/10.48597/V635-XSPC +https://doi.org/10.48597/2EE6-ZFTY +https://doi.org/10.48597/VATQ-8C5Q +https://doi.org/10.48597/ZG3C-BZ5N +https://doi.org/10.48597/V7UE-2HPE +https://doi.org/10.48597/E27M-Z4BS +https://doi.org/10.48597/HJES-V88A +https://doi.org/10.48597/EP9N-SMVR +https://doi.org/10.48597/D8DT-JJC2 +https://doi.org/10.48597/5987-6HYZ +https://doi.org/10.48597/BEZG-7EUX +https://doi.org/10.48597/GCFJ-ASWS +https://doi.org/10.48597/DPN9-SRN4 +https://doi.org/10.48597/CCZA-YAVM +https://doi.org/10.48597/HXPU-UBTR +https://doi.org/10.48597/GPQP-YTEP +https://doi.org/10.48597/3Q98-DFS9 +https://doi.org/10.48597/T7DK-R2BA +https://doi.org/10.48597/PM8K-4QAM +https://doi.org/10.48597/Q3YX-FSRT +https://doi.org/10.48597/ABND-JA69 +https://doi.org/10.48597/3TN9-JJG7 +https://doi.org/10.48597/HCM8-PYUW +https://doi.org/10.48597/J553-55Q4 +https://doi.org/10.48597/URK8-3PMN +https://doi.org/10.48597/2JD4-SG8E +https://doi.org/10.48597/422X-ZY8S +https://doi.org/10.48597/CN5K-2DGF +https://doi.org/10.48597/6XRB-8V37 +https://doi.org/10.48597/JUES-KGVB +https://doi.org/10.48597/8XDT-5SDA +https://doi.org/10.48597/RFVE-BSR8 +https://doi.org/10.48597/TUX5-UQAH +https://doi.org/10.48597/GESD-82AW +https://doi.org/10.48597/QJ3H-2CWK +https://doi.org/10.48597/S3QA-HPB2 +https://doi.org/10.48597/HVDD-DCWN +https://doi.org/10.48597/SDBY-VNXH +https://doi.org/10.48597/YN84-3QMU +https://doi.org/10.48597/4PQ6-MPM7 +https://doi.org/10.48597/FA9Q-U46M +https://doi.org/10.48597/RG45-453U +https://doi.org/10.48597/9VDP-AVD7 +https://doi.org/10.48597/EUUC-A8XC +https://doi.org/10.48597/U65A-JCWF +https://doi.org/10.48597/S2QY-GAT9 +https://doi.org/10.48597/WBSY-EXV9 +https://doi.org/10.48597/NNNV-NBMP +https://doi.org/10.48597/5MRK-D98F +https://doi.org/10.48597/XVZG-4UEN +https://doi.org/10.48597/W5FD-BT3B +https://doi.org/10.48597/DVN5-SS3T +https://doi.org/10.48597/8HM6-S4M6 +https://doi.org/10.48597/ACWQ-U6R3 +https://doi.org/10.48597/UU2Q-8TYR +https://doi.org/10.48597/6BXV-BM2G +https://doi.org/10.48597/UFWN-JMQR +https://doi.org/10.48597/AG4V-UDAC +https://doi.org/10.48597/KGAE-KXK6 +https://doi.org/10.48597/MRVA-56F9 +https://doi.org/10.48597/REKG-BB2Y +https://doi.org/10.48597/Y8ZZ-AP5Q +https://doi.org/10.48597/ZBA9-3FZ3 +https://doi.org/10.48597/NUKP-SWRM +https://doi.org/10.48597/Z6YR-FTEK +https://doi.org/10.48597/NDEN-TTXX +https://doi.org/10.48597/HEKR-SU7P +https://doi.org/10.48597/PDPF-9WQ6 +https://doi.org/10.48597/ED36-ZA7T +https://doi.org/10.48597/Z5CB-4XFP +https://doi.org/10.48597/VE2F-E597 +https://doi.org/10.48597/S5MP-4V9D +https://doi.org/10.48597/H282-26MP +https://doi.org/10.48597/UHBN-ZT9X +https://doi.org/10.48597/YT9T-EBRT +https://doi.org/10.48597/94KS-CP4J +https://doi.org/10.48597/8URB-MWZD +https://doi.org/10.48597/NAHU-2RT8 +https://doi.org/10.48597/9AQZ-429W +https://doi.org/10.48597/65G9-QF6N +https://doi.org/10.48597/4G6W-DSWN +https://doi.org/10.48597/XNUJ-Q6JQ +https://doi.org/10.48597/X2D7-P3VC +https://doi.org/10.48597/9QMX-APXP +https://doi.org/10.48597/5VQJ-VS52 +https://doi.org/10.48597/78K4-UP6D +https://doi.org/10.48597/R3P7-G2BQ +https://doi.org/10.48597/B5VR-YQ5N +https://doi.org/10.48597/FV3Y-M22D +https://doi.org/10.48597/URT8-TVEZ +https://doi.org/10.48597/TFKG-3X8W +https://doi.org/10.48597/E396-88NH +https://doi.org/10.48597/T6J3-SHQP +https://doi.org/10.48597/XJMA-ZEA8 +https://doi.org/10.48597/75QM-QMAK +https://doi.org/10.48597/ED9Y-73B3 +https://doi.org/10.48597/CVES-A7EM +https://doi.org/10.48597/TNMX-H9Z3 +https://doi.org/10.48597/A5YN-XCTZ +https://doi.org/10.48597/WF9F-G6VB +https://doi.org/10.48597/A46Q-AC72 +https://doi.org/10.48597/6KN8-XPTM +https://doi.org/10.48597/AND4-5KJX +https://doi.org/10.48597/XQ3R-T7KX +https://doi.org/10.48597/RGYF-3NHN +https://doi.org/10.48597/9VU8-Q3C9 +https://doi.org/10.48597/ZFRR-49YS +https://doi.org/10.48597/H39B-HE2C +https://doi.org/10.48597/4G4N-BRXP +https://doi.org/10.48597/G7V4-PM3E +https://doi.org/10.48597/3PCN-2G6N +https://doi.org/10.48597/HWSF-P7Z8 +https://doi.org/10.48597/G7AN-74U8 +https://doi.org/10.48597/38HC-SX9S +https://doi.org/10.48597/ZWTX-UVKY +https://doi.org/10.48597/E8KC-3Z6K +https://doi.org/10.48597/S7JJ-Z8ZU +https://doi.org/10.48597/CWBJ-SAU5 +https://doi.org/10.48597/56WR-DC93 +https://doi.org/10.48597/KRGG-VBV3 +https://doi.org/10.48597/FKGW-6MCC +https://doi.org/10.48597/8ARU-X8M7 +https://doi.org/10.48597/97V2-CBXP +https://doi.org/10.48597/V4FG-ECTY +https://doi.org/10.48597/92UF-5T7W +https://doi.org/10.48597/KRWQ-72MC +https://doi.org/10.48597/QZGF-ZQW7 +https://doi.org/10.48597/KUR9-9STM +https://doi.org/10.48597/JJN7-92DS +https://doi.org/10.48597/EYHU-8KGE +https://doi.org/10.48597/QBDQ-347C +https://doi.org/10.48597/ZTWD-MAYJ +https://doi.org/10.48597/BT5J-YSEU +https://doi.org/10.48597/73ES-26PX +https://doi.org/10.48597/TEBH-53UQ +https://doi.org/10.48597/DAM8-DX4F +https://doi.org/10.48597/PC9Y-J3FQ +https://doi.org/10.48597/VE8D-C5RM +https://doi.org/10.48597/83TA-ZCKC +https://doi.org/10.48597/YGZA-BP8G +https://doi.org/10.48597/NYPS-YTQ9 +https://doi.org/10.48597/GDSN-5JZR +https://doi.org/10.48597/VHD3-M3WB +https://doi.org/10.48597/7GTF-RRR5 +https://doi.org/10.48597/BN5X-Q2E2 +https://doi.org/10.48597/B6ZN-EREE +https://doi.org/10.48597/W9CJ-UUAX +https://doi.org/10.48597/ZJQB-R362 +https://doi.org/10.48597/HHYT-5DXA +https://doi.org/10.48597/R2SP-N38B +https://doi.org/10.48597/NSZC-KREV +https://doi.org/10.48597/736M-XRJQ +https://doi.org/10.48597/6XF2-MJS6 +https://doi.org/10.48597/993D-V7S4 +https://doi.org/10.48597/TQYP-KKFB +https://doi.org/10.48597/DUXD-CS8H +https://doi.org/10.48597/94V6-TCS6 +https://doi.org/10.48597/QGMT-6ZMK +https://doi.org/10.48597/HQ55-J2VA +https://doi.org/10.48597/JA2Z-VNYU +https://doi.org/10.48597/7456-H3M2 +https://doi.org/10.48597/KB8N-QUVE +https://doi.org/10.48597/7FBN-MB88 +https://doi.org/10.48597/N8U5-K6AH +https://doi.org/10.48597/N9WY-97XM +https://doi.org/10.48597/X42A-RQQB +https://doi.org/10.48597/5XWE-N7CA +https://doi.org/10.48597/5QFU-F3M4 +https://doi.org/10.48597/RXQV-SQGV +https://doi.org/10.48597/GQ4Y-2YFM +https://doi.org/10.48597/X7NK-G2VY +https://doi.org/10.48597/HXRG-2UD3 +https://doi.org/10.48597/ZCAJ-AS6D +https://doi.org/10.48597/6SKX-FZ3Z +https://doi.org/10.48597/R6UD-5B64 +https://doi.org/10.48597/Y5E4-9FEQ +https://doi.org/10.48597/EM52-BUYW +https://doi.org/10.48597/R5N5-TDVM +https://doi.org/10.48597/G2KV-BV9K +https://doi.org/10.48597/VFDM-NPUK +https://doi.org/10.48597/UGCS-QHVQ +https://doi.org/10.48597/SGEG-NKEH +https://doi.org/10.48597/Z2TG-BQQ5 +https://doi.org/10.48597/RWUT-6TNJ +https://doi.org/10.48597/2RRQ-HDQ5 +https://doi.org/10.48597/27YH-SRTJ +https://doi.org/10.48597/MTXZ-Y8BJ +https://doi.org/10.48597/AFXZ-F8HU +https://doi.org/10.48597/4TQ5-CUAD +https://doi.org/10.48597/W9VJ-DD9M +https://doi.org/10.48597/PYPK-AYME +https://doi.org/10.48597/V4SM-T954 +https://doi.org/10.48597/6X37-BQK9 +https://doi.org/10.48597/29T9-ZG6M +https://doi.org/10.48597/QPZF-86T8 +https://doi.org/10.48597/2K5A-MP78 +https://doi.org/10.48597/JYSQ-UFAF +https://doi.org/10.48597/PR7K-4STP +https://doi.org/10.48597/FXSB-G88Z +https://doi.org/10.48597/NMG5-YJZK +https://doi.org/10.48597/R55J-ER27 +https://doi.org/10.48597/CM7J-T9SZ +https://doi.org/10.48597/34CM-XM86 +https://doi.org/10.48597/2KTY-4C3B +https://doi.org/10.48597/JGQH-GF3S +https://doi.org/10.48597/QPX6-UMAR +https://doi.org/10.48597/HCKR-NWDR +https://doi.org/10.48597/MQZK-6KTT +https://doi.org/10.48597/Q8DK-32GS +https://doi.org/10.48597/S75Z-BMMV +https://doi.org/10.48597/PPNZ-BVYV +https://doi.org/10.48597/MC49-9H76 +https://doi.org/10.48597/QS5G-GDVR +https://doi.org/10.48597/X8VQ-RAPH +https://doi.org/10.48597/SDHR-SC48 +https://doi.org/10.48597/4AS8-KT23 +https://doi.org/10.48597/FTC6-PBXW +https://doi.org/10.48597/PQXD-3QNC +https://doi.org/10.48597/R25Z-WURR +https://doi.org/10.48597/YGTE-JJNX +https://doi.org/10.48597/26WM-2Q56 +https://doi.org/10.48597/ASPJ-XPR9 +https://doi.org/10.48597/RXE3-TDND +https://doi.org/10.48597/PWUY-WAWE +https://doi.org/10.48597/K5FV-4YQC +https://doi.org/10.48597/VH9M-DBUB +https://doi.org/10.48597/3MFY-T5RT +https://doi.org/10.48597/3X2X-PP45 +https://doi.org/10.48597/GHZD-XNWK +https://doi.org/10.48597/26ES-WK2J +https://doi.org/10.48597/HF8P-TVGN +https://doi.org/10.48597/ANER-9AZM +https://doi.org/10.48597/A4V8-WRNH +https://doi.org/10.48597/5K8B-V7EJ +https://doi.org/10.48597/QV78-2VXD +https://doi.org/10.48597/SWY7-BYXT +https://doi.org/10.48597/KEJZ-EDZK +https://doi.org/10.48597/ZAB7-25XR +https://doi.org/10.48597/3KT5-P26J +https://doi.org/10.48597/47HR-5RET +https://doi.org/10.48597/2H42-4KBJ +https://doi.org/10.48597/ZKXW-AVYV +https://doi.org/10.48597/C68C-T3C4 +https://doi.org/10.48597/BGF6-GQA8 +https://doi.org/10.48597/PYM7-CHMW +https://doi.org/10.48597/JQ5E-NK9B +https://doi.org/10.48597/B2C8-4Q8H +https://doi.org/10.48597/KRZN-KNGC +https://doi.org/10.48597/Z597-EXZ3 +https://doi.org/10.48597/NUD3-NJVH +https://doi.org/10.48597/CP52-46TM +https://doi.org/10.48597/2JYB-QJSC +https://doi.org/10.48597/JV3V-QC29 +https://doi.org/10.48597/8SAS-8YB8 +https://doi.org/10.48597/JCWG-DK5U +https://doi.org/10.48597/H6RE-QJCB +https://doi.org/10.48597/PM3B-FXZE +https://doi.org/10.48597/JZS5-BNYJ +https://doi.org/10.48597/SY9N-3RB4 +https://doi.org/10.48597/N497-Z9BG +https://doi.org/10.48597/J2X2-VSK3 +https://doi.org/10.48597/UHNP-FN46 +https://doi.org/10.48597/R5DV-5F6D +https://doi.org/10.48597/VS8R-EMXF +https://doi.org/10.48597/2Q8J-6YSG +https://doi.org/10.48597/T8X5-2789 +https://doi.org/10.48597/3UJ2-U4NM +https://doi.org/10.48597/AXER-4RSF +https://doi.org/10.48597/S82M-RUW4 +https://doi.org/10.48597/65KC-U3TN +https://doi.org/10.48597/GPPV-82F7 +https://doi.org/10.48597/FU8F-ZQ2B +https://doi.org/10.48597/4C78-QVUT +https://doi.org/10.48597/H6F6-4GX2 +https://doi.org/10.48597/SAAJ-ZACE +https://doi.org/10.48597/YVRZ-5XA6 +https://doi.org/10.48597/4ND4-RXWS +https://doi.org/10.48597/DDEP-EZFG +https://doi.org/10.48597/KK84-6FWV +https://doi.org/10.48597/HKU5-WJVH +https://doi.org/10.48597/Y85G-4ARJ +https://doi.org/10.48597/VBU8-8D5G +https://doi.org/10.48597/3VVU-HH8Y +https://doi.org/10.48597/JNF7-S7XE +https://doi.org/10.48597/EKRJ-DCH5 +https://doi.org/10.48597/XXJ7-APME +https://doi.org/10.48597/DCCX-TJ9X +https://doi.org/10.48597/545M-V3Y2 +https://doi.org/10.48597/6SRM-RSF7 +https://doi.org/10.48597/G5Q7-TDZR +https://doi.org/10.48597/795B-MCES +https://doi.org/10.48597/DYNF-RHNU +https://doi.org/10.48597/XRJN-QX6X +https://doi.org/10.48597/UHZA-WUU5 +https://doi.org/10.48597/BXFT-EURA +https://doi.org/10.48597/SJ8T-TPEX +https://doi.org/10.48597/GUSU-496X +https://doi.org/10.48597/9RTC-P99P +https://doi.org/10.48597/ASPT-KTX9 +https://doi.org/10.48597/YB5G-BAQ2 +https://doi.org/10.48597/76GN-9R7D +https://doi.org/10.48597/U2ED-EG66 +https://doi.org/10.48597/3GWH-ADEF +https://doi.org/10.48597/WDZK-3KW5 +https://doi.org/10.48597/VTAM-8N28 +https://doi.org/10.48597/6NQ2-FUVC +https://doi.org/10.48597/2F2J-H8YU +https://doi.org/10.48597/E4K9-2YN9 +https://doi.org/10.48597/HAPA-9NH9 +https://doi.org/10.48597/24ZY-33FJ +https://doi.org/10.48597/XDE4-4FB7 +https://doi.org/10.48597/XB8A-TABM +https://doi.org/10.48597/SQMG-K6XK +https://doi.org/10.48597/WBU2-2E4T +https://doi.org/10.48597/GJS4-U3TN +https://doi.org/10.48597/BDRC-PDB3 +https://doi.org/10.48597/VFTA-XAFS +https://doi.org/10.48597/WUH5-76F3 +https://doi.org/10.48597/QYC8-EQUN +https://doi.org/10.48597/ARN8-5PPA +https://doi.org/10.48597/C926-F3GD +https://doi.org/10.48597/MBNE-ME87 +https://doi.org/10.48597/4HXZ-3XJM +https://doi.org/10.48597/4ECK-PXG2 +https://doi.org/10.48597/E8EA-5KYU +https://doi.org/10.48597/UYGS-Z3R4 +https://doi.org/10.48597/SEG8-MDF2 +https://doi.org/10.48597/82GU-FXY6 +https://doi.org/10.48597/58CA-V7JN +https://doi.org/10.48597/49DE-HPZP +https://doi.org/10.48597/DWRF-ASM2 +https://doi.org/10.48597/TBBM-F35B +https://doi.org/10.48597/EBZ3-86ZW +https://doi.org/10.48597/R8ET-P6YZ +https://doi.org/10.48597/XCSD-EPVV +https://doi.org/10.48597/QS93-TF3B +https://doi.org/10.48597/BJPB-97PR +https://doi.org/10.48597/HN8Y-GDGB +https://doi.org/10.48597/J4U7-X8BT +https://doi.org/10.48597/MHK5-UCE3 +https://doi.org/10.48597/MRWK-E6PP +https://doi.org/10.48597/7QFB-FKUD +https://doi.org/10.48597/AFMG-5CSA +https://doi.org/10.48597/RM7S-VQKA +https://doi.org/10.48597/BZ7Q-E3SN +https://doi.org/10.48597/JXZS-BBZK +https://doi.org/10.48597/YVAQ-PZW7 +https://doi.org/10.48597/V2FY-ZSDN +https://doi.org/10.48597/6PQR-53XZ +https://doi.org/10.48597/KHDS-DJ7P +https://doi.org/10.48597/4BZN-QN6E +https://doi.org/10.48597/WZP5-44MK +https://doi.org/10.48597/9HTB-D34V +https://doi.org/10.48597/Q8ZC-JRUP +https://doi.org/10.48597/T347-UEZD +https://doi.org/10.48597/2WHR-2C28 +https://doi.org/10.48597/XNK4-T5J4 +https://doi.org/10.48597/3MPJ-WCF9 +https://doi.org/10.48597/923S-3BET +https://doi.org/10.48597/2ZDK-4EFK +https://doi.org/10.48597/ET4D-2HMW +https://doi.org/10.48597/NUG9-YWJ9 +https://doi.org/10.48597/DH7X-2TTT +https://doi.org/10.48597/J2AC-4UQX +https://doi.org/10.48597/XSZE-MTMS +https://doi.org/10.48597/V6VG-J73G +https://doi.org/10.48597/6AME-W744 +https://doi.org/10.48597/6Z9M-GK8B +https://doi.org/10.48597/ASSZ-NFUU +https://doi.org/10.48597/BVCU-XHUR +https://doi.org/10.48597/G2MX-KYUX +https://doi.org/10.48597/5ZKT-7NEA +https://doi.org/10.48597/R698-JCQ4 +https://doi.org/10.48597/98DC-SCE9 +https://doi.org/10.48597/6R2S-67CF +https://doi.org/10.48597/TK9B-A2JB +https://doi.org/10.48597/NJKX-4D8S +https://doi.org/10.48597/XF3U-TXCF +https://doi.org/10.48597/ZDTP-DKVM +https://doi.org/10.48597/HPPZ-8CVZ +https://doi.org/10.48597/S6DZ-2P3D +https://doi.org/10.48597/R3HH-5V6H +https://doi.org/10.48597/N7GC-CSAC +https://doi.org/10.48597/WFPH-83M5 +https://doi.org/10.48597/R7BW-FVEF +https://doi.org/10.48597/S23X-FDUT +https://doi.org/10.48597/VG5K-Q8AG +https://doi.org/10.48597/7WKH-Z2RG +https://doi.org/10.48597/S7DS-GG2N +https://doi.org/10.48597/BGJ2-EK4A +https://doi.org/10.48597/BU7Y-XCP8 +https://doi.org/10.48597/447D-97BH +https://doi.org/10.48597/FKHV-CJZX +https://doi.org/10.48597/WT58-YJT6 +https://doi.org/10.48597/YZH4-KWAY +https://doi.org/10.48597/ZUP9-ST8Z +https://doi.org/10.48597/CYWQ-DZMW +https://doi.org/10.48597/VCBH-5GHH +https://doi.org/10.48597/T47T-K2GG +https://doi.org/10.48597/GHTA-R8D5 +https://doi.org/10.48597/HM9B-YJJC +https://doi.org/10.48597/RUJU-25V8 +https://doi.org/10.48597/UB2G-7M42 +https://doi.org/10.48597/X6BB-7CRB +https://doi.org/10.48597/MXWR-HXXE +https://doi.org/10.48597/22TH-PGHR +https://doi.org/10.48597/CT8F-WJ6P +https://doi.org/10.48597/NFC8-9AVN +https://doi.org/10.48597/H759-55X3 +https://doi.org/10.48597/WSR6-NXP7 +https://doi.org/10.48597/B4VU-QAHQ +https://doi.org/10.48597/8YNR-9PRN +https://doi.org/10.48597/Q322-DY53 +https://doi.org/10.48597/N2XT-HTD2 +https://doi.org/10.48597/KH2T-2QQ3 +https://doi.org/10.48597/HUAY-WRQP +https://doi.org/10.48597/KKAS-T5D5 +https://doi.org/10.48597/JQRQ-D5QN +https://doi.org/10.48597/9K77-BBQD +https://doi.org/10.48597/TPBS-8UKE +https://doi.org/10.48597/NBY3-87QW +https://doi.org/10.48597/4NG2-XBNS +https://doi.org/10.48597/RF2G-P7M3 +https://doi.org/10.48597/FEHC-PEGB +https://doi.org/10.48597/QMFZ-U2K5 +https://doi.org/10.48597/GB8M-HJPY +https://doi.org/10.48597/JHRK-ASTM +https://doi.org/10.48597/6N7Z-BCCN +https://doi.org/10.48597/QZYJ-XJM5 +https://doi.org/10.48597/DW74-NMTG +https://doi.org/10.48597/GDPH-6FFF +https://doi.org/10.48597/VTK6-KHHM +https://doi.org/10.48597/QTAX-QGSS +https://doi.org/10.48597/UMHN-MKCF +https://doi.org/10.48597/XKPW-556C +https://doi.org/10.48597/GHNW-VS28 +https://doi.org/10.48597/KHRB-F73J +https://doi.org/10.48597/48PZ-PXZJ +https://doi.org/10.48597/CSYM-JF22 +https://doi.org/10.48597/WF4K-42GD +https://doi.org/10.48597/K8ZX-WENG +https://doi.org/10.48597/V8QX-UMHV +https://doi.org/10.48597/P43G-SQDD +https://doi.org/10.48597/XNN7-JD7M +https://doi.org/10.48597/3T3A-GWRY +https://doi.org/10.48597/JX77-S7Y3 +https://doi.org/10.48597/BXS5-ETD5 +https://doi.org/10.48597/NUNJ-CKNT +https://doi.org/10.48597/RBTX-6AZY +https://doi.org/10.48597/BAET-SVAB +https://doi.org/10.48597/JKWM-FTZH +https://doi.org/10.48597/3G6A-3DT7 +https://doi.org/10.48597/B37B-BA6N +https://doi.org/10.48597/G5EF-CWW8 +https://doi.org/10.48597/KQVP-CSDA +https://doi.org/10.48597/ZYUM-TDTY +https://doi.org/10.48597/ZQH4-Q4N7 +https://doi.org/10.48597/5VQN-Q3KG +https://doi.org/10.48597/F2K8-C65D +https://doi.org/10.48597/H7F8-BHMB +https://doi.org/10.48597/672N-NCHJ +https://doi.org/10.48597/SFDR-JS29 +https://doi.org/10.48597/6MWG-YK2Q +https://doi.org/10.48597/MU5C-36S9 +https://doi.org/10.48597/UHDM-FJFS +https://doi.org/10.48597/8Q2Z-JB3K +https://doi.org/10.48597/6ZN8-VTZD +https://doi.org/10.48597/AMB5-JR5C +https://doi.org/10.48597/UF7Q-KZRF +https://doi.org/10.48597/NG2F-HKT6 +https://doi.org/10.48597/2FNG-67KE +https://doi.org/10.48597/3WWM-K6RX +https://doi.org/10.48597/JSWQ-E4SZ +https://doi.org/10.48597/6G9H-UYNE +https://doi.org/10.48597/TD5M-HBDE +https://doi.org/10.48597/4KYA-VXXW +https://doi.org/10.48597/8X4Z-EA34 +https://doi.org/10.48597/6PJD-VQN6 +https://doi.org/10.48597/C6YS-WJS3 +https://doi.org/10.48597/UEWV-257U +https://doi.org/10.48597/66FT-PQZX +https://doi.org/10.48597/SUR7-PVTB +https://doi.org/10.48597/3YEH-98M4 +https://doi.org/10.48597/X3GG-D58P +https://doi.org/10.48597/5JFF-JXCW +https://doi.org/10.48597/Z8FS-NBD3 +https://doi.org/10.48597/SYF9-FRPV +https://doi.org/10.48597/43MP-9CXT +https://doi.org/10.48597/3N3E-2JVG +https://doi.org/10.48597/9Q64-6GEG +https://doi.org/10.48597/VVEN-R75W +https://doi.org/10.48597/DMKE-752A +https://doi.org/10.48597/CYK4-UU58 +https://doi.org/10.48597/JQNE-2H4V +https://doi.org/10.48597/88XM-K38A +https://doi.org/10.48597/X7PP-NSSK +https://doi.org/10.48597/KPZY-MU2A +https://doi.org/10.48597/Z4F3-EFFS +https://doi.org/10.48597/TH6Q-Y9RR +https://doi.org/10.48597/FW2Z-JTG9 +https://doi.org/10.48597/FSCU-B5FE +https://doi.org/10.48597/TQ35-X6XC +https://doi.org/10.48597/99EW-ZMK7 +https://doi.org/10.48597/SFZ5-JQQH +https://doi.org/10.48597/EZTC-H4H8 +https://doi.org/10.48597/ZFXX-DVE5 +https://doi.org/10.48597/YTWJ-7MWG +https://doi.org/10.48597/M2D4-4KYT +https://doi.org/10.48597/B22N-H6YY +https://doi.org/10.48597/BM7N-Y5W6 +https://doi.org/10.48597/E6UY-KDCC +https://doi.org/10.48597/Z56Q-JMZP +https://doi.org/10.48597/JJUY-7FY3 +https://doi.org/10.48597/QTR8-RFKU +https://doi.org/10.48597/3768-DS82 +https://doi.org/10.48597/ZBPX-ASMA +https://doi.org/10.48597/FZZ2-7RXH +https://doi.org/10.48597/3Q8B-MMCT +https://doi.org/10.48597/AZ5W-P8PS +https://doi.org/10.48597/JBMB-AWE5 +https://doi.org/10.48597/RFHQ-P6N6 +https://doi.org/10.48597/3AN4-W732 +https://doi.org/10.48597/VPT3-WYMX +https://doi.org/10.48597/3SEN-PT5K +https://doi.org/10.48597/3WA3-FANU +https://doi.org/10.48597/V9A7-TYD8 +https://doi.org/10.48597/JM6X-MF86 +https://doi.org/10.48597/PPXB-WWJD +https://doi.org/10.48597/R4NN-FSXX +https://doi.org/10.48597/Q832-AYV8 +https://doi.org/10.48597/Z6AE-ZADW +https://doi.org/10.48597/C7VE-SJUX +https://doi.org/10.48597/VXJP-KMJU +https://doi.org/10.48597/YMYX-ZG4R +https://doi.org/10.48597/43WF-KVXA +https://doi.org/10.48597/98FX-NGEB +https://doi.org/10.48597/K8A9-KEJB +https://doi.org/10.48597/5S97-2C44 +https://doi.org/10.48597/5646-ZFPU +https://doi.org/10.48597/JNRU-TUD3 +https://doi.org/10.48597/SN7G-VX6T +https://doi.org/10.48597/CREU-XYZY +https://doi.org/10.48597/UMCJ-TKVQ +https://doi.org/10.48597/Z5F8-N6QY +https://doi.org/10.48597/PWWA-BYPP +https://doi.org/10.48597/BEFT-SWJ4 +https://doi.org/10.48597/U4X5-HA7N +https://doi.org/10.48597/D6YD-NVWS +https://doi.org/10.48597/WE8V-QE5Q +https://doi.org/10.48597/W5UD-PKU6 +https://doi.org/10.48597/A47A-SQPU +https://doi.org/10.48597/U6QZ-3JHV +https://doi.org/10.48597/JCH9-EUCT +https://doi.org/10.48597/RWGT-XMZR +https://doi.org/10.48597/Q72A-E39P +https://doi.org/10.48597/P4TW-A8Z3 +https://doi.org/10.48597/PYKU-F5VZ +https://doi.org/10.48597/FT6S-HDBY +https://doi.org/10.48597/2CU5-6K6Z +https://doi.org/10.48597/WVHP-WU69 +https://doi.org/10.48597/U9NW-GAXV +https://doi.org/10.48597/SDVG-R5YY +https://doi.org/10.48597/6CFC-BNM8 +https://doi.org/10.48597/MTCJ-PMSX +https://doi.org/10.48597/2D3J-3YWD +https://doi.org/10.48597/XTGT-Y5T2 +https://doi.org/10.48597/Q6P6-43W6 +https://doi.org/10.48597/DUHK-4ZJE +https://doi.org/10.48597/4WW8-8HMD +https://doi.org/10.48597/4DXD-WCGE +https://doi.org/10.48597/5QR8-VGVG +https://doi.org/10.48597/NAB3-NDYE +https://doi.org/10.48597/H6H4-26A8 +https://doi.org/10.48597/BW5V-2F6X +https://doi.org/10.48597/3VHF-TPFF +https://doi.org/10.48597/AV6F-VRY4 +https://doi.org/10.48597/SYUG-J4YD +https://doi.org/10.48597/6BSC-4JKW +https://doi.org/10.48597/VRDM-NK5F +https://doi.org/10.48597/QUUV-6V24 +https://doi.org/10.48597/PH2Y-WGAE +https://doi.org/10.48597/RXJP-WA6P +https://doi.org/10.48597/P6Y6-PJN7 +https://doi.org/10.48597/9A54-95C6 +https://doi.org/10.48597/QT8T-H6V9 +https://doi.org/10.48597/72KS-5CKK +https://doi.org/10.48597/AQ2A-VQ53 +https://doi.org/10.48597/SG5Y-QWW7 +https://doi.org/10.48597/TU3C-8TE5 +https://doi.org/10.48597/RHE6-WREC +https://doi.org/10.48597/MYRS-PNVP +https://doi.org/10.48597/WGU6-VP4A +https://doi.org/10.48597/NMUV-YJKR +https://doi.org/10.48597/XUW9-PWFK +https://doi.org/10.48597/9SXZ-5XMP +https://doi.org/10.48597/3M92-UY5R +https://doi.org/10.48597/FJM9-RXSE +https://doi.org/10.48597/VC4R-NMAN +https://doi.org/10.48597/7HBC-6F6E +https://doi.org/10.48597/UC7N-23KF +https://doi.org/10.48597/AZMJ-JVU6 +https://doi.org/10.48597/2RAC-PX2R +https://doi.org/10.48597/E68G-DUMQ +https://doi.org/10.48597/4ZNQ-KK4W +https://doi.org/10.48597/3VUK-QGPQ +https://doi.org/10.48597/69W4-ZFCF +https://doi.org/10.48597/KA72-2CP5 +https://doi.org/10.48597/47P9-6P42 +https://doi.org/10.48597/F359-MB8Y +https://doi.org/10.48597/YK8U-E2M7 +https://doi.org/10.48597/JMCE-YSNJ +https://doi.org/10.48597/UGTT-WP35 +https://doi.org/10.48597/NUYT-ZQS3 +https://doi.org/10.48597/XCTA-V3P2 +https://doi.org/10.48597/A2D7-PURW +https://doi.org/10.48597/SCHN-RBJ6 +https://doi.org/10.48597/YP4S-SE8A +https://doi.org/10.48597/HBZE-G7ZE +https://doi.org/10.48597/K9UP-N2WG +https://doi.org/10.48597/GJSM-MF8J +https://doi.org/10.48597/V2K7-6UM2 +https://doi.org/10.48597/9XR4-T7Y3 +https://doi.org/10.48597/NBNS-F3KE +https://doi.org/10.48597/C4WG-SDZJ +https://doi.org/10.48597/QU3W-HNQS +https://doi.org/10.48597/RSWJ-TYFD +https://doi.org/10.48597/4KEY-TWBM +https://doi.org/10.48597/ZYM2-PUXC +https://doi.org/10.48597/S7HR-F8FA +https://doi.org/10.48597/NBQ9-752B +https://doi.org/10.48597/5E7W-E8YY +https://doi.org/10.48597/7YEF-HSW8 +https://doi.org/10.48597/A5SR-BV7E +https://doi.org/10.48597/RZTX-UVN3 +https://doi.org/10.48597/4UVA-2EEP +https://doi.org/10.48597/5N87-3737 +https://doi.org/10.48597/MXZA-KVEH +https://doi.org/10.48597/P9ZG-SYSY +https://doi.org/10.48597/U6QE-SV2B +https://doi.org/10.48597/6V5Q-PT2S +https://doi.org/10.48597/3HG4-2QSX +https://doi.org/10.48597/A5KR-SF29 +https://doi.org/10.48597/QVNU-UUN4 +https://doi.org/10.48597/FACY-V2UZ +https://doi.org/10.48597/JYV6-2XMV +https://doi.org/10.48597/7BA2-FHTY +https://doi.org/10.48597/HRY9-4MVW +https://doi.org/10.48597/ZS89-QA2J +https://doi.org/10.48597/B2CT-MHNM +https://doi.org/10.48597/BMJU-JZ5H +https://doi.org/10.48597/YUFK-9PJ5 +https://doi.org/10.48597/CT5Y-55JG +https://doi.org/10.48597/F3UY-3PEH +https://doi.org/10.48597/R8UJ-J77U +https://doi.org/10.48597/84EB-H89Y +https://doi.org/10.48597/6HYQ-E5DM +https://doi.org/10.48597/CTTA-8UVP +https://doi.org/10.48597/PJPN-CU3G +https://doi.org/10.48597/UABM-352Y +https://doi.org/10.48597/FJQ8-QN8Y +https://doi.org/10.48597/CYKE-95T6 +https://doi.org/10.48597/GMEP-CK8Q +https://doi.org/10.48597/QUS3-R9KW +https://doi.org/10.48597/P8VM-MQVA +https://doi.org/10.48597/EPXP-R3SR +https://doi.org/10.48597/XRWV-V3DR +https://doi.org/10.48597/GPSJ-7N9X +https://doi.org/10.48597/FM2S-E5GJ +https://doi.org/10.48597/52GX-V49J +https://doi.org/10.48597/GW8Q-SJ8T +https://doi.org/10.48597/MADT-G732 +https://doi.org/10.48597/MZK2-UJZD +https://doi.org/10.48597/MPET-B2BU +https://doi.org/10.48597/84XT-R8SP +https://doi.org/10.48597/VV26-DRAH +https://doi.org/10.48597/DSYW-EW7B +https://doi.org/10.48597/56CH-RB5Y +https://doi.org/10.48597/D2KE-R5DF +https://doi.org/10.48597/7KER-X4P4 +https://doi.org/10.48597/E667-KH9N +https://doi.org/10.48597/FYFR-MDAQ +https://doi.org/10.48597/HQ2N-6XTZ +https://doi.org/10.48597/M2Q3-HQ95 +https://doi.org/10.48597/MPPH-SKYY +https://doi.org/10.48597/RWDW-S8TE +https://doi.org/10.48597/R2JF-WSCX +https://doi.org/10.48597/VH4V-ATCT +https://doi.org/10.48597/FZDK-PBTN +https://doi.org/10.48597/RA39-A3SB +https://doi.org/10.48597/PJSQ-X94N +https://doi.org/10.48597/NEV6-UHY8 +https://doi.org/10.48597/NX8M-ZYXY +https://doi.org/10.48597/ZEG2-3TWU +https://doi.org/10.48597/H2CK-H6S4 +https://doi.org/10.48597/CKQV-4952 +https://doi.org/10.48597/MN28-J45U +https://doi.org/10.48597/E45Y-TQ5E +https://doi.org/10.48597/WNW2-EYSJ +https://doi.org/10.48597/NWYX-SY2F +https://doi.org/10.48597/WRQY-QWMD +https://doi.org/10.48597/FTVX-68HH +https://doi.org/10.48597/SB65-V2HD +https://doi.org/10.48597/RD36-UMXP +https://doi.org/10.48597/K3TW-TF8A +https://doi.org/10.48597/SNAQ-CWKD +https://doi.org/10.48597/AYRZ-Z4JD +https://doi.org/10.48597/4F6S-ZJAG +https://doi.org/10.48597/J9MS-MWX5 +https://doi.org/10.48597/JPZR-BNK9 +https://doi.org/10.48597/UF6W-8SBJ +https://doi.org/10.48597/7GS6-38V5 +https://doi.org/10.48597/3NYN-KMWU +https://doi.org/10.48597/BV8S-KURX +https://doi.org/10.48597/JAY9-QEC4 +https://doi.org/10.48597/KWS5-BCWC +https://doi.org/10.48597/Y7SF-AV5B +https://doi.org/10.48597/YZB9-VQVJ +https://doi.org/10.48597/WTWF-3PY9 +https://doi.org/10.48597/YJ3R-ME2E +https://doi.org/10.48597/ER3S-MGG7 +https://doi.org/10.48597/KYS9-V28U +https://doi.org/10.48597/EZQ2-7E9J +https://doi.org/10.48597/2552-S8YP +https://doi.org/10.48597/ZHV9-WGMS +https://doi.org/10.48597/GC6N-Q6EV +https://doi.org/10.48597/Z5QF-RV2F +https://doi.org/10.48597/3W27-SMH5 +https://doi.org/10.48597/QNWB-KMSB +https://doi.org/10.48597/6GRU-VQBT +https://doi.org/10.48597/TJJ3-RX2D +https://doi.org/10.48597/FX4A-64BM +https://doi.org/10.48597/5YBR-R7ZH +https://doi.org/10.48597/DDKV-SJ3U +https://doi.org/10.48597/ZKHH-E9CY +https://doi.org/10.48597/AGRQ-4XX3 +https://doi.org/10.48597/HVMG-HB9J +https://doi.org/10.48597/4NCU-TJTS +https://doi.org/10.48597/X6VP-YPRP +https://doi.org/10.48597/ZJGD-KHBC +https://doi.org/10.48597/X6AV-64R5 +https://doi.org/10.48597/R3CU-ZAS3 +https://doi.org/10.48597/C9FJ-VEDC +https://doi.org/10.48597/UKFT-V5ZB +https://doi.org/10.48597/HEZW-44P6 +https://doi.org/10.48597/4EB9-AA8F +https://doi.org/10.48597/GBDF-XBB2 +https://doi.org/10.48597/4TUP-5JNE +https://doi.org/10.48597/VJSF-J8N5 +https://doi.org/10.48597/GV2X-DAKD +https://doi.org/10.48597/33ZY-VZWJ +https://doi.org/10.48597/F4RU-JC5C +https://doi.org/10.48597/QVT4-VN6Z +https://doi.org/10.48597/YB4W-TEXC +https://doi.org/10.48597/TR29-S2S4 +https://doi.org/10.48597/SPTD-HG9M +https://doi.org/10.48597/ENKH-8J43 +https://doi.org/10.48597/QB9J-GYDY +https://doi.org/10.48597/NWHQ-9W5Q +https://doi.org/10.48597/C59H-U5YC +https://doi.org/10.48597/REMM-NG7C +https://doi.org/10.48597/725B-AG3T +https://doi.org/10.48597/K338-GG68 +https://doi.org/10.48597/XZBY-Q7KN +https://doi.org/10.48597/R3VY-BCKA +https://doi.org/10.48597/NDG3-JD82 +https://doi.org/10.48597/ZEB2-SQ4A +https://doi.org/10.48597/SX6V-6EAP +https://doi.org/10.48597/4WVZ-3U62 +https://doi.org/10.48597/FWK7-XMKA +https://doi.org/10.48597/DA4J-3AFZ +https://doi.org/10.48597/VA8T-9U92 +https://doi.org/10.48597/E9RQ-XPF4 +https://doi.org/10.48597/VBXT-7NJG +https://doi.org/10.48597/29ZS-FEN4 +https://doi.org/10.48597/3C84-49Z5 +https://doi.org/10.48597/R4XX-U2YA +https://doi.org/10.48597/3XQH-YTY4 +https://doi.org/10.48597/54GS-H2UA +https://doi.org/10.48597/XU6K-EMU3 +https://doi.org/10.48597/4RAS-7AM8 +https://doi.org/10.48597/92R2-RSPJ +https://doi.org/10.48597/GVUG-CA3A +https://doi.org/10.48597/VGU9-QWQP +https://doi.org/10.48597/Y4QE-QGTT +https://doi.org/10.48597/Z7H5-X82R +https://doi.org/10.48597/KJY6-7B8P +https://doi.org/10.48597/HJHG-866M +https://doi.org/10.48597/TQB4-C7VY +https://doi.org/10.48597/VGAU-4HV9 +https://doi.org/10.48597/63Q8-VPZ9 +https://doi.org/10.48597/MRQJ-R8W5 +https://doi.org/10.48597/CMA2-48TS +https://doi.org/10.48597/HDPP-5F6N +https://doi.org/10.48597/KM49-WR9A +https://doi.org/10.48597/2Z7M-CBNN +https://doi.org/10.48597/QSZJ-A7EK +https://doi.org/10.48597/2KT5-Y553 +https://doi.org/10.48597/Y9UK-F879 +https://doi.org/10.48597/YRCB-PGHS +https://doi.org/10.48597/XDYF-5BEJ +https://doi.org/10.48597/NRS5-9Y2U +https://doi.org/10.48597/HGPX-V2XY +https://doi.org/10.48597/EMTM-JFU9 +https://doi.org/10.48597/EVAU-SCPY +https://doi.org/10.48597/QX6H-CKPM +https://doi.org/10.48597/PJET-2ZNF +https://doi.org/10.48597/RSJJ-NDBZ +https://doi.org/10.48597/5NM4-G3X7 +https://doi.org/10.48597/FW3Y-2F48 +https://doi.org/10.48597/VSZJ-KV9W +https://doi.org/10.48597/DZ6P-9594 +https://doi.org/10.48597/7BDM-QAYJ +https://doi.org/10.48597/3V3E-4WN3 +https://doi.org/10.48597/HF7G-MAQB +https://doi.org/10.48597/YBFV-2WS5 +https://doi.org/10.48597/R3AA-YAN7 +https://doi.org/10.48597/5RU6-HBQG +https://doi.org/10.48597/ZF92-EAWH +https://doi.org/10.48597/464Y-C3TJ +https://doi.org/10.48597/T9MQ-CJB9 +https://doi.org/10.48597/TUZF-GP93 +https://doi.org/10.48597/M72E-U77Q +https://doi.org/10.48597/3J4D-F9D7 +https://doi.org/10.48597/ZK86-JQH9 +https://doi.org/10.48597/UEZX-XEKA +https://doi.org/10.48597/B36N-22DR +https://doi.org/10.48597/P9VU-5RD7 +https://doi.org/10.48597/D5D5-6X6A +https://doi.org/10.48597/E32K-7UXN +https://doi.org/10.48597/YQMR-4FBB +https://doi.org/10.48597/G3WQ-TQAJ +https://doi.org/10.48597/RVWM-PQBU +https://doi.org/10.48597/AS5A-U49M +https://doi.org/10.48597/QZSY-HP2K +https://doi.org/10.48597/8Q2R-TUP8 +https://doi.org/10.48597/259V-M5XU +https://doi.org/10.48597/Q4CE-SM4X +https://doi.org/10.48597/8HV6-XA7R +https://doi.org/10.48597/QZSS-MKF8 +https://doi.org/10.48597/MTYV-TNUT +https://doi.org/10.48597/PNG9-4MVA +https://doi.org/10.48597/M86Q-8QH3 +https://doi.org/10.48597/CF8W-HX2M +https://doi.org/10.48597/JD72-EHVF +https://doi.org/10.48597/NNJV-2G4X +https://doi.org/10.48597/MVB4-V3Q8 +https://doi.org/10.48597/C8QU-43KR +https://doi.org/10.48597/THMK-Y5SF +https://doi.org/10.48597/WQEA-MZ6Q +https://doi.org/10.48597/8TZR-NR6H +https://doi.org/10.48597/WN3G-8KFD +https://doi.org/10.48597/S3UK-GJT4 +https://doi.org/10.48597/CE8B-ACF8 +https://doi.org/10.48597/W9R9-FCGT +https://doi.org/10.48597/WDMD-9JCQ +https://doi.org/10.48597/656K-HG78 +https://doi.org/10.48597/XC48-ZPM2 +https://doi.org/10.48597/CJNE-P8NH +https://doi.org/10.48597/AACN-FQWJ +https://doi.org/10.48597/UPX3-VZS9 +https://doi.org/10.48597/RDYZ-JHN8 +https://doi.org/10.48597/VGX7-J4Y9 +https://doi.org/10.48597/N5XS-K2TD +https://doi.org/10.48597/HSEX-2JQ3 +https://doi.org/10.48597/8734-YF36 +https://doi.org/10.48597/XNS8-2TV9 +https://doi.org/10.48597/GMKX-QN43 +https://doi.org/10.48597/DZPU-EHTY +https://doi.org/10.48597/JM47-GTP9 +https://doi.org/10.48597/BTYF-8JDX +https://doi.org/10.48597/G8HP-CYSC +https://doi.org/10.48597/P9PG-RPGF +https://doi.org/10.48597/MXJZ-KYXZ +https://doi.org/10.48597/5BSZ-QTSD +https://doi.org/10.48597/VU22-DDNB +https://doi.org/10.48597/GRK8-GVG6 +https://doi.org/10.48597/JKPX-2FHA +https://doi.org/10.48597/P55X-3Y2M +https://doi.org/10.48597/69XC-A5W5 +https://doi.org/10.48597/5G8W-AENB +https://doi.org/10.48597/XK3R-R2DT +https://doi.org/10.48597/BZY6-2J46 +https://doi.org/10.48597/PBVY-FUDD +https://doi.org/10.48597/AWV5-F5G7 +https://doi.org/10.48597/7E58-T5DF +https://doi.org/10.48597/3YTT-XEBB +https://doi.org/10.48597/HFZ5-MRC3 +https://doi.org/10.48597/V96A-YKXX +https://doi.org/10.48597/79YA-Q2HR +https://doi.org/10.48597/UW7X-WAPM +https://doi.org/10.48597/BAM7-M6RU +https://doi.org/10.48597/V7HC-MTC2 +https://doi.org/10.48597/N2QW-HNJS +https://doi.org/10.48597/WCQH-9MPM +https://doi.org/10.48597/AM8H-R7YT +https://doi.org/10.48597/XFQE-2NE9 +https://doi.org/10.48597/KEQK-DE4N +https://doi.org/10.48597/GYYM-5YD8 +https://doi.org/10.48597/YURY-28VB +https://doi.org/10.48597/773M-S4ZC +https://doi.org/10.48597/6MAF-KRSU +https://doi.org/10.48597/KDW6-FXNN +https://doi.org/10.48597/8FXU-MKFF +https://doi.org/10.48597/8RKA-CGQ2 +https://doi.org/10.48597/JJ6R-NWTC +https://doi.org/10.48597/ZV9T-37WF +https://doi.org/10.48597/MJYV-ASNQ +https://doi.org/10.48597/Y6KD-BZGM +https://doi.org/10.48597/VN3U-CB9K +https://doi.org/10.48597/3EHQ-EUSA +https://doi.org/10.48597/6WCW-MZRW +https://doi.org/10.48597/764Z-8HGN +https://doi.org/10.48597/2Y74-MP2Q +https://doi.org/10.48597/4CVW-DABX +https://doi.org/10.48597/JCT4-Z7B8 +https://doi.org/10.48597/F633-UBWH +https://doi.org/10.48597/FW7Z-T5UZ +https://doi.org/10.48597/KS9E-PSHJ +https://doi.org/10.48597/EXP9-BSEC +https://doi.org/10.48597/V7XV-WH35 +https://doi.org/10.48597/ZCKZ-49Y4 +https://doi.org/10.48597/Q8XH-AEST +https://doi.org/10.48597/S5E2-P96W +https://doi.org/10.48597/8S3X-PJ3E +https://doi.org/10.48597/SWJ8-F295 +https://doi.org/10.48597/UEB8-XKV9 +https://doi.org/10.48597/T3DW-C4CQ +https://doi.org/10.48597/T2YT-2YGB +https://doi.org/10.48597/A4DA-9B6U +https://doi.org/10.48597/ZZ88-VQXF +https://doi.org/10.48597/54HJ-UUWF +https://doi.org/10.48597/NR3R-5U4H +https://doi.org/10.48597/PYA8-4GD4 +https://doi.org/10.48597/F8XA-85GN +https://doi.org/10.48597/WZKC-MNRF +https://doi.org/10.48597/2YN8-KM7G +https://doi.org/10.48597/72P4-MYBQ +https://doi.org/10.48597/AKYM-VUTN +https://doi.org/10.48597/TQBT-3WGJ +https://doi.org/10.48597/4GAH-JM9N +https://doi.org/10.48597/E2AN-MPCC +https://doi.org/10.48597/A953-BQR7 +https://doi.org/10.48597/VD46-J7U7 +https://doi.org/10.48597/X2FM-363J +https://doi.org/10.48597/62QT-A6C5 +https://doi.org/10.48597/RNNG-3JZ4 +https://doi.org/10.48597/28EZ-NDBV +https://doi.org/10.48597/ZE82-J84H +https://doi.org/10.48597/6Z2R-DEZP +https://doi.org/10.48597/CRCD-E893 +https://doi.org/10.48597/UTMV-PGGQ +https://doi.org/10.48597/2TBK-TZDB +https://doi.org/10.48597/EJ4R-YUVC +https://doi.org/10.48597/55N6-BMGW +https://doi.org/10.48597/Q5EW-FGH9 +https://doi.org/10.48597/HKDP-BBXH +https://doi.org/10.48597/AAP4-JGB3 +https://doi.org/10.48597/8Y7Q-76KB +https://doi.org/10.48597/39K6-E9C3 +https://doi.org/10.48597/QPDZ-EG6S +https://doi.org/10.48597/AAAH-ASNV +https://doi.org/10.48597/B3G2-V3UM +https://doi.org/10.48597/TAG5-JBNB +https://doi.org/10.48597/4XN9-RDZU +https://doi.org/10.48597/FNN8-T9NJ +https://doi.org/10.48597/72ZF-G7ER +https://doi.org/10.48597/F7N6-89NE +https://doi.org/10.48597/MK73-KZHF +https://doi.org/10.48597/YHXN-39MF +https://doi.org/10.48597/BMRE-8X5X +https://doi.org/10.48597/F82S-6N7D +https://doi.org/10.48597/Q3BW-GTAR +https://doi.org/10.48597/KY5T-FUCY +https://doi.org/10.48597/X6A6-DKQN +https://doi.org/10.48597/6GYH-6C43 +https://doi.org/10.48597/VVSP-AXYY +https://doi.org/10.48597/X6HQ-ATMZ +https://doi.org/10.48597/Y2K4-6JHV +https://doi.org/10.48597/VJU9-SP2K +https://doi.org/10.48597/JNNV-JKQC +https://doi.org/10.48597/B9PC-D8TB +https://doi.org/10.48597/ZBPJ-B966 +https://doi.org/10.48597/JSTN-YB38 +https://doi.org/10.48597/WJFV-MMVJ +https://doi.org/10.48597/4UAS-7AQM +https://doi.org/10.48597/BDA4-RERE +https://doi.org/10.48597/NZVN-J4HE +https://doi.org/10.48597/8FXW-8CKQ +https://doi.org/10.48597/JKD3-TNDM +https://doi.org/10.48597/73Z7-ZAXD +https://doi.org/10.48597/YN5P-BTJY +https://doi.org/10.48597/VE74-JTZ7 +https://doi.org/10.48597/CAY7-53NC +https://doi.org/10.48597/ZH27-Y6BJ +https://doi.org/10.48597/WU2K-YDQN +https://doi.org/10.48597/72X8-GH7R +https://doi.org/10.48597/2CEE-84YV +https://doi.org/10.48597/A3QU-KF3B +https://doi.org/10.48597/YYCX-4VFT +https://doi.org/10.48597/RT95-38DJ +https://doi.org/10.48597/8K6D-BCBM +https://doi.org/10.48597/TTS4-P9HV +https://doi.org/10.48597/M9XH-65GH +https://doi.org/10.48597/ZSJF-82UZ +https://doi.org/10.48597/22K4-PECW +https://doi.org/10.48597/SJM9-M38F +https://doi.org/10.48597/NFAQ-YFQ3 +https://doi.org/10.48597/K7UG-XXRJ +https://doi.org/10.48597/D9MQ-U8XY +https://doi.org/10.48597/6797-KQYV +https://doi.org/10.48597/5U5P-KDTY +https://doi.org/10.48597/A4XC-YTJ5 +https://doi.org/10.48597/4D83-RKB4 +https://doi.org/10.48597/39MW-XHRZ +https://doi.org/10.48597/PTGT-FVXM +https://doi.org/10.48597/M937-9WZM +https://doi.org/10.48597/QF7N-H27M +https://doi.org/10.48597/3C3U-52XG +https://doi.org/10.48597/D7CM-SUJM +https://doi.org/10.48597/CVDD-SBB7 +https://doi.org/10.48597/YTYY-RMEV +https://doi.org/10.48597/HAB8-CZNZ +https://doi.org/10.48597/Y5F5-B3S4 +https://doi.org/10.48597/F5KM-V99S +https://doi.org/10.48597/EKPU-8BDJ +https://doi.org/10.48597/8P9U-3J4F +https://doi.org/10.48597/DXR5-V3AA +https://doi.org/10.48597/YK32-B8GY +https://doi.org/10.48597/EBC5-BVUH +https://doi.org/10.48597/MA38-FPZB +https://doi.org/10.48597/M7HY-UB78 +https://doi.org/10.48597/DTSK-G3SD +https://doi.org/10.48597/V845-2CTJ +https://doi.org/10.48597/VZH9-JE6R +https://doi.org/10.48597/XX9S-PK2D +https://doi.org/10.48597/3ESG-5DVB +https://doi.org/10.48597/AHQ3-PYNK +https://doi.org/10.48597/KHC3-8ERH +https://doi.org/10.48597/72D5-KSP9 +https://doi.org/10.48597/GBYD-7K59 +https://doi.org/10.48597/BMHB-NND8 +https://doi.org/10.48597/GHPX-KUX6 +https://doi.org/10.48597/XD56-QJJ8 +https://doi.org/10.48597/4HNP-DQWC +https://doi.org/10.48597/64J4-CFJ6 +https://doi.org/10.48597/RRSX-5JVT +https://doi.org/10.48597/5EJX-F6S3 +https://doi.org/10.48597/93M6-7BZB +https://doi.org/10.48597/32UW-8T87 +https://doi.org/10.48597/7PAT-G8TH +https://doi.org/10.48597/9HX4-A8XJ +https://doi.org/10.48597/7QCC-W6A2 +https://doi.org/10.48597/8EBD-XHSU +https://doi.org/10.48597/N43X-VKEF +https://doi.org/10.48597/C7JD-CV5C +https://doi.org/10.48597/6PUM-NBAD +https://doi.org/10.48597/ZGNX-JPVY +https://doi.org/10.48597/SYF2-5CGH +https://doi.org/10.48597/Q3UU-RZJ6 +https://doi.org/10.48597/9D3Z-95E6 +https://doi.org/10.48597/6REY-WP3B +https://doi.org/10.48597/ZV3C-VEGY +https://doi.org/10.48597/P9K9-S5QA +https://doi.org/10.48597/BNNR-TFB8 +https://doi.org/10.48597/BT5V-CZ7N +https://doi.org/10.48597/YWNN-4RKS +https://doi.org/10.48597/MEPR-27MM +https://doi.org/10.48597/8NYU-WHZQ +https://doi.org/10.48597/3W5W-25RD +https://doi.org/10.48597/C46Q-9QEC +https://doi.org/10.48597/GS5F-8J7Y +https://doi.org/10.48597/RPMS-2G7Z +https://doi.org/10.48597/FPET-WFKS +https://doi.org/10.48597/H8JA-F8GU +https://doi.org/10.48597/4W44-Y4GJ +https://doi.org/10.48597/HT8M-GNTU +https://doi.org/10.48597/GZVY-QZG3 +https://doi.org/10.48597/YYDY-2VR6 +https://doi.org/10.48597/6WW4-7RSV +https://doi.org/10.48597/NM89-4EHY +https://doi.org/10.48597/W9ST-X8HM +https://doi.org/10.48597/B92A-6B5V +https://doi.org/10.48597/3PGG-8K8U +https://doi.org/10.48597/4Z43-D4D3 +https://doi.org/10.48597/PFMY-6M7C +https://doi.org/10.48597/JSZX-7F5Y +https://doi.org/10.48597/R5H6-RTJF +https://doi.org/10.48597/HQMX-24SS +https://doi.org/10.48597/AQB7-HWCH +https://doi.org/10.48597/9WFE-JVQ6 +https://doi.org/10.48597/39YT-SJ8G +https://doi.org/10.48597/RBQC-4KEC +https://doi.org/10.48597/XA3E-QVFH +https://doi.org/10.48597/CQM2-QGPN +https://doi.org/10.48597/3S6A-Z5P4 +https://doi.org/10.48597/EHV6-M85C +https://doi.org/10.48597/337E-ANVE +https://doi.org/10.48597/ANGX-BNGV +https://doi.org/10.48597/7KPE-C9DZ +https://doi.org/10.48597/N7KJ-AVUT +https://doi.org/10.48597/KGTF-4XUJ +https://doi.org/10.48597/5M7K-E7WE +https://doi.org/10.48597/BB4E-Z6UK +https://doi.org/10.48597/7344-A97N +https://doi.org/10.48597/S44A-NYFN +https://doi.org/10.48597/X5RY-MYHM +https://doi.org/10.48597/Q8C7-6EDR +https://doi.org/10.48597/UM8J-K9GZ +https://doi.org/10.48597/6U8T-SW9P +https://doi.org/10.48597/X8WZ-9Q6P +https://doi.org/10.48597/2T8N-43EX +https://doi.org/10.48597/PJSM-DP43 +https://doi.org/10.48597/QAD9-28FH +https://doi.org/10.48597/6S2D-UEMZ +https://doi.org/10.48597/FZHV-68JK +https://doi.org/10.48597/7XDZ-XKK9 +https://doi.org/10.48597/JXXT-J8Q9 +https://doi.org/10.48597/N8Y7-GW7V +https://doi.org/10.48597/7XNV-HH64 +https://doi.org/10.48597/WAN7-5EVV +https://doi.org/10.48597/3RAY-NEXX +https://doi.org/10.48597/7ETD-8X35 +https://doi.org/10.48597/B4TK-QH23 +https://doi.org/10.48597/75WB-44N4 +https://doi.org/10.48597/QS9D-35UC +https://doi.org/10.48597/WWNP-GUJF +https://doi.org/10.48597/NN7C-HBKH +https://doi.org/10.48597/TEQV-MXN3 +https://doi.org/10.48597/GKAB-5SAU +https://doi.org/10.48597/DZ9S-MY9C +https://doi.org/10.48597/RC2V-MQ93 +https://doi.org/10.48597/RQ8R-F2M4 +https://doi.org/10.48597/FJWX-88GT +https://doi.org/10.48597/E5PN-4RGU +https://doi.org/10.48597/VBEN-WEPN +https://doi.org/10.48597/CP4C-RFRZ +https://doi.org/10.48597/SB8E-4JSC +https://doi.org/10.48597/4VTR-ECFA +https://doi.org/10.48597/79A3-M4QP +https://doi.org/10.48597/RZ7E-4XAZ +https://doi.org/10.48597/WSWE-ZN75 +https://doi.org/10.48597/TKWX-YKN8 +https://doi.org/10.48597/B8T6-7RPZ +https://doi.org/10.48597/X3QZ-23PC +https://doi.org/10.48597/VCQK-26VD +https://doi.org/10.48597/WRW5-BS4S +https://doi.org/10.48597/KTC7-U32M +https://doi.org/10.48597/38BV-HZQH +https://doi.org/10.48597/NJJS-FQW9 +https://doi.org/10.48597/9RY8-48GZ +https://doi.org/10.48597/PAZS-FCMM +https://doi.org/10.48597/FNVY-B2Y6 +https://doi.org/10.48597/XWK6-A3A4 +https://doi.org/10.48597/7RE8-8845 +https://doi.org/10.48597/HQ9K-V2X6 +https://doi.org/10.48597/PHAC-72CU +https://doi.org/10.48597/EVBT-MBXW +https://doi.org/10.48597/V6KE-UPQD +https://doi.org/10.48597/KP46-Y4GJ +https://doi.org/10.48597/Y5VY-MDXF +https://doi.org/10.48597/KBDE-WCJB +https://doi.org/10.48597/SCXF-69RE +https://doi.org/10.48597/RMS6-EEW2 +https://doi.org/10.48597/ZFTC-V352 +https://doi.org/10.48597/6VU5-PJ3Z +https://doi.org/10.48597/RFX3-4CKK +https://doi.org/10.48597/R7Q6-AYNY +https://doi.org/10.48597/NNNP-7MGD +https://doi.org/10.48597/QMD3-6TJV +https://doi.org/10.48597/Z93K-WUTE +https://doi.org/10.48597/ZBCB-VJZE +https://doi.org/10.48597/KEB7-KMF8 +https://doi.org/10.48597/V8U7-SNPY +https://doi.org/10.48597/36Y5-YQPA +https://doi.org/10.48597/EHMF-NTF3 +https://doi.org/10.48597/4BFT-SQQ6 +https://doi.org/10.48597/3GPF-SEJR +https://doi.org/10.48597/SUHW-7F8W +https://doi.org/10.48597/HQNX-3FNS +https://doi.org/10.48597/BVM7-QBYD +https://doi.org/10.48597/KUYW-84SP +https://doi.org/10.48597/TN7C-GPPT +https://doi.org/10.48597/VWYV-TBQ9 +https://doi.org/10.48597/KGGY-4DZA +https://doi.org/10.48597/Q3CT-D65A +https://doi.org/10.48597/KYR7-C4AC +https://doi.org/10.48597/F6BH-GQUV +https://doi.org/10.48597/KQ6R-EV8Y +https://doi.org/10.48597/34T3-YKJ8 +https://doi.org/10.48597/BNXS-VYDA +https://doi.org/10.48597/BSFA-XMKX +https://doi.org/10.48597/2XSJ-FFC2 +https://doi.org/10.48597/34QW-P7CZ +https://doi.org/10.48597/A9AM-AQCK +https://doi.org/10.48597/FYMY-GGN3 +https://doi.org/10.48597/AUYG-45V7 +https://doi.org/10.48597/YZM4-EAHA +https://doi.org/10.48597/USW7-45ND +https://doi.org/10.48597/HFF3-J7AJ +https://doi.org/10.48597/NTBE-CRJD +https://doi.org/10.48597/ZJYN-4A7B +https://doi.org/10.48597/YMRM-44YC +https://doi.org/10.48597/X3P9-TFQ3 +https://doi.org/10.48597/75JD-X58F +https://doi.org/10.48597/J7RR-FNX2 +https://doi.org/10.48597/F64H-JQVR +https://doi.org/10.48597/MH75-K5Q2 +https://doi.org/10.48597/UNRY-YRW5 +https://doi.org/10.48597/U9YR-W48U +https://doi.org/10.48597/KRWP-47QR +https://doi.org/10.48597/PB37-RBVG +https://doi.org/10.48597/A44U-9VUH +https://doi.org/10.48597/GFQ2-MEMR +https://doi.org/10.48597/B6UC-VQGT +https://doi.org/10.48597/8K69-V8AC +https://doi.org/10.48597/E8T8-CA3G +https://doi.org/10.48597/VXGG-PPCA +https://doi.org/10.48597/JAMN-P83Z +https://doi.org/10.48597/8PV6-WX97 +https://doi.org/10.48597/A8M5-5K6M +https://doi.org/10.48597/AWBN-GV54 +https://doi.org/10.48597/ZFS2-QH36 +https://doi.org/10.48597/UD67-NKPE +https://doi.org/10.48597/S389-JQAJ +https://doi.org/10.48597/MFBU-C4MP +https://doi.org/10.48597/QBG3-2HK5 +https://doi.org/10.48597/4S2Z-TYKC +https://doi.org/10.48597/49A3-ZDQU +https://doi.org/10.48597/3UFX-WN9J +https://doi.org/10.48597/QUPM-JJCW +https://doi.org/10.48597/QJTA-286H +https://doi.org/10.48597/35YJ-AHJ3 +https://doi.org/10.48597/YVE9-TA68 +https://doi.org/10.48597/TX5U-RYZH +https://doi.org/10.48597/Z697-N576 +https://doi.org/10.48597/QRU5-V5AB +https://doi.org/10.48597/2DW3-ZFCM +https://doi.org/10.48597/TPAJ-7DMC +https://doi.org/10.48597/S2RK-3H5Q +https://doi.org/10.48597/VYJB-TZ6V +https://doi.org/10.48597/MFXD-BSKW +https://doi.org/10.48597/8XAJ-CYE9 +https://doi.org/10.48597/BMYT-K93K +https://doi.org/10.48597/MRFM-WVDN +https://doi.org/10.48597/X2F5-SNQW +https://doi.org/10.48597/TCSD-BGX5 +https://doi.org/10.48597/VCRD-73GB +https://doi.org/10.48597/QGPE-UHAD +https://doi.org/10.48597/SNTJ-G864 +https://doi.org/10.48597/C6N7-8FT3 +https://doi.org/10.48597/Z22A-CY3X +https://doi.org/10.48597/VX67-PCSJ +https://doi.org/10.48597/ASAC-NDWA +https://doi.org/10.48597/6BMP-PJRF +https://doi.org/10.48597/QJMR-NKY6 +https://doi.org/10.48597/T44F-RSU3 +https://doi.org/10.48597/SUUK-JF8M +https://doi.org/10.48597/23F2-Q6G3 +https://doi.org/10.48597/USGF-3SAA +https://doi.org/10.48597/DFH3-7R4K +https://doi.org/10.48597/NUA6-3BDY +https://doi.org/10.48597/AW5Q-X9G3 +https://doi.org/10.48597/NESH-NDJ7 +https://doi.org/10.48597/72QH-ZV2T +https://doi.org/10.48597/8Y6S-WNCE +https://doi.org/10.48597/8KYS-ZZ5Z +https://doi.org/10.48597/WP3B-SHEB +https://doi.org/10.48597/5WVX-24FW +https://doi.org/10.48597/4BUG-EY9J +https://doi.org/10.48597/784A-UYMT +https://doi.org/10.48597/7QWN-FETA +https://doi.org/10.48597/SYEU-RR7D +https://doi.org/10.48597/WJA6-W345 +https://doi.org/10.48597/XC59-JKXR +https://doi.org/10.48597/MPSZ-ATZR +https://doi.org/10.48597/FGEF-4SAZ +https://doi.org/10.48597/PFKP-JJWC +https://doi.org/10.48597/FNA7-4ZHG +https://doi.org/10.48597/J4FP-R3EA +https://doi.org/10.48597/YYBT-BM2E +https://doi.org/10.48597/M53D-94XB +https://doi.org/10.48597/2K86-PEUV +https://doi.org/10.48597/R29B-6XH6 +https://doi.org/10.48597/395M-N9PH +https://doi.org/10.48597/CZMA-PZY4 +https://doi.org/10.48597/69R2-QD9H +https://doi.org/10.48597/ZJ4J-SQQM +https://doi.org/10.48597/YH2A-V9H7 +https://doi.org/10.48597/4JS5-QY26 +https://doi.org/10.48597/YUZ5-PNDG +https://doi.org/10.48597/DUSG-S43V +https://doi.org/10.48597/XZ9X-E4W8 +https://doi.org/10.48597/RFQ4-6EVZ +https://doi.org/10.48597/RM6P-GQFF +https://doi.org/10.48597/A8ZB-4DF9 +https://doi.org/10.48597/FWPZ-DY5V +https://doi.org/10.48597/YR6B-A3R6 +https://doi.org/10.48597/ZZGR-PQMR +https://doi.org/10.48597/G99D-7C9T +https://doi.org/10.48597/5UCN-RJYW +https://doi.org/10.48597/HQ8U-ZJQC +https://doi.org/10.48597/XHA3-SS4S +https://doi.org/10.48597/RM38-556M +https://doi.org/10.48597/2AB5-ED7Z +https://doi.org/10.48597/PKNV-SJUJ +https://doi.org/10.48597/3CXP-P3CX +https://doi.org/10.48597/A3P6-4UWS +https://doi.org/10.48597/4YZV-VJG8 +https://doi.org/10.48597/4ET4-6G9X +https://doi.org/10.48597/Z4UU-J67G +https://doi.org/10.48597/6ZUH-59WY +https://doi.org/10.48597/CB3G-2H56 +https://doi.org/10.48597/PHQ2-4QQK +https://doi.org/10.48597/CF6J-FZXH +https://doi.org/10.48597/YQBF-89U8 +https://doi.org/10.48597/9YF3-3CG2 +https://doi.org/10.48597/82AD-Z2VC +https://doi.org/10.48597/AY48-PUC5 +https://doi.org/10.48597/7NND-RDCT +https://doi.org/10.48597/6CKH-QJ4E +https://doi.org/10.48597/M3AW-82MC +https://doi.org/10.48597/37R2-JDE8 +https://doi.org/10.48597/HFG5-72VH +https://doi.org/10.48597/VT2H-5U26 +https://doi.org/10.48597/B9TJ-U97Y +https://doi.org/10.48597/MCWR-TF8T +https://doi.org/10.48597/P456-XX2Y +https://doi.org/10.48597/ZM7D-62HK +https://doi.org/10.48597/9H5A-X6HC +https://doi.org/10.48597/P43T-3WNG +https://doi.org/10.48597/9T4X-9XZ9 +https://doi.org/10.48597/5KYH-7AVX +https://doi.org/10.48597/HZXC-8D7Q +https://doi.org/10.48597/SDTM-YDQ2 +https://doi.org/10.48597/MP5B-TM88 +https://doi.org/10.48597/SWXT-UWKK +https://doi.org/10.48597/WFM9-AS95 +https://doi.org/10.48597/DMNH-AGZS +https://doi.org/10.48597/D6CP-5QCG +https://doi.org/10.48597/6SGM-KXGA +https://doi.org/10.48597/SBY5-CVG6 +https://doi.org/10.48597/SCKS-4JMQ +https://doi.org/10.48597/EC56-HY6A +https://doi.org/10.48597/CU6Q-6XD5 +https://doi.org/10.48597/XDBR-FQ3W +https://doi.org/10.48597/FBHF-ZYRJ +https://doi.org/10.48597/7GJM-PBV6 +https://doi.org/10.48597/VX2A-JV5G +https://doi.org/10.48597/YWVV-NQ4N +https://doi.org/10.48597/KBQT-STN5 +https://doi.org/10.48597/EF8W-P47G +https://doi.org/10.48597/6SH4-6FEU +https://doi.org/10.48597/REDU-8K2H +https://doi.org/10.48597/BAY9-2PXJ +https://doi.org/10.48597/6ZTY-VH3Y +https://doi.org/10.48597/JG6K-4UUY +https://doi.org/10.48597/JBNR-Z8VJ +https://doi.org/10.48597/NEPQ-ZM6B +https://doi.org/10.48597/4BWS-3RCJ +https://doi.org/10.48597/KJBC-H59D +https://doi.org/10.48597/K84H-HAA7 +https://doi.org/10.48597/VP6N-QCYC +https://doi.org/10.48597/56FA-Q45P +https://doi.org/10.48597/FC78-NFVV +https://doi.org/10.48597/46GB-SX8F +https://doi.org/10.48597/4TRV-X9JR +https://doi.org/10.48597/Y3FG-DFZE +https://doi.org/10.48597/QQ38-XP7C +https://doi.org/10.48597/KWK8-CGTS +https://doi.org/10.48597/H27M-XYY3 +https://doi.org/10.48597/TVAQ-YP3H +https://doi.org/10.48597/A2Z2-76HA +https://doi.org/10.48597/FD9T-PSKG +https://doi.org/10.48597/YBVP-XX28 +https://doi.org/10.48597/JT3X-RTPA +https://doi.org/10.48597/QJYK-E88Z +https://doi.org/10.48597/XWK8-XZDU +https://doi.org/10.48597/C2PH-5ERE +https://doi.org/10.48597/5HMR-WRFQ +https://doi.org/10.48597/ZAC2-JT63 +https://doi.org/10.48597/WYDM-5NC3 +https://doi.org/10.48597/BAJG-QBWD +https://doi.org/10.48597/BZ4U-WY5G +https://doi.org/10.48597/4XB7-JREM +https://doi.org/10.48597/BD2P-F89J +https://doi.org/10.48597/HRGA-X7U3 +https://doi.org/10.48597/3YAF-RYEA +https://doi.org/10.48597/73FE-EWSM +https://doi.org/10.48597/G963-KHMY +https://doi.org/10.48597/W4P4-BHQC +https://doi.org/10.48597/SR2R-KFSK +https://doi.org/10.48597/MTSV-FZ4K +https://doi.org/10.48597/FWCM-VWJ4 +https://doi.org/10.48597/GSHS-W8UP +https://doi.org/10.48597/GFHM-GQFV +https://doi.org/10.48597/8WHH-BXQF +https://doi.org/10.48597/9ZHU-P6Z3 +https://doi.org/10.48597/FUV5-CC4C +https://doi.org/10.48597/5F86-CVHA +https://doi.org/10.48597/P7QX-KNA7 +https://doi.org/10.48597/YW4U-DKHJ +https://doi.org/10.48597/EAYJ-AK5P +https://doi.org/10.48597/5NSB-GG8K +https://doi.org/10.48597/CKBA-D29N +https://doi.org/10.48597/DJB3-C493 +https://doi.org/10.48597/6DUA-DUWF +https://doi.org/10.48597/4RKV-TCBB +https://doi.org/10.48597/EPE2-93KM +https://doi.org/10.48597/KC4R-8B92 +https://doi.org/10.48597/N997-TWR5 +https://doi.org/10.48597/4SDR-74Z5 +https://doi.org/10.48597/YSK8-V95X +https://doi.org/10.48597/3HRA-BV6X +https://doi.org/10.48597/73KB-9DJH +https://doi.org/10.48597/JBR4-Y8XR +https://doi.org/10.48597/KJ5E-832P +https://doi.org/10.48597/G37K-SB98 +https://doi.org/10.48597/9CB3-JKSH +https://doi.org/10.48597/75KC-5QSV +https://doi.org/10.48597/URN7-8FHZ +https://doi.org/10.48597/HKRH-ZBHN +https://doi.org/10.48597/RHXP-ZX7V +https://doi.org/10.48597/G8DZ-7CKZ +https://doi.org/10.48597/ZCUX-JRUX +https://doi.org/10.48597/BW3D-5NGE +https://doi.org/10.48597/ZDFH-FC9J +https://doi.org/10.48597/YSSA-8VR5 +https://doi.org/10.48597/XZ2X-6MCR +https://doi.org/10.48597/BX79-CFN3 +https://doi.org/10.48597/TFNA-RQ38 +https://doi.org/10.48597/2F2T-9RKH +https://doi.org/10.48597/Z3R2-PCN2 +https://doi.org/10.48597/PAXM-TM3N +https://doi.org/10.48597/QQ5P-8CZW +https://doi.org/10.48597/JMXU-DMTG +https://doi.org/10.48597/DDT5-XZGS +https://doi.org/10.48597/E43M-YNMR +https://doi.org/10.48597/7CZG-22T9 +https://doi.org/10.48597/B4F5-S264 +https://doi.org/10.48597/7RGU-9KMN +https://doi.org/10.48597/6AJM-8HC6 +https://doi.org/10.48597/YH7Z-QBHH +https://doi.org/10.48597/FPP4-E9MV +https://doi.org/10.48597/BE9B-GNWR +https://doi.org/10.48597/PS9Q-XGDS +https://doi.org/10.48597/S58R-QCNN +https://doi.org/10.48597/5V5Z-A7YB +https://doi.org/10.48597/ND9P-YY6R +https://doi.org/10.48597/VC4P-M5G6 +https://doi.org/10.48597/5D8R-SU8V +https://doi.org/10.48597/CVBC-HG3Z +https://doi.org/10.48597/8C5B-PGQU +https://doi.org/10.48597/N5JG-XJ7E +https://doi.org/10.48597/W2CX-AA64 +https://doi.org/10.48597/MQUV-SVGP +https://doi.org/10.48597/CQSH-3A9M +https://doi.org/10.48597/JZUW-7ZYV +https://doi.org/10.48597/H6NS-HDT3 +https://doi.org/10.48597/92MR-ZGJT +https://doi.org/10.48597/7MQX-B7SU +https://doi.org/10.48597/SCDJ-N2Z8 +https://doi.org/10.48597/TFK4-YR72 +https://doi.org/10.48597/7MAP-HTZW +https://doi.org/10.48597/AY9D-CMYD +https://doi.org/10.48597/8AR2-ZTMK +https://doi.org/10.48597/9P98-NU44 +https://doi.org/10.48597/4CA5-4HTW +https://doi.org/10.48597/HTGG-QK3Z +https://doi.org/10.48597/JENQ-PKN9 +https://doi.org/10.48597/2V92-8WSB +https://doi.org/10.48597/4K4U-PYWJ +https://doi.org/10.48597/FY3M-HA7F +https://doi.org/10.48597/7MGC-FKT7 +https://doi.org/10.48597/UCUE-UQ9U +https://doi.org/10.48597/J5YP-B8N7 +https://doi.org/10.48597/4AXJ-JCTK +https://doi.org/10.48597/P4JE-MWF6 +https://doi.org/10.48597/N8Z4-EBRC +https://doi.org/10.48597/EWUP-FXWS +https://doi.org/10.48597/57Z8-9SH4 +https://doi.org/10.48597/3WX5-V462 +https://doi.org/10.48597/BXFE-HX2T +https://doi.org/10.48597/THQB-2GNS +https://doi.org/10.48597/8STC-4PRW +https://doi.org/10.48597/6PSP-88Q8 +https://doi.org/10.48597/2XDM-3HZA +https://doi.org/10.48597/2V4W-VZKH +https://doi.org/10.48597/MA67-SMQ6 +https://doi.org/10.48597/9BAV-QT3X +https://doi.org/10.48597/FTQW-8U5S +https://doi.org/10.48597/H52K-FUS2 +https://doi.org/10.48597/9SG7-ZQN2 +https://doi.org/10.48597/KPWB-KDTN +https://doi.org/10.48597/ZR8C-RDDE +https://doi.org/10.48597/BPPN-MZBH +https://doi.org/10.48597/SH4Y-RBE3 +https://doi.org/10.48597/XCAN-MSNE +https://doi.org/10.48597/634B-BSVJ +https://doi.org/10.48597/GRJB-2MVK +https://doi.org/10.48597/QVTS-YZ67 +https://doi.org/10.48597/YZPQ-8JEP +https://doi.org/10.48597/CMAC-FE3X +https://doi.org/10.48597/QYXX-J7WZ +https://doi.org/10.48597/GEAQ-EXXX +https://doi.org/10.48597/YRQG-46CW +https://doi.org/10.48597/DC45-E66M +https://doi.org/10.48597/W9XH-7CYZ +https://doi.org/10.48597/YQS9-QWWK +https://doi.org/10.48597/B7GR-5PCR +https://doi.org/10.48597/CQ5W-Z4JS +https://doi.org/10.48597/VSWG-2AXZ +https://doi.org/10.48597/6ZJ3-2GRR +https://doi.org/10.48597/CQ2M-USKQ +https://doi.org/10.48597/5KXU-V274 +https://doi.org/10.48597/Q5YU-MR34 +https://doi.org/10.48597/3T5K-SPG9 +https://doi.org/10.48597/SPEM-W8FQ +https://doi.org/10.48597/2HYE-PT7Q +https://doi.org/10.48597/3RTS-ANFQ +https://doi.org/10.48597/XN6N-EJG5 +https://doi.org/10.48597/D424-AKRD +https://doi.org/10.48597/XAB8-WHD9 +https://doi.org/10.48597/P4AC-37QA +https://doi.org/10.48597/YM3Q-AGZC +https://doi.org/10.48597/MTYU-4E8Q +https://doi.org/10.48597/2RB7-AQDK +https://doi.org/10.48597/SZ42-YAXC +https://doi.org/10.48597/AQSX-VWTZ +https://doi.org/10.48597/XRUX-W6YS +https://doi.org/10.48597/5ZQ2-599Q +https://doi.org/10.48597/HAXJ-FWF7 +https://doi.org/10.48597/CVNN-QAJA +https://doi.org/10.48597/DCGT-JNP5 +https://doi.org/10.48597/EG6N-DX3U +https://doi.org/10.48597/9QNN-WEB3 +https://doi.org/10.48597/Z9D2-D83Z +https://doi.org/10.48597/28RR-B588 +https://doi.org/10.48597/HS9F-JAGY +https://doi.org/10.48597/BBCT-JUUK +https://doi.org/10.48597/Q6CJ-WQ72 +https://doi.org/10.48597/MXBR-9WTC +https://doi.org/10.48597/B3UT-V4SB +https://doi.org/10.48597/SJ4E-ZTNF +https://doi.org/10.48597/XBED-ARCY +https://doi.org/10.48597/W9M7-AVYC +https://doi.org/10.48597/S9S9-TYWB +https://doi.org/10.48597/GDX2-EA9U +https://doi.org/10.48597/HYR2-TYK6 +https://doi.org/10.48597/4C3Z-465J +https://doi.org/10.48597/UVS6-67JM +https://doi.org/10.48597/JECK-5JT4 +https://doi.org/10.48597/YKPG-SFDY +https://doi.org/10.48597/59E9-84U3 +https://doi.org/10.48597/XZJH-5XYJ +https://doi.org/10.48597/T573-6KCF +https://doi.org/10.48597/HM6F-DK4Q +https://doi.org/10.48597/RJMW-MUEV +https://doi.org/10.48597/M2WW-RDFA +https://doi.org/10.48597/9EYN-9QEU +https://doi.org/10.48597/CWN4-YPF3 +https://doi.org/10.48597/7H3K-FN3M +https://doi.org/10.48597/ZPAE-34G2 +https://doi.org/10.48597/RJKJ-N8XG +https://doi.org/10.48597/84GQ-RXJU +https://doi.org/10.48597/GXM6-6CRY +https://doi.org/10.48597/APPA-9GU2 +https://doi.org/10.48597/6BBM-VP93 +https://doi.org/10.48597/RJ4F-QNAD +https://doi.org/10.48597/5V24-RWFK +https://doi.org/10.48597/BQ5K-3236 +https://doi.org/10.48597/HYU2-ZMC6 +https://doi.org/10.48597/A4J5-TST3 +https://doi.org/10.48597/HSWM-YQ2B +https://doi.org/10.48597/GUX2-8CQN +https://doi.org/10.48597/ZVM6-9C2P +https://doi.org/10.48597/P3WW-ZNUV +https://doi.org/10.48597/HG2H-NVP4 +https://doi.org/10.48597/B2FP-KCX4 +https://doi.org/10.48597/CBR2-2VXC +https://doi.org/10.48597/7K4B-ESMY +https://doi.org/10.48597/5883-KQVE +https://doi.org/10.48597/GMJ9-JCC8 +https://doi.org/10.48597/A642-X3H8 +https://doi.org/10.48597/QJY5-897H +https://doi.org/10.48597/SPGR-6HJD +https://doi.org/10.48597/D7TX-3J63 +https://doi.org/10.48597/GQM6-KV7Q +https://doi.org/10.48597/W45Q-D6A8 +https://doi.org/10.48597/SX5S-X3PF +https://doi.org/10.48597/GVSA-A96K +https://doi.org/10.48597/TWZU-WC9V +https://doi.org/10.48597/DFWQ-EC95 +https://doi.org/10.48597/DBUX-DE7F +https://doi.org/10.48597/JHMR-9W3K +https://doi.org/10.48597/H6WT-H33Q +https://doi.org/10.48597/N2GX-PMRW +https://doi.org/10.48597/T398-WBXC +https://doi.org/10.48597/QDGA-Y7KY +https://doi.org/10.48597/BGCB-2PPF +https://doi.org/10.48597/GEXT-F53M +https://doi.org/10.48597/69A7-GBJE +https://doi.org/10.48597/XYD6-P5XB +https://doi.org/10.48597/M6BD-7QM5 +https://doi.org/10.48597/AVTP-HWCX +https://doi.org/10.48597/UZUC-N2HM +https://doi.org/10.48597/R9PP-YMM9 +https://doi.org/10.48597/86QX-T9AQ +https://doi.org/10.48597/WE5W-NWNM +https://doi.org/10.48597/AGBG-3WKG +https://doi.org/10.48597/XAZN-PN65 +https://doi.org/10.48597/FF9H-TG5M +https://doi.org/10.48597/WNE2-SSRT +https://doi.org/10.48597/M7UM-T4CX +https://doi.org/10.48597/FSZ5-JB6F +https://doi.org/10.48597/TM8E-N857 +https://doi.org/10.48597/MQFH-WGG7 +https://doi.org/10.48597/JFMY-WQEG +https://doi.org/10.48597/MWEE-2TJM +https://doi.org/10.48597/KZN8-ZQPB +https://doi.org/10.48597/JAN4-RJGU +https://doi.org/10.48597/8NFX-9UD7 +https://doi.org/10.48597/S3Y5-EQYF +https://doi.org/10.48597/5F87-5Y53 +https://doi.org/10.48597/G63A-7UGQ +https://doi.org/10.48597/FWC3-FRSS +https://doi.org/10.48597/9S6M-T48H +https://doi.org/10.48597/6BFN-B4MC +https://doi.org/10.48597/ECT4-Y5M6 +https://doi.org/10.48597/YD3Q-EFJ9 +https://doi.org/10.48597/RUDG-SH34 +https://doi.org/10.48597/DYMP-ACKG +https://doi.org/10.48597/X2KJ-6SXA +https://doi.org/10.48597/5T5B-FRTR +https://doi.org/10.48597/4ABJ-VD6R +https://doi.org/10.48597/DP6G-WM9N +https://doi.org/10.48597/2GJD-ZFZ6 +https://doi.org/10.48597/2FWB-E39R +https://doi.org/10.48597/QCUF-WVZ4 +https://doi.org/10.48597/4JXP-WJ62 +https://doi.org/10.48597/975E-7RHS +https://doi.org/10.48597/UZAV-GQXW +https://doi.org/10.48597/EK28-AZKC +https://doi.org/10.48597/38DC-WYVG +https://doi.org/10.48597/C35X-P8GX +https://doi.org/10.48597/PWRA-ZE62 +https://doi.org/10.48597/Z9SR-MKMC +https://doi.org/10.48597/2VSV-S8KP +https://doi.org/10.48597/6WNZ-DMAN +https://doi.org/10.48597/ST7P-9GUK +https://doi.org/10.48597/MMSD-VWP9 +https://doi.org/10.48597/ZFZA-PMDR +https://doi.org/10.48597/U4GS-UNT5 +https://doi.org/10.48597/UK8F-H5D3 +https://doi.org/10.48597/P6NC-FQMP +https://doi.org/10.48597/BCK2-HHUK +https://doi.org/10.48597/5FJD-QHTV +https://doi.org/10.48597/AWMF-VEG7 +https://doi.org/10.48597/5ZQC-3Y5M +https://doi.org/10.48597/H4WZ-MDKP +https://doi.org/10.48597/NCHF-8P4J +https://doi.org/10.48597/9937-FTHP +https://doi.org/10.48597/CQD8-6JKJ +https://doi.org/10.48597/VGHB-JE9G +https://doi.org/10.48597/KD4J-PC6Z +https://doi.org/10.48597/9PRU-3NMS +https://doi.org/10.48597/8EGZ-G49M +https://doi.org/10.48597/XRX9-TNY7 +https://doi.org/10.48597/8C4S-ZYPW +https://doi.org/10.48597/H62Z-4HZA +https://doi.org/10.48597/M9AE-GVJ7 +https://doi.org/10.48597/5G72-PXKJ +https://doi.org/10.48597/TBCA-RXRW +https://doi.org/10.48597/ZT64-QH8Y +https://doi.org/10.48597/3R47-H9UQ +https://doi.org/10.48597/JJRQ-QD7R +https://doi.org/10.48597/3VCB-8S27 +https://doi.org/10.48597/KQC7-U4JX +https://doi.org/10.48597/HZFF-WERU +https://doi.org/10.48597/TFTJ-AWT2 +https://doi.org/10.48597/TJAA-Y5EZ +https://doi.org/10.48597/5YK3-5NXE +https://doi.org/10.48597/MS8P-XRBA +https://doi.org/10.48597/MUWD-NT3X +https://doi.org/10.48597/MEAE-PHZ9 +https://doi.org/10.48597/URVS-QP8U +https://doi.org/10.48597/8ZSQ-9E5D +https://doi.org/10.48597/8B2D-FPHZ +https://doi.org/10.48597/6GND-YYSP +https://doi.org/10.48597/YUEZ-8UMV +https://doi.org/10.48597/EK6K-JR2G +https://doi.org/10.48597/8F87-4K5Y +https://doi.org/10.48597/8YBZ-KZYM +https://doi.org/10.48597/PCXC-JTER +https://doi.org/10.48597/5HCZ-EV8W +https://doi.org/10.48597/BAUV-X4UB +https://doi.org/10.48597/T9CH-SFCK +https://doi.org/10.48597/7R6H-6KD2 +https://doi.org/10.48597/JZTP-CZBP +https://doi.org/10.48597/NTX4-B8DA +https://doi.org/10.48597/UY3Y-7YFV +https://doi.org/10.48597/2M4K-JFJS +https://doi.org/10.48597/NTZ2-J4J6 +https://doi.org/10.48597/H25T-2RPQ +https://doi.org/10.48597/J3TE-D436 +https://doi.org/10.48597/WTND-GR5K +https://doi.org/10.48597/UH99-UZSN +https://doi.org/10.48597/AAKZ-VVC7 +https://doi.org/10.48597/QJTT-QZB8 +https://doi.org/10.48597/MVYV-26FD +https://doi.org/10.48597/Y5BV-DYKS +https://doi.org/10.48597/HXGV-32Y6 +https://doi.org/10.48597/6BJX-72XB +https://doi.org/10.48597/NQCK-GMME +https://doi.org/10.48597/BK34-CSB2 +https://doi.org/10.48597/GVHQ-S3ZB +https://doi.org/10.48597/3C6E-R94S +https://doi.org/10.48597/B7RU-DW4Y +https://doi.org/10.48597/EMGK-JPRE +https://doi.org/10.48597/7U52-25HG +https://doi.org/10.48597/BDNP-DQ9J +https://doi.org/10.48597/PAD7-F554 +https://doi.org/10.48597/CB2M-3GQ2 +https://doi.org/10.48597/H53Z-5X8R +https://doi.org/10.48597/EPDT-4DPT +https://doi.org/10.48597/V78G-YJR4 +https://doi.org/10.48597/J3A4-TF47 +https://doi.org/10.48597/J3PB-PS55 +https://doi.org/10.48597/C5HP-ZST2 +https://doi.org/10.48597/JWT3-GNX8 +https://doi.org/10.48597/R9CM-T7RF +https://doi.org/10.48597/Z54G-323S +https://doi.org/10.48597/2UD8-F23U +https://doi.org/10.48597/5WR2-HFZ6 +https://doi.org/10.48597/BQ53-UVWR +https://doi.org/10.48597/EQPA-CN99 +https://doi.org/10.48597/VHKE-6RRZ +https://doi.org/10.48597/Q7M2-RVKJ +https://doi.org/10.48597/H6FV-FRNZ +https://doi.org/10.48597/5HUU-4JAP +https://doi.org/10.48597/T4XZ-65BH +https://doi.org/10.48597/FQQK-22ZS +https://doi.org/10.48597/YESC-MYZ7 +https://doi.org/10.48597/KQ58-8KRU +https://doi.org/10.48597/99X5-8TYK +https://doi.org/10.48597/YPPT-4TX6 +https://doi.org/10.48597/M7R3-RKFP +https://doi.org/10.48597/UQD9-NCR7 +https://doi.org/10.48597/5U3F-KEZH +https://doi.org/10.48597/DUGH-SMX4 +https://doi.org/10.48597/GKX8-94BB +https://doi.org/10.48597/9A5N-6ZSR +https://doi.org/10.48597/587G-MWDS +https://doi.org/10.48597/S7AT-RXSZ +https://doi.org/10.48597/6E86-3PQJ +https://doi.org/10.48597/MDXX-TN4Y +https://doi.org/10.48597/XQ46-CJAJ +https://doi.org/10.48597/MSYZ-WW7B +https://doi.org/10.48597/C9AS-7FNJ +https://doi.org/10.48597/626Y-PV6D +https://doi.org/10.48597/Y7KE-P7U4 +https://doi.org/10.48597/VDU3-W7UZ +https://doi.org/10.48597/P825-XGZS +https://doi.org/10.48597/8GSM-UM4P +https://doi.org/10.48597/FGC4-MH9K +https://doi.org/10.48597/CBZS-25H7 +https://doi.org/10.48597/3VRE-UKZV +https://doi.org/10.48597/EP54-G7N7 +https://doi.org/10.48597/9TZY-PGMX +https://doi.org/10.48597/6KAG-BGVW +https://doi.org/10.48597/VB6S-8JD7 +https://doi.org/10.48597/6NSR-H6H8 +https://doi.org/10.48597/42B3-ZKAC +https://doi.org/10.48597/65QU-CMSC +https://doi.org/10.48597/5CBN-WWC2 +https://doi.org/10.48597/57FZ-B62M +https://doi.org/10.48597/Y2HR-ZP4J +https://doi.org/10.48597/MYPJ-29MV +https://doi.org/10.48597/PV2K-K6RG +https://doi.org/10.48597/5JGH-NM4Z +https://doi.org/10.48597/2788-5AX3 +https://doi.org/10.48597/AGQA-AZX6 +https://doi.org/10.48597/WHAB-RVZP +https://doi.org/10.48597/CZZD-XFCS +https://doi.org/10.48597/A2BF-M9UW +https://doi.org/10.48597/WM7W-445S +https://doi.org/10.48597/SP7G-XQW2 +https://doi.org/10.48597/3BWU-46CZ +https://doi.org/10.48597/HYXD-HVQY +https://doi.org/10.48597/AXCJ-VG89 +https://doi.org/10.48597/YFMA-8GPS +https://doi.org/10.48597/QQT2-RF9Q +https://doi.org/10.48597/NTWN-BN3U +https://doi.org/10.48597/BGHH-J3RX +https://doi.org/10.48597/8YEW-TUPV +https://doi.org/10.48597/W6RN-WR93 +https://doi.org/10.48597/NEMW-CD5G +https://doi.org/10.48597/CT6A-9S44 +https://doi.org/10.48597/QE8N-AQTY +https://doi.org/10.48597/64CE-FYRS +https://doi.org/10.48597/P6V3-RSDA +https://doi.org/10.48597/SQZ3-PZJX +https://doi.org/10.48597/KJ6E-BX8M +https://doi.org/10.48597/AZ4R-QXND +https://doi.org/10.48597/W5VC-W2VQ +https://doi.org/10.48597/QAAB-H7ZJ +https://doi.org/10.48597/UEFP-BY5J +https://doi.org/10.48597/4NWN-U693 +https://doi.org/10.48597/XZUF-YE2Z +https://doi.org/10.48597/WSXD-WNKC +https://doi.org/10.48597/H6Q8-JZP8 +https://doi.org/10.48597/D3QW-AJN7 +https://doi.org/10.48597/VBBQ-6K4W +https://doi.org/10.48597/NJKT-X74H +https://doi.org/10.48597/BP8K-EP5H +https://doi.org/10.48597/YJWZ-KXH2 +https://doi.org/10.48597/QFWA-6GVX +https://doi.org/10.48597/SQ7T-J68D +https://doi.org/10.48597/F8PW-JPVK +https://doi.org/10.48597/7B2P-EMPS +https://doi.org/10.48597/EJGU-YBTE +https://doi.org/10.48597/UZRX-K3MD +https://doi.org/10.48597/MZ8T-USEF +https://doi.org/10.48597/VQSZ-R2DM +https://doi.org/10.48597/DP9X-WQPT +https://doi.org/10.48597/5367-89XM +https://doi.org/10.48597/QXP5-PBD8 +https://doi.org/10.48597/JJY8-UDT9 +https://doi.org/10.48597/B5C5-5BCH +https://doi.org/10.48597/DXDG-KMEG +https://doi.org/10.48597/2HC8-HVCQ +https://doi.org/10.48597/S7YZ-B4TC +https://doi.org/10.48597/J7DQ-68Y3 +https://doi.org/10.48597/BXJA-M7ES +https://doi.org/10.48597/AU9N-7BWP +https://doi.org/10.48597/FZPZ-TBK4 +https://doi.org/10.48597/PBZT-J9JJ +https://doi.org/10.48597/T62A-B2EN +https://doi.org/10.48597/XD72-67MC +https://doi.org/10.48597/3EUP-BHQD +https://doi.org/10.48597/TASJ-6368 +https://doi.org/10.48597/97MS-V67X +https://doi.org/10.48597/RJMN-PGH7 +https://doi.org/10.48597/9Q25-H98X +https://doi.org/10.48597/59DH-E38A +https://doi.org/10.48597/AFFF-S4QU +https://doi.org/10.48597/6VZ5-S4NG +https://doi.org/10.48597/R87C-R27B +https://doi.org/10.48597/VKMR-P2B6 +https://doi.org/10.48597/EES2-EDVM +https://doi.org/10.48597/3DJD-E279 +https://doi.org/10.48597/T28F-KVY9 +https://doi.org/10.48597/3HJZ-97ZM +https://doi.org/10.48597/J8CC-3JVU +https://doi.org/10.48597/KJ9U-TWSW +https://doi.org/10.48597/VWW4-M59N +https://doi.org/10.48597/VGXS-YCT2 +https://doi.org/10.48597/HC35-H52K +https://doi.org/10.48597/AUYA-SPXZ +https://doi.org/10.48597/ZEG2-9STU +https://doi.org/10.48597/3HBP-4ECA +https://doi.org/10.48597/RB23-WYT6 +https://doi.org/10.48597/5GRU-2CCW +https://doi.org/10.48597/2FGN-NP9C +https://doi.org/10.48597/MRNY-CH3Y +https://doi.org/10.48597/FP2G-87P3 +https://doi.org/10.48597/QFKA-Q6JV +https://doi.org/10.48597/VYDJ-X54U +https://doi.org/10.48597/VS9H-Y52Z +https://doi.org/10.48597/RAB3-5TR2 +https://doi.org/10.48597/HXEP-B3TQ +https://doi.org/10.48597/NDJ4-8676 +https://doi.org/10.48597/VGBG-S5GC +https://doi.org/10.48597/AWZB-G3MV +https://doi.org/10.48597/SHBF-6GZ8 +https://doi.org/10.48597/XJJ2-29BY +https://doi.org/10.48597/YRK8-N2A4 +https://doi.org/10.48597/W7FN-JPNQ +https://doi.org/10.48597/6G55-YHU4 +https://doi.org/10.48597/2DXK-ENA5 +https://doi.org/10.48597/PB49-7PV8 +https://doi.org/10.48597/5EVP-YTNX +https://doi.org/10.48597/X5AS-PYKQ +https://doi.org/10.48597/XCB4-JJHX +https://doi.org/10.48597/NVTP-RRBZ +https://doi.org/10.48597/QDS8-3SAM +https://doi.org/10.48597/ECME-9VKE +https://doi.org/10.48597/2VB7-8TB5 +https://doi.org/10.48597/AVD4-6RUE +https://doi.org/10.48597/ZJ7M-HMVH +https://doi.org/10.48597/Z6XA-BXWX +https://doi.org/10.48597/FCER-TU47 +https://doi.org/10.48597/R7DN-JBKC +https://doi.org/10.48597/WW5D-7XEX +https://doi.org/10.48597/GUXM-E64D +https://doi.org/10.48597/JJ9R-27DA +https://doi.org/10.48597/V8E9-KQTV +https://doi.org/10.48597/5UU5-WY2B +https://doi.org/10.48597/29G8-T65Z +https://doi.org/10.48597/T9MJ-DVYE +https://doi.org/10.48597/UFJG-EKGF +https://doi.org/10.48597/PRBY-NQH2 +https://doi.org/10.48597/MV2Z-USUV +https://doi.org/10.48597/JX4R-WSAT +https://doi.org/10.48597/YX2K-KAK7 +https://doi.org/10.48597/ZVPW-H8GA +https://doi.org/10.48597/8AJK-QVAM +https://doi.org/10.48597/NE4C-C7J6 +https://doi.org/10.48597/NVM5-EF3Q +https://doi.org/10.48597/N34S-8CTY +https://doi.org/10.48597/EJWQ-ZG6B +https://doi.org/10.48597/G8MB-TEU9 +https://doi.org/10.48597/9JN9-5VXM +https://doi.org/10.48597/K6FS-ET3C +https://doi.org/10.48597/4GNA-GDYA +https://doi.org/10.48597/XNF3-R6XA +https://doi.org/10.48597/KKZJ-A6R4 +https://doi.org/10.48597/QY54-BVP9 +https://doi.org/10.48597/J5VB-KS6F +https://doi.org/10.48597/JUMC-SJTK +https://doi.org/10.48597/JMCU-QS4Z +https://doi.org/10.48597/7A6Q-VDSS +https://doi.org/10.48597/8X8Z-EWJJ +https://doi.org/10.48597/N9QS-DGGD +https://doi.org/10.48597/SCVM-BAW9 +https://doi.org/10.48597/88RH-BF3J +https://doi.org/10.48597/RH2Y-4FKV +https://doi.org/10.48597/NVCE-2GED +https://doi.org/10.48597/XJY5-8CD8 +https://doi.org/10.48597/72UT-NFHP +https://doi.org/10.48597/ZUWV-VA9N +https://doi.org/10.48597/VQN4-VCVC +https://doi.org/10.48597/7UCT-KSMM +https://doi.org/10.48597/C79R-5GSD +https://doi.org/10.48597/EQY6-ZF32 +https://doi.org/10.48597/XRXK-62PD +https://doi.org/10.48597/3JNM-7X4W +https://doi.org/10.48597/AE7B-3M7E +https://doi.org/10.48597/MT5F-9V55 +https://doi.org/10.48597/T6MK-4AJS +https://doi.org/10.48597/8JY6-R22T +https://doi.org/10.48597/GFZY-KGXB +https://doi.org/10.48597/JJKV-E2XF +https://doi.org/10.48597/8PCH-WRMH +https://doi.org/10.48597/TGQ4-PBM5 +https://doi.org/10.48597/8722-DC55 +https://doi.org/10.48597/W2QV-5WC5 +https://doi.org/10.48597/TW6N-EJS3 +https://doi.org/10.48597/QGCA-QWFV +https://doi.org/10.48597/WUKZ-C8D2 +https://doi.org/10.48597/B7TU-K9U2 +https://doi.org/10.48597/G5XZ-WS6T +https://doi.org/10.48597/A48A-9M2E +https://doi.org/10.48597/GKCQ-FEJK +https://doi.org/10.48597/7WDA-BGBV +https://doi.org/10.48597/ARB9-E6UY +https://doi.org/10.48597/BA4X-Z7S3 +https://doi.org/10.48597/962Y-2ZU6 +https://doi.org/10.48597/AEB6-7GK7 +https://doi.org/10.48597/WJUZ-BFNB +https://doi.org/10.48597/48R3-KF4C +https://doi.org/10.48597/DT57-ZWRK +https://doi.org/10.48597/UP6K-YEBX +https://doi.org/10.48597/DW8V-XF6Z +https://doi.org/10.48597/T76Z-4PBM +https://doi.org/10.48597/RBZA-TCKN +https://doi.org/10.48597/BCKB-B2CB +https://doi.org/10.48597/E3RV-M2NX +https://doi.org/10.48597/3CQV-4QNX +https://doi.org/10.48597/8J2U-ASSE +https://doi.org/10.48597/G6TX-9YHV +https://doi.org/10.48597/R4SS-CWE8 +https://doi.org/10.48597/RBYW-M7Z7 +https://doi.org/10.48597/63VQ-JD4S +https://doi.org/10.48597/D479-UFCT +https://doi.org/10.48597/6FWB-KQTH +https://doi.org/10.48597/Q22A-3TGA +https://doi.org/10.48597/URTH-RV5H +https://doi.org/10.48597/CSFZ-E5Q9 +https://doi.org/10.48597/A3MS-8AUY +https://doi.org/10.48597/9HYP-3TTQ +https://doi.org/10.48597/49JK-EG2P +https://doi.org/10.48597/DGSU-82QS +https://doi.org/10.48597/V9X3-G3DF +https://doi.org/10.48597/VA7Y-UFH6 +https://doi.org/10.48597/WGH6-4DJS +https://doi.org/10.48597/YGVQ-8PZA +https://doi.org/10.48597/EZMV-PC88 +https://doi.org/10.48597/RU2H-2XHT +https://doi.org/10.48597/D2B2-XH44 +https://doi.org/10.48597/45YD-GYN9 +https://doi.org/10.48597/ENF6-Y6T6 +https://doi.org/10.48597/WRGD-FTKU +https://doi.org/10.48597/WVV5-QGUD +https://doi.org/10.48597/S8VP-BEFZ +https://doi.org/10.48597/4VA9-TSK4 +https://doi.org/10.48597/AWZH-349S +https://doi.org/10.48597/TXPY-EJ62 +https://doi.org/10.48597/EFP5-9W9P +https://doi.org/10.48597/QQ3S-H5A2 +https://doi.org/10.48597/HKM4-3MAY +https://doi.org/10.48597/29C8-3K3B +https://doi.org/10.48597/CY68-FRV9 +https://doi.org/10.48597/UTTS-MT67 +https://doi.org/10.48597/3DNX-228N +https://doi.org/10.48597/68HC-MM7P +https://doi.org/10.48597/8NTK-65JE +https://doi.org/10.48597/RPK5-48BF +https://doi.org/10.48597/5UBA-V7ZW +https://doi.org/10.48597/2HRY-BBQU +https://doi.org/10.48597/P6H9-DWZ6 +https://doi.org/10.48597/WQZ9-GEDJ +https://doi.org/10.48597/99MV-4AMF +https://doi.org/10.48597/FE3P-2CN6 +https://doi.org/10.48597/KCCE-ZNC6 +https://doi.org/10.48597/W734-YK27 +https://doi.org/10.48597/3FQK-H8C2 +https://doi.org/10.48597/RHY7-GYQJ +https://doi.org/10.48597/BY89-A2MU +https://doi.org/10.48597/2AY5-4Q8B +https://doi.org/10.48597/E3BN-76GN +https://doi.org/10.48597/ZNCD-PT7C +https://doi.org/10.48597/J98G-Q4UF +https://doi.org/10.48597/4SZG-AR66 +https://doi.org/10.48597/K54N-TKCH +https://doi.org/10.48597/TVKU-DQ7U +https://doi.org/10.48597/CARJ-92DY +https://doi.org/10.48597/J62C-SVSW +https://doi.org/10.48597/BQX7-4FJK +https://doi.org/10.48597/7PJW-B652 +https://doi.org/10.48597/YPZE-ZXVJ +https://doi.org/10.48597/WSUD-US88 +https://doi.org/10.48597/JPKT-7S6V +https://doi.org/10.48597/AJD3-XXPJ +https://doi.org/10.48597/RSRJ-WJF3 +https://doi.org/10.48597/DXDY-MQXS +https://doi.org/10.48597/TRQX-5GZR +https://doi.org/10.48597/QMPZ-Q3MC +https://doi.org/10.48597/3CTX-N6GY +https://doi.org/10.48597/QJYA-2PD9 +https://doi.org/10.48597/QZ7Q-SU75 +https://doi.org/10.48597/ZCF4-WCCR +https://doi.org/10.48597/M5EE-XYDH +https://doi.org/10.48597/8CCD-YHHF +https://doi.org/10.48597/ECHK-62CY +https://doi.org/10.48597/H7HD-BDRM +https://doi.org/10.48597/CXWV-MG3E +https://doi.org/10.48597/VAPZ-J2H7 +https://doi.org/10.48597/ZKAS-VJXE +https://doi.org/10.48597/S4AK-SKRY +https://doi.org/10.48597/3AJK-6DX4 +https://doi.org/10.48597/8PX8-RM46 +https://doi.org/10.48597/SJ2B-TYND +https://doi.org/10.48597/P224-HD5H +https://doi.org/10.48597/S457-VH2U +https://doi.org/10.48597/9VTQ-WTTJ +https://doi.org/10.48597/YTZC-N64A +https://doi.org/10.48597/PDNP-Q87Q +https://doi.org/10.48597/RZNU-B7R6 +https://doi.org/10.48597/CQ5N-Z7RG +https://doi.org/10.48597/EB54-TGNB +https://doi.org/10.48597/SPKK-A2Z5 +https://doi.org/10.48597/ZSJH-R4VX +https://doi.org/10.48597/HYAM-C97G +https://doi.org/10.48597/B3VA-RSVT +https://doi.org/10.48597/GE5T-58D4 +https://doi.org/10.48597/J7DG-9MH7 +https://doi.org/10.48597/8YZC-7A84 +https://doi.org/10.48597/TQ5F-D4H8 +https://doi.org/10.48597/EWJB-WY8A +https://doi.org/10.48597/9W32-GWXV +https://doi.org/10.48597/NQWD-FCSR +https://doi.org/10.48597/63GE-2K4K +https://doi.org/10.48597/RZP6-PV6Y +https://doi.org/10.48597/5ZFR-X27N +https://doi.org/10.48597/UW6E-5ZB2 +https://doi.org/10.48597/XX9R-RYXE +https://doi.org/10.48597/M8VV-V5YM +https://doi.org/10.48597/9PUW-ASAC +https://doi.org/10.48597/89E9-2VT9 +https://doi.org/10.48597/MR52-B6XE +https://doi.org/10.48597/8Y35-FZ3Q +https://doi.org/10.48597/KBE9-DY7U +https://doi.org/10.48597/5DCJ-PZQA +https://doi.org/10.48597/JRT5-3VMV +https://doi.org/10.48597/JFQ4-QT5S +https://doi.org/10.48597/89DN-YTJV +https://doi.org/10.48597/YWJY-X9M3 +https://doi.org/10.48597/NF88-4VKT +https://doi.org/10.48597/JKHW-7XX3 +https://doi.org/10.48597/3J7P-3SGE +https://doi.org/10.48597/HMTS-K6GN +https://doi.org/10.48597/JV67-CBSM +https://doi.org/10.48597/ZG2P-DVUY +https://doi.org/10.48597/6N83-TZB9 +https://doi.org/10.48597/GRPV-KW4Z +https://doi.org/10.48597/B8V4-2C4Y +https://doi.org/10.48597/9J5V-UF2G +https://doi.org/10.48597/WAWT-U4GB +https://doi.org/10.48597/RBWM-535H +https://doi.org/10.48597/G99C-5PR4 +https://doi.org/10.48597/SBUM-GV59 +https://doi.org/10.48597/B93S-G2UH +https://doi.org/10.48597/HJRS-UY6R +https://doi.org/10.48597/XV4P-VKYV +https://doi.org/10.48597/VJQH-KH6P +https://doi.org/10.48597/KUX7-36XQ +https://doi.org/10.48597/932Y-DSNC +https://doi.org/10.48597/RPH4-WEFT +https://doi.org/10.48597/E6T3-7XK4 +https://doi.org/10.48597/UCFC-2NFF +https://doi.org/10.48597/2EY3-W9E6 +https://doi.org/10.48597/WMKP-PHHQ +https://doi.org/10.48597/QT3X-ZKFT +https://doi.org/10.48597/XCX9-WZ3A +https://doi.org/10.48597/Y5GU-2GAR +https://doi.org/10.48597/2JM3-NNF5 +https://doi.org/10.48597/DR57-J4G9 +https://doi.org/10.48597/QMM5-ASUM +https://doi.org/10.48597/9EJ3-ZH7M +https://doi.org/10.48597/64CS-939F +https://doi.org/10.48597/VXWV-WZE5 +https://doi.org/10.48597/TKB5-D63T +https://doi.org/10.48597/MQ4P-AG9G +https://doi.org/10.48597/62JE-CJMA +https://doi.org/10.48597/8XV9-UJHA +https://doi.org/10.48597/HT5D-VAUE +https://doi.org/10.48597/C4PV-JYAA +https://doi.org/10.48597/QJTF-Z9DA +https://doi.org/10.48597/Y22B-CKZS +https://doi.org/10.48597/NWW8-H6H3 +https://doi.org/10.48597/EBAW-AF5S +https://doi.org/10.48597/XNFZ-9TK7 +https://doi.org/10.48597/WF4J-ZCVJ +https://doi.org/10.48597/JQ5Z-NFS7 +https://doi.org/10.48597/XNYM-KAA2 +https://doi.org/10.48597/SCYV-NGQU +https://doi.org/10.48597/83DA-WYX2 +https://doi.org/10.48597/AF9C-48YB +https://doi.org/10.48597/T2WA-CA9S +https://doi.org/10.48597/4MR5-8TT5 +https://doi.org/10.48597/SYVG-AQMN +https://doi.org/10.48597/XHXH-N3S7 +https://doi.org/10.48597/FW9D-4N5C +https://doi.org/10.48597/SGCJ-KNGU +https://doi.org/10.48597/KMRP-JRSC +https://doi.org/10.48597/3NWK-K6S4 +https://doi.org/10.48597/HMKP-TVKK +https://doi.org/10.48597/GDRE-YS9T +https://doi.org/10.48597/KDVK-WKJ6 +https://doi.org/10.48597/FNA2-MJWJ +https://doi.org/10.48597/X7E6-X3PU +https://doi.org/10.48597/VQM2-GR23 +https://doi.org/10.48597/RACE-6T8N +https://doi.org/10.48597/D2D9-F3KG +https://doi.org/10.48597/EDJA-R694 +https://doi.org/10.48597/EJ74-D96G +https://doi.org/10.48597/Y88V-UDX2 +https://doi.org/10.48597/2ZM9-WXZR +https://doi.org/10.48597/JSWW-TXH8 +https://doi.org/10.48597/ZB5S-NHDM +https://doi.org/10.48597/6TDQ-7YJC +https://doi.org/10.48597/V78A-TVJ5 +https://doi.org/10.48597/HKAG-6HER +https://doi.org/10.48597/QVFE-JPCK +https://doi.org/10.48597/8H65-HX6E +https://doi.org/10.48597/VV3E-DXE2 +https://doi.org/10.48597/N2RK-DCAK +https://doi.org/10.48597/XW83-9Y94 +https://doi.org/10.48597/CWRD-KMSS +https://doi.org/10.48597/EUMV-6NXT +https://doi.org/10.48597/99KW-KBN5 +https://doi.org/10.48597/HWK7-2FMZ +https://doi.org/10.48597/5V5R-FET8 +https://doi.org/10.48597/7R9N-5EAW +https://doi.org/10.48597/VZWJ-8JXU +https://doi.org/10.48597/6HRM-UYXK +https://doi.org/10.48597/G6R6-7USA +https://doi.org/10.48597/H4QA-GG53 +https://doi.org/10.48597/KZ7G-X78K +https://doi.org/10.48597/VZ3M-8CSF +https://doi.org/10.48597/8RBT-43BE +https://doi.org/10.48597/M96R-R3W8 +https://doi.org/10.48597/TVN4-EWWZ +https://doi.org/10.48597/RFWZ-UR4S +https://doi.org/10.48597/DXX5-SV6P +https://doi.org/10.48597/N65V-5VJS +https://doi.org/10.48597/MXXJ-FGSA +https://doi.org/10.48597/TYJV-H4R2 +https://doi.org/10.48597/M4AA-XWBN +https://doi.org/10.48597/XDNX-UD8D +https://doi.org/10.48597/U68X-33RY +https://doi.org/10.48597/T6F9-25YH +https://doi.org/10.48597/6DPF-437F +https://doi.org/10.48597/S9GV-2M6A +https://doi.org/10.48597/SAVK-DEUC +https://doi.org/10.48597/J5RT-ZD3X +https://doi.org/10.48597/2YD4-QKD3 +https://doi.org/10.48597/B2X2-YX2V +https://doi.org/10.48597/XC8E-FYR7 +https://doi.org/10.48597/HQWK-KQJ6 +https://doi.org/10.48597/N36V-F292 +https://doi.org/10.48597/FKGR-5F88 +https://doi.org/10.48597/FJUT-BWWW +https://doi.org/10.48597/MHKT-48G2 +https://doi.org/10.48597/4ZWN-EHK4 +https://doi.org/10.48597/924Y-REYX +https://doi.org/10.48597/X47A-TG8D +https://doi.org/10.48597/64NK-Y43S +https://doi.org/10.48597/SYM6-Z7HG +https://doi.org/10.48597/ZUP7-YC3G +https://doi.org/10.48597/UFNM-GP7Z +https://doi.org/10.48597/XWUY-WAJB +https://doi.org/10.48597/JC87-9PU6 +https://doi.org/10.48597/5CMN-EMPA +https://doi.org/10.48597/PEBE-N63B +https://doi.org/10.48597/683H-KEEB +https://doi.org/10.48597/TDE3-9G63 +https://doi.org/10.48597/AA7Y-YMWK +https://doi.org/10.48597/NNNH-TY36 +https://doi.org/10.48597/6XP6-D87Z +https://doi.org/10.48597/C6XJ-6E4J +https://doi.org/10.48597/F73V-9QH8 +https://doi.org/10.48597/RP59-7EPE +https://doi.org/10.48597/ZKDC-3E26 +https://doi.org/10.48597/7PY2-ZVQ8 +https://doi.org/10.48597/FPWP-ZN98 +https://doi.org/10.48597/5MG2-NNZR +https://doi.org/10.48597/H5H3-WMBA +https://doi.org/10.48597/WMQ6-J9NH +https://doi.org/10.48597/MBC7-UUS9 +https://doi.org/10.48597/RRYY-T9AB +https://doi.org/10.48597/NJFV-P6MR +https://doi.org/10.48597/T3R9-TENU +https://doi.org/10.48597/ZNFW-BBRR +https://doi.org/10.48597/6A4B-XTKN +https://doi.org/10.48597/G5WD-NC2A +https://doi.org/10.48597/K5MC-S69S +https://doi.org/10.48597/QJKC-AGW9 +https://doi.org/10.48597/XPUG-R5VV +https://doi.org/10.48597/MM8A-XGJ4 +https://doi.org/10.48597/8JG4-42CT +https://doi.org/10.48597/KDSJ-8VG4 +https://doi.org/10.48597/2MSC-NQ69 +https://doi.org/10.48597/RYRE-QXRH +https://doi.org/10.48597/69DG-ZZU8 +https://doi.org/10.48597/HE9C-5FPV +https://doi.org/10.48597/ZZ45-77JE +https://doi.org/10.48597/T358-UAKQ +https://doi.org/10.48597/54D2-D9ZP +https://doi.org/10.48597/2GA2-WNV7 +https://doi.org/10.48597/63FR-9E5A +https://doi.org/10.48597/QWNA-5JJV +https://doi.org/10.48597/PEP8-CP6F +https://doi.org/10.48597/AU89-DJR7 +https://doi.org/10.48597/5G7M-HXJ4 +https://doi.org/10.48597/MFPM-8FXM +https://doi.org/10.48597/K2FC-D52M +https://doi.org/10.48597/JNQH-UWDA +https://doi.org/10.48597/FTFV-CJXG +https://doi.org/10.48597/AAXJ-W9EF +https://doi.org/10.48597/9YH3-JTAR +https://doi.org/10.48597/ARA8-2KEA +https://doi.org/10.48597/VJJC-55Y8 +https://doi.org/10.48597/HVGQ-Q2KR +https://doi.org/10.48597/3BYV-BV38 +https://doi.org/10.48597/UMCC-QTA5 +https://doi.org/10.48597/G7YU-5MBF +https://doi.org/10.48597/YPT8-JHKS +https://doi.org/10.48597/U6VB-PEZQ +https://doi.org/10.48597/SQMS-BSPS +https://doi.org/10.48597/TWHC-A5FU +https://doi.org/10.48597/U9R6-8ABV +https://doi.org/10.48597/XBQP-68Y3 +https://doi.org/10.48597/9FM8-C2NM +https://doi.org/10.48597/U86A-9XY7 +https://doi.org/10.48597/5M4B-AC33 +https://doi.org/10.48597/VS9C-7RCW +https://doi.org/10.48597/FJUH-A6VR +https://doi.org/10.48597/RXHN-ZN4N +https://doi.org/10.48597/RQ9A-SXCJ +https://doi.org/10.48597/Y95Z-F6XC +https://doi.org/10.48597/KAVE-DPZM +https://doi.org/10.48597/47JJ-2FGC +https://doi.org/10.48597/A536-3A8Z +https://doi.org/10.48597/JUQH-98HD +https://doi.org/10.48597/A55E-QZET +https://doi.org/10.48597/CE5T-XS45 +https://doi.org/10.48597/JG4X-E64H +https://doi.org/10.48597/64HD-GFSC +https://doi.org/10.48597/XFQM-H4RZ +https://doi.org/10.48597/259Q-FZWS +https://doi.org/10.48597/HYGT-4GWD +https://doi.org/10.48597/P3WH-KGRQ +https://doi.org/10.48597/YG2E-NME8 +https://doi.org/10.48597/V68C-NXC3 +https://doi.org/10.48597/KR6G-U6W9 +https://doi.org/10.48597/H35F-55DQ +https://doi.org/10.48597/MMEP-P3BQ +https://doi.org/10.48597/JT8H-M7DX +https://doi.org/10.48597/45VK-HCV6 +https://doi.org/10.48597/264P-VQ8G +https://doi.org/10.48597/T7HT-BDN3 +https://doi.org/10.48597/ZEQR-24JP +https://doi.org/10.48597/6KX6-JQTE +https://doi.org/10.48597/FQGJ-AQYQ +https://doi.org/10.48597/4R9A-CHQP +https://doi.org/10.48597/TZPA-XNKE +https://doi.org/10.48597/A33P-TCEG +https://doi.org/10.48597/GGV2-QSH3 +https://doi.org/10.48597/5B8Y-NHDE +https://doi.org/10.48597/56ZR-94BB +https://doi.org/10.48597/RD4W-FKCV +https://doi.org/10.48597/RBFA-7GHT +https://doi.org/10.48597/45ZR-S4FU +https://doi.org/10.48597/CAFG-639C +https://doi.org/10.48597/AFZS-MBV2 +https://doi.org/10.48597/2ABD-DFG8 +https://doi.org/10.48597/N6YW-4RA2 +https://doi.org/10.48597/7HDW-3RUK +https://doi.org/10.48597/S39K-VKGP +https://doi.org/10.48597/QEQK-5KQM +https://doi.org/10.48597/UTSE-8MYX +https://doi.org/10.48597/37FB-GUVJ +https://doi.org/10.48597/CGXN-7VJN +https://doi.org/10.48597/2PJ5-7MG5 +https://doi.org/10.48597/FNUC-VPHB +https://doi.org/10.48597/ZWR7-C225 +https://doi.org/10.48597/YA64-ZQVW +https://doi.org/10.48597/7V2M-SJF6 +https://doi.org/10.48597/PXUZ-CZKV +https://doi.org/10.48597/TH9X-W6FV +https://doi.org/10.48597/BDUS-ZXDF +https://doi.org/10.48597/5C9J-UZRA +https://doi.org/10.48597/9FBP-JRP2 +https://doi.org/10.48597/JJZY-4XH5 +https://doi.org/10.48597/VVWQ-ACYF +https://doi.org/10.48597/KFSF-HHWN +https://doi.org/10.48597/QAT7-SYS2 +https://doi.org/10.48597/TRVH-HC8V +https://doi.org/10.48597/4XHP-CUVT +https://doi.org/10.48597/AWXX-YSXK +https://doi.org/10.48597/AAS5-P393 +https://doi.org/10.48597/YKNC-2NTT +https://doi.org/10.48597/8EEM-93YS +https://doi.org/10.48597/ZYUV-GS6X +https://doi.org/10.48597/E8X6-KQ6Z +https://doi.org/10.48597/ZEV8-MGAS +https://doi.org/10.48597/D7VN-7QYP +https://doi.org/10.48597/MXPP-N98D +https://doi.org/10.48597/Z82G-42SR +https://doi.org/10.48597/KGQQ-PU4S +https://doi.org/10.48597/Z92N-AKFU +https://doi.org/10.48597/8WM5-A8DW +https://doi.org/10.48597/DSKD-P7T5 +https://doi.org/10.48597/F7KZ-AGVU +https://doi.org/10.48597/WK2A-7VJH +https://doi.org/10.48597/ZG79-TSBG +https://doi.org/10.48597/33BH-882P +https://doi.org/10.48597/Q43K-YDWF +https://doi.org/10.48597/MFFC-4QT5 +https://doi.org/10.48597/VFVW-HYE9 +https://doi.org/10.48597/27N6-PBGG +https://doi.org/10.48597/BSD3-4X7X +https://doi.org/10.48597/M439-G2SQ +https://doi.org/10.48597/FJJ9-G5FC +https://doi.org/10.48597/C7JA-5Q3A +https://doi.org/10.48597/Z4QU-2MNN +https://doi.org/10.48597/B4RZ-XXH8 +https://doi.org/10.48597/AVK8-A93W +https://doi.org/10.48597/BMER-4JW3 +https://doi.org/10.48597/T2SQ-ZU2Y +https://doi.org/10.48597/BARY-VCXB +https://doi.org/10.48597/5QQH-QDEE +https://doi.org/10.48597/82A5-B7P7 +https://doi.org/10.48597/P3S4-WE6V +https://doi.org/10.48597/KCTT-8B2Q +https://doi.org/10.48597/7DBU-XJZD +https://doi.org/10.48597/Q6ME-7HKZ +https://doi.org/10.48597/2XP4-VEFZ +https://doi.org/10.48597/73SA-42E9 +https://doi.org/10.48597/9Y29-YSJE +https://doi.org/10.48597/CKFQ-X59V +https://doi.org/10.48597/VK4N-EF89 +https://doi.org/10.48597/XCZJ-2URJ +https://doi.org/10.48597/2BZ6-U7GZ +https://doi.org/10.48597/YM2Q-V5D8 +https://doi.org/10.48597/QPQ3-PUFW +https://doi.org/10.48597/CTJQ-83BT +https://doi.org/10.48597/8U8D-AQTY +https://doi.org/10.48597/RE33-ZJJ3 +https://doi.org/10.48597/MQBP-D9WS +https://doi.org/10.48597/43U9-JVRE +https://doi.org/10.48597/KBZ2-YBRX +https://doi.org/10.48597/KP5N-QSFS +https://doi.org/10.48597/THTZ-YJMZ +https://doi.org/10.48597/TKTY-2A2T +https://doi.org/10.48597/3THJ-QHVD +https://doi.org/10.48597/CFU2-DKFU +https://doi.org/10.48597/E6BD-XVBV +https://doi.org/10.48597/4YEF-9NUE +https://doi.org/10.48597/RTWU-KHMX +https://doi.org/10.48597/V64X-VYPB +https://doi.org/10.48597/DUUS-MMFK +https://doi.org/10.48597/C4Y3-46VV +https://doi.org/10.48597/YAAR-42CH +https://doi.org/10.48597/EAKT-SMVD +https://doi.org/10.48597/EUY4-VDMF +https://doi.org/10.48597/M6X9-MBRR +https://doi.org/10.48597/KRFB-7AEB +https://doi.org/10.48597/W8KF-UWTG +https://doi.org/10.48597/KGHV-ZSTW +https://doi.org/10.48597/VA4N-KE7E +https://doi.org/10.48597/EQ57-YZGB +https://doi.org/10.48597/9RDP-PSXF +https://doi.org/10.48597/SWBK-GHGP +https://doi.org/10.48597/RNV3-T9PM +https://doi.org/10.48597/V427-8ATA +https://doi.org/10.48597/7X4H-BFCA +https://doi.org/10.48597/6GXP-5RP8 +https://doi.org/10.48597/4UN2-5H7U +https://doi.org/10.48597/B5PW-WMYE +https://doi.org/10.48597/QMFZ-JV4V +https://doi.org/10.48597/WYVR-CR36 +https://doi.org/10.48597/4J2J-5KWT +https://doi.org/10.48597/8HFH-UECU +https://doi.org/10.48597/3UVC-XHG4 +https://doi.org/10.48597/ZGJ3-KJKM +https://doi.org/10.48597/N67N-8WPG +https://doi.org/10.48597/VXHS-3CZ9 +https://doi.org/10.48597/SNEF-XJ9X +https://doi.org/10.48597/7YJE-5SJH +https://doi.org/10.48597/B9AU-VH97 +https://doi.org/10.48597/3ZQ5-HM8C +https://doi.org/10.48597/PWEV-KN6Q +https://doi.org/10.48597/Q7QW-YY5B +https://doi.org/10.48597/KNZZ-B5UP +https://doi.org/10.48597/U7J6-UF5D +https://doi.org/10.48597/PVHB-G7T9 +https://doi.org/10.48597/7BEP-GZD4 +https://doi.org/10.48597/H9SW-NGXE +https://doi.org/10.48597/R92V-WB2P +https://doi.org/10.48597/T6RF-Y3QV +https://doi.org/10.48597/6ZB6-TM4B +https://doi.org/10.48597/SQMU-GMZY +https://doi.org/10.48597/GKWW-9CD6 +https://doi.org/10.48597/G8JT-9JAX +https://doi.org/10.48597/HE8B-UEZP +https://doi.org/10.48597/Z8P4-WSR8 +https://doi.org/10.48597/HSDY-WRWS +https://doi.org/10.48597/FVZP-57U9 +https://doi.org/10.48597/PPW4-RS3N +https://doi.org/10.48597/QZBG-PBXP +https://doi.org/10.48597/8VSW-WW5P +https://doi.org/10.48597/P6QT-V76H +https://doi.org/10.48597/HKS7-8SJB +https://doi.org/10.48597/DGVB-45WP +https://doi.org/10.48597/TK6J-MUDG +https://doi.org/10.48597/R5FX-ZBBA +https://doi.org/10.48597/MC88-AFTN +https://doi.org/10.48597/VXZR-Y654 +https://doi.org/10.48597/3FV9-E3S3 +https://doi.org/10.48597/G56B-UM5E +https://doi.org/10.48597/KXXW-KSWF +https://doi.org/10.48597/SY2D-DHZE +https://doi.org/10.48597/P5MT-KQFV +https://doi.org/10.48597/MGC4-DY7T +https://doi.org/10.48597/2ZPB-3FD4 +https://doi.org/10.48597/ZN5H-X8A5 +https://doi.org/10.48597/DGKY-D2S7 +https://doi.org/10.48597/JWDT-99SG +https://doi.org/10.48597/KE6Y-NZ38 +https://doi.org/10.48597/YSAK-YXC3 +https://doi.org/10.48597/AF52-Q23C +https://doi.org/10.48597/68DU-RE8K +https://doi.org/10.48597/MEDX-7KBX +https://doi.org/10.48597/YQY6-6KGJ +https://doi.org/10.48597/DT8Q-5JCW +https://doi.org/10.48597/GNJ5-GVVX +https://doi.org/10.48597/9XRB-7V4A +https://doi.org/10.48597/44AU-ZG3B +https://doi.org/10.48597/Q26T-74WD +https://doi.org/10.48597/VWWT-MN24 +https://doi.org/10.48597/TRWM-57Z4 +https://doi.org/10.48597/PGTJ-YQR2 +https://doi.org/10.48597/QVQM-FD47 +https://doi.org/10.48597/KKUS-85H8 +https://doi.org/10.48597/2N3T-2FUA +https://doi.org/10.48597/N5Y4-TF8A +https://doi.org/10.48597/QTXM-V3AV +https://doi.org/10.48597/4E5Y-7UVK +https://doi.org/10.48597/QMXT-Y6QP +https://doi.org/10.48597/97JE-24BW +https://doi.org/10.48597/RG29-RKQT +https://doi.org/10.48597/2VGT-23GV +https://doi.org/10.48597/NZ7P-SHA4 +https://doi.org/10.48597/Z42P-356K +https://doi.org/10.48597/BRGJ-NY94 +https://doi.org/10.48597/59G8-BEJT +https://doi.org/10.48597/SNHD-E9DK +https://doi.org/10.48597/VD9P-DBAK +https://doi.org/10.48597/JHZ8-BH4C +https://doi.org/10.48597/RED6-37JP +https://doi.org/10.48597/R966-6W7U +https://doi.org/10.48597/RSV6-PDMG +https://doi.org/10.48597/T5GR-ACTP +https://doi.org/10.48597/PUCA-DEXM +https://doi.org/10.48597/QFMU-WBAY +https://doi.org/10.48597/PV8X-FNZB +https://doi.org/10.48597/VTTP-D5TB +https://doi.org/10.48597/68SH-8VBX +https://doi.org/10.48597/EFDJ-DH8K +https://doi.org/10.48597/AA5T-FZC5 +https://doi.org/10.48597/X64M-XHT9 +https://doi.org/10.48597/NTB3-UQDJ +https://doi.org/10.48597/DJ8G-W72U +https://doi.org/10.48597/U9GJ-SA55 +https://doi.org/10.48597/7WZY-UK77 +https://doi.org/10.48597/K9NU-D46Y +https://doi.org/10.48597/HQA5-WHU8 +https://doi.org/10.48597/T22B-Q6YP +https://doi.org/10.48597/T3F3-USS7 +https://doi.org/10.48597/6GUY-EM29 +https://doi.org/10.48597/3H26-Y7BM +https://doi.org/10.48597/UQZU-NZB3 +https://doi.org/10.48597/JPZA-VBRN +https://doi.org/10.48597/NBWG-XFPJ +https://doi.org/10.48597/S935-8FX5 +https://doi.org/10.48597/U478-WAZD +https://doi.org/10.48597/KUZD-FJED +https://doi.org/10.48597/7M33-B42J +https://doi.org/10.48597/6KHP-2PQU +https://doi.org/10.48597/6ZDQ-3W57 +https://doi.org/10.48597/9NT9-U5DZ +https://doi.org/10.48597/ATPJ-C5R5 +https://doi.org/10.48597/UQ29-UN8D +https://doi.org/10.48597/2CE9-CQGV +https://doi.org/10.48597/MT3H-4A5C +https://doi.org/10.48597/NEPR-V38Q +https://doi.org/10.48597/4G2B-NXK7 +https://doi.org/10.48597/3QXD-AEWC +https://doi.org/10.48597/9KAB-KWRW +https://doi.org/10.48597/YEQQ-K39Q +https://doi.org/10.48597/RCNR-BN4N +https://doi.org/10.48597/DGAR-ZAVQ +https://doi.org/10.48597/DP4J-XXFY +https://doi.org/10.48597/3Q36-VKSR +https://doi.org/10.48597/ZT9C-M92S +https://doi.org/10.48597/R3V7-KSPK +https://doi.org/10.48597/CABK-FJMM +https://doi.org/10.48597/ZJ6R-T87B +https://doi.org/10.48597/YU8D-CCB8 +https://doi.org/10.48597/2EXP-83T4 +https://doi.org/10.48597/MH48-AP4Y +https://doi.org/10.48597/3CR5-D25G +https://doi.org/10.48597/3ZZA-38Y9 +https://doi.org/10.48597/NQCM-9AZQ +https://doi.org/10.48597/J65P-N5ZU +https://doi.org/10.48597/CPXN-R9MZ +https://doi.org/10.48597/YQNU-2XE5 +https://doi.org/10.48597/T7QZ-SFXS +https://doi.org/10.48597/K39S-5QAH +https://doi.org/10.48597/6D2A-KKRW +https://doi.org/10.48597/3ZTP-SMY4 +https://doi.org/10.48597/SYTM-WMTG +https://doi.org/10.48597/EYGE-YRD9 +https://doi.org/10.48597/PAJG-HDUP +https://doi.org/10.48597/TJ92-9VV6 +https://doi.org/10.48597/2FR5-2EYD +https://doi.org/10.48597/33P7-CBM3 +https://doi.org/10.48597/ZNKY-2GXF +https://doi.org/10.48597/EU4X-HE29 +https://doi.org/10.48597/R5AY-X9SE +https://doi.org/10.48597/ASAD-WKJV +https://doi.org/10.48597/ABNY-XAAH +https://doi.org/10.48597/QYQS-HXN8 +https://doi.org/10.48597/BTDQ-EDXD +https://doi.org/10.48597/FP8E-TEZN +https://doi.org/10.48597/57TT-D7ZH +https://doi.org/10.48597/SB6B-SDFV +https://doi.org/10.48597/5EEA-5DG3 +https://doi.org/10.48597/FJT7-EX3D +https://doi.org/10.48597/4Y2N-C7UC +https://doi.org/10.48597/X9BV-TXA6 +https://doi.org/10.48597/YJPR-VQNS +https://doi.org/10.48597/JVNP-UH94 +https://doi.org/10.48597/8FQP-US7A +https://doi.org/10.48597/7DC7-2JF2 +https://doi.org/10.48597/MKYC-CB4E +https://doi.org/10.48597/Y99M-J8K9 +https://doi.org/10.48597/DZSV-8P5S +https://doi.org/10.48597/7FKU-9QD2 +https://doi.org/10.48597/8M32-T7T2 +https://doi.org/10.48597/GH5D-CWJJ +https://doi.org/10.48597/HJWE-ZUQ6 +https://doi.org/10.48597/GXM9-SXUQ +https://doi.org/10.48597/EN6M-WVN5 +https://doi.org/10.48597/C6YE-AGYD +https://doi.org/10.48597/MUY3-YQPP +https://doi.org/10.48597/MJP9-3ENA +https://doi.org/10.48597/UPWD-QNKS +https://doi.org/10.48597/BHKX-8BVX +https://doi.org/10.48597/7PB7-SQCZ +https://doi.org/10.48597/HUQ9-T7P7 +https://doi.org/10.48597/TWZR-2ZP3 +https://doi.org/10.48597/XXWP-JT8G +https://doi.org/10.48597/5KRH-ZN3S +https://doi.org/10.48597/V8FD-FBV3 +https://doi.org/10.48597/SGKC-4FDB +https://doi.org/10.48597/W538-C8G6 +https://doi.org/10.48597/8MXD-5MKB +https://doi.org/10.48597/534Z-SK2K +https://doi.org/10.48597/DDS5-RYQP +https://doi.org/10.48597/PEV3-DQGM +https://doi.org/10.48597/47Y3-YNU7 +https://doi.org/10.48597/NW7U-NWUV +https://doi.org/10.48597/VZEQ-TPWS +https://doi.org/10.48597/AHA5-AMU4 +https://doi.org/10.48597/FRNW-4NXM +https://doi.org/10.48597/BWSX-YBZ6 +https://doi.org/10.48597/FK7Z-274Q +https://doi.org/10.48597/7FQG-WA7A +https://doi.org/10.48597/Y3PB-PSGW +https://doi.org/10.48597/MHMN-P5P3 +https://doi.org/10.48597/6ZNH-JFD9 +https://doi.org/10.48597/TT9F-Z2RA +https://doi.org/10.48597/CW7T-MUAQ +https://doi.org/10.48597/WPEY-UZB2 +https://doi.org/10.48597/RJT8-73EA +https://doi.org/10.48597/W4UC-PA6E +https://doi.org/10.48597/HXFG-6BDC +https://doi.org/10.48597/7C7J-Q8WZ +https://doi.org/10.48597/UZCD-NHW3 +https://doi.org/10.48597/MT4M-W35T +https://doi.org/10.48597/JY3R-FV5J +https://doi.org/10.48597/KVF7-Y8DV +https://doi.org/10.48597/F5BE-XSPY +https://doi.org/10.48597/VSC4-G9J9 +https://doi.org/10.48597/4DUV-EJJX +https://doi.org/10.48597/4VKV-MWD8 +https://doi.org/10.48597/ACRB-QWNR +https://doi.org/10.48597/4JUY-439N +https://doi.org/10.48597/MEPG-VSYS +https://doi.org/10.48597/TPVG-RVQU +https://doi.org/10.48597/SXRR-P9SD +https://doi.org/10.48597/98US-3Z2T +https://doi.org/10.48597/FR9V-P78N +https://doi.org/10.48597/3NA8-7EPQ +https://doi.org/10.48597/Y2Q9-Z69W +https://doi.org/10.48597/GQ6S-T725 +https://doi.org/10.48597/HMPH-67WU +https://doi.org/10.48597/Q9UH-AVWA +https://doi.org/10.48597/KFMD-MGR5 +https://doi.org/10.48597/AYA9-S5Z2 +https://doi.org/10.48597/9QEM-SGFX +https://doi.org/10.48597/6U44-9CZZ +https://doi.org/10.48597/J6WJ-5A8E +https://doi.org/10.48597/NZ9A-RT2K +https://doi.org/10.48597/VYZK-USKV +https://doi.org/10.48597/X4NW-KU8H +https://doi.org/10.48597/CM2J-8AYJ +https://doi.org/10.48597/2EZY-U9WB +https://doi.org/10.48597/2H7S-VXET +https://doi.org/10.48597/63GZ-SR5K +https://doi.org/10.48597/WC7K-4C4S +https://doi.org/10.48597/S2CF-FSMK +https://doi.org/10.48597/MGKJ-AASU +https://doi.org/10.48597/GHBJ-SU85 +https://doi.org/10.48597/JFF9-GMTV +https://doi.org/10.48597/TZEA-6H3G +https://doi.org/10.48597/TWK8-8VCK +https://doi.org/10.48597/NJPQ-37FT +https://doi.org/10.48597/KDPE-2C6J +https://doi.org/10.48597/NNTA-6B88 +https://doi.org/10.48597/X35Y-PSXQ +https://doi.org/10.48597/M3J7-SERB +https://doi.org/10.48597/6U4K-FRGA +https://doi.org/10.48597/45UQ-RQ2Y +https://doi.org/10.48597/4HRF-9U6A +https://doi.org/10.48597/XH5Q-PRDN +https://doi.org/10.48597/MKKH-YGN6 +https://doi.org/10.48597/K8PF-28SD +https://doi.org/10.48597/NSXP-SAFN +https://doi.org/10.48597/HS5Y-AE78 +https://doi.org/10.48597/9F9W-BE6X +https://doi.org/10.48597/TXEQ-3AUJ +https://doi.org/10.48597/XUZ4-24QD +https://doi.org/10.48597/SJE2-BN5X +https://doi.org/10.48597/T6C3-U4BW +https://doi.org/10.48597/AKPZ-PMVQ +https://doi.org/10.48597/DPHA-UHRJ +https://doi.org/10.48597/DHNY-WEY8 +https://doi.org/10.48597/FHFR-WMYZ +https://doi.org/10.48597/E7PG-J4QA +https://doi.org/10.48597/DVPA-DUTV +https://doi.org/10.48597/97CJ-FEMS +https://doi.org/10.48597/7NED-CPKA +https://doi.org/10.48597/KG5M-VTPK +https://doi.org/10.48597/739A-CBUA +https://doi.org/10.48597/NXER-T3KA +https://doi.org/10.48597/RTXS-U8P8 +https://doi.org/10.48597/NKPK-S65T +https://doi.org/10.48597/WNZ7-8TNB +https://doi.org/10.48597/489M-ZM8J +https://doi.org/10.48597/2MAT-XN68 +https://doi.org/10.48597/GAWG-MM5W +https://doi.org/10.48597/A9HC-J7GV +https://doi.org/10.48597/QFNC-E3HH +https://doi.org/10.48597/68T3-EXSF +https://doi.org/10.48597/SDKX-M7KQ +https://doi.org/10.48597/D7UG-97B2 +https://doi.org/10.48597/JM8T-3X3K +https://doi.org/10.48597/ES4U-3U6Q +https://doi.org/10.48597/YHDY-R8HC +https://doi.org/10.48597/R4KQ-7GJJ +https://doi.org/10.48597/C56K-DGKP +https://doi.org/10.48597/BKJ9-8AKP +https://doi.org/10.48597/W384-MKP9 +https://doi.org/10.48597/E5TP-PNQK +https://doi.org/10.48597/9RRP-RW4E +https://doi.org/10.48597/U5WX-232T +https://doi.org/10.48597/ZHBJ-9M29 +https://doi.org/10.48597/8D4U-54MN +https://doi.org/10.48597/RW9M-NJ9Q +https://doi.org/10.48597/3RX2-GKEK +https://doi.org/10.48597/TUHM-JYSH +https://doi.org/10.48597/S77F-TWVW +https://doi.org/10.48597/9J2A-R4R7 +https://doi.org/10.48597/GAHD-RMNV +https://doi.org/10.48597/C5D5-HMS9 +https://doi.org/10.48597/N3PY-TPA6 +https://doi.org/10.48597/KBA8-42KW +https://doi.org/10.48597/U5ES-2W9K +https://doi.org/10.48597/8JNK-JBS6 +https://doi.org/10.48597/KUTZ-VRG4 +https://doi.org/10.48597/YWT3-9ED7 +https://doi.org/10.48597/YKB5-E6JG +https://doi.org/10.48597/88NT-Z29X +https://doi.org/10.48597/3QTN-BTAK +https://doi.org/10.48597/6C9J-BMFC +https://doi.org/10.48597/9VWU-4ZYY +https://doi.org/10.48597/FAQK-6GPP +https://doi.org/10.48597/MBGJ-545V +https://doi.org/10.48597/J6F4-X48U +https://doi.org/10.48597/HWUV-4YJU +https://doi.org/10.48597/E4GC-7HQB +https://doi.org/10.48597/SZ2G-R6CF +https://doi.org/10.48597/VJ2A-ME63 +https://doi.org/10.48597/5DBB-VJ4T +https://doi.org/10.48597/2F2J-5B92 +https://doi.org/10.48597/KCQB-TGGP +https://doi.org/10.48597/6F7D-48MV +https://doi.org/10.48597/K5KX-63Q2 +https://doi.org/10.48597/7MNR-2E5X +https://doi.org/10.48597/YFPR-3W3P +https://doi.org/10.48597/3XU8-7MMN +https://doi.org/10.48597/2A9Z-SZEY +https://doi.org/10.48597/9GCP-RB6K +https://doi.org/10.48597/AAM7-2QHN +https://doi.org/10.48597/CZP9-T35J +https://doi.org/10.48597/CBDX-B7AB +https://doi.org/10.48597/3PTD-TN3G +https://doi.org/10.48597/G9N8-7HZX +https://doi.org/10.48597/GY94-B4QV +https://doi.org/10.48597/VG63-MN6Z +https://doi.org/10.48597/9XTS-MHCB +https://doi.org/10.48597/9Y5Z-MKY8 +https://doi.org/10.48597/NEFF-FCSM +https://doi.org/10.48597/NC5U-N5ZZ +https://doi.org/10.48597/VF58-6PJD +https://doi.org/10.48597/NYWK-8YZX +https://doi.org/10.48597/3ANR-3BBS +https://doi.org/10.48597/E9MC-P3HV +https://doi.org/10.48597/U6EY-CQG8 +https://doi.org/10.48597/89F5-FTS4 +https://doi.org/10.48597/4UG9-BK2K +https://doi.org/10.48597/DHFP-RBC4 +https://doi.org/10.48597/MGEH-PW9A +https://doi.org/10.48597/ND9G-K6SY +https://doi.org/10.48597/Z3FP-X7NF +https://doi.org/10.48597/6RSS-9S4S +https://doi.org/10.48597/GXPC-C7N8 +https://doi.org/10.48597/37SC-M6HQ +https://doi.org/10.48597/PJXM-6427 +https://doi.org/10.48597/NWEF-2MSD +https://doi.org/10.48597/JKN3-X6FM +https://doi.org/10.48597/A3VK-GBX4 +https://doi.org/10.48597/6DNZ-U6RN +https://doi.org/10.48597/68CN-ANKJ +https://doi.org/10.48597/DD47-BBY4 +https://doi.org/10.48597/TXDV-7CS9 +https://doi.org/10.48597/QDTB-6XFP +https://doi.org/10.48597/AKB8-NVEB +https://doi.org/10.48597/DBWG-2VQP +https://doi.org/10.48597/HTCN-6ES2 +https://doi.org/10.48597/FGCD-4PDJ +https://doi.org/10.48597/W73M-FVVX +https://doi.org/10.48597/SUEC-2CR8 +https://doi.org/10.48597/ANKB-MR29 +https://doi.org/10.48597/EGPK-54V7 +https://doi.org/10.48597/3QUT-XRSZ +https://doi.org/10.48597/VF5P-RRGF +https://doi.org/10.48597/CB68-KCN3 +https://doi.org/10.48597/UDR2-XH2Y +https://doi.org/10.48597/XSGH-2X2S +https://doi.org/10.48597/AVPQ-XCR3 +https://doi.org/10.48597/R5ZM-P47R +https://doi.org/10.48597/JANZ-DDRY +https://doi.org/10.48597/W5YE-7QHY +https://doi.org/10.48597/ZRQ3-RW8E +https://doi.org/10.48597/RMPJ-YMBN +https://doi.org/10.48597/ZWKK-BE7E +https://doi.org/10.48597/YXYN-7VDG +https://doi.org/10.48597/MFUG-C7WQ +https://doi.org/10.48597/ZPAV-PXZ2 +https://doi.org/10.48597/U255-8RYG +https://doi.org/10.48597/CZ25-K9D5 +https://doi.org/10.48597/9C9G-E65P +https://doi.org/10.48597/M52Y-WV8A +https://doi.org/10.48597/Y4SQ-7JZM +https://doi.org/10.48597/R6SJ-9MZC +https://doi.org/10.48597/Z7JF-V39E +https://doi.org/10.48597/TBSA-WA4W +https://doi.org/10.48597/XUMZ-RJJM +https://doi.org/10.48597/BW8T-EDHD +https://doi.org/10.48597/YGAB-N3CG +https://doi.org/10.48597/8U7D-SRH8 +https://doi.org/10.48597/DYUR-WPDA +https://doi.org/10.48597/8WZR-GQQ4 +https://doi.org/10.48597/2A5U-KVS5 +https://doi.org/10.48597/ADFN-6WX9 +https://doi.org/10.48597/G9AZ-837S +https://doi.org/10.48597/GBQ4-MYEZ +https://doi.org/10.48597/SY4S-UNZG +https://doi.org/10.48597/C2FX-RSR5 +https://doi.org/10.48597/AAV4-CZR2 +https://doi.org/10.48597/WE5E-C33S +https://doi.org/10.48597/BTJ8-6JXB +https://doi.org/10.48597/SGKZ-SK42 +https://doi.org/10.48597/Q5UT-83WA +https://doi.org/10.48597/C9NG-EXVX +https://doi.org/10.48597/4YBA-XHPY +https://doi.org/10.48597/9X3C-NNGV +https://doi.org/10.48597/MNQD-ASD2 +https://doi.org/10.48597/HQM6-SR3E +https://doi.org/10.48597/4Z67-DUBP +https://doi.org/10.48597/EP79-Q283 +https://doi.org/10.48597/HF8U-VASR +https://doi.org/10.48597/4X3B-ZBEX +https://doi.org/10.48597/8XY2-7UU9 +https://doi.org/10.48597/WD4M-YKMX +https://doi.org/10.48597/GN2K-EYFK +https://doi.org/10.48597/QV5N-3Q9F +https://doi.org/10.48597/M2HK-P9ST +https://doi.org/10.48597/VU5Y-4R5G +https://doi.org/10.48597/BF87-DN9P +https://doi.org/10.48597/EYWV-KE8H +https://doi.org/10.48597/Z9PV-RHYX +https://doi.org/10.48597/6JPJ-BXVR +https://doi.org/10.48597/CJJQ-PARK +https://doi.org/10.48597/CAXJ-24F7 +https://doi.org/10.48597/FEV6-4A3Q +https://doi.org/10.48597/73WU-VU4W +https://doi.org/10.48597/3X37-XJMB +https://doi.org/10.48597/YC8V-K5GX +https://doi.org/10.48597/9GU8-5QVY +https://doi.org/10.48597/VVD4-3KJ5 +https://doi.org/10.48597/JBX4-PXC7 +https://doi.org/10.48597/BWHF-TU94 +https://doi.org/10.48597/JCST-7T9A +https://doi.org/10.48597/NRKT-8JKX +https://doi.org/10.48597/B245-R2V8 +https://doi.org/10.48597/DD3N-EJ3A +https://doi.org/10.48597/GVWN-2NP7 +https://doi.org/10.48597/GFA7-Q6N6 +https://doi.org/10.48597/XHMT-HFWW +https://doi.org/10.48597/2M74-SR87 +https://doi.org/10.48597/5SND-CJQK +https://doi.org/10.48597/F7FA-DHUR +https://doi.org/10.48597/SCP7-6DWX +https://doi.org/10.48597/HRSN-PV3E +https://doi.org/10.48597/NQN4-84E9 +https://doi.org/10.48597/9C8E-5TCB +https://doi.org/10.48597/EU67-S4U7 +https://doi.org/10.48597/2QMD-RDVB +https://doi.org/10.48597/V2Z2-C7ZM +https://doi.org/10.48597/Z67B-W6NA +https://doi.org/10.48597/BMS8-RFFS +https://doi.org/10.48597/2YXE-XYP9 +https://doi.org/10.48597/CYEF-T5E9 +https://doi.org/10.48597/8M2F-R8BT +https://doi.org/10.48597/7935-SYE5 +https://doi.org/10.48597/B2BJ-9HVP +https://doi.org/10.48597/PNMA-XCWM +https://doi.org/10.48597/V72G-UN5F +https://doi.org/10.48597/5WMJ-RW6B +https://doi.org/10.48597/VSYC-AKD9 +https://doi.org/10.48597/7ARR-B7K5 +https://doi.org/10.48597/HDS8-37KY +https://doi.org/10.48597/WC4R-7YMM +https://doi.org/10.48597/WA37-ZSCQ +https://doi.org/10.48597/72P8-6QAU +https://doi.org/10.48597/N8B7-DT9W +https://doi.org/10.48597/G3H7-6HUX +https://doi.org/10.48597/8P6H-DYVR +https://doi.org/10.48597/4D8C-4PFR +https://doi.org/10.48597/AUQF-4ZQA +https://doi.org/10.48597/7AMW-ZDZ6 +https://doi.org/10.48597/KVWP-TVKR +https://doi.org/10.48597/438E-R6N9 +https://doi.org/10.48597/45QG-BMR6 +https://doi.org/10.48597/R6ME-6XK9 +https://doi.org/10.48597/CGC8-98AP +https://doi.org/10.48597/NV43-TJN9 +https://doi.org/10.48597/95DK-26ZW +https://doi.org/10.48597/VSQ2-FVF5 +https://doi.org/10.48597/FXJ2-X3ZN +https://doi.org/10.48597/MPHZ-WUSY +https://doi.org/10.48597/RN74-CV7X +https://doi.org/10.48597/6BG3-UGD4 +https://doi.org/10.48597/W7MZ-R4B3 +https://doi.org/10.48597/6DBE-WU75 +https://doi.org/10.48597/F88P-MTZ2 +https://doi.org/10.48597/QH4U-FGR5 +https://doi.org/10.48597/34E6-Q4SN +https://doi.org/10.48597/JK4E-M4W3 +https://doi.org/10.48597/JU9K-BYEB +https://doi.org/10.48597/AYP8-6CU8 +https://doi.org/10.48597/EEV7-XU5B +https://doi.org/10.48597/66W5-MVRH +https://doi.org/10.48597/82SS-VMKB +https://doi.org/10.48597/Y4JU-89NK +https://doi.org/10.48597/JP8B-GEJP +https://doi.org/10.48597/VCBK-YH26 +https://doi.org/10.48597/CEU4-C7EQ +https://doi.org/10.48597/4MDY-38N8 +https://doi.org/10.48597/ZTX7-ND8K +https://doi.org/10.48597/EQ4T-TX5E +https://doi.org/10.48597/FV4C-58QC +https://doi.org/10.48597/2R4F-TKGC +https://doi.org/10.48597/Q8Q7-KPGD +https://doi.org/10.48597/YCRP-JDHN +https://doi.org/10.48597/F443-8Y4V +https://doi.org/10.48597/FJ2G-49JM +https://doi.org/10.48597/BCQ5-DZK3 +https://doi.org/10.48597/5D7U-QAQW +https://doi.org/10.48597/CDVG-UVTQ +https://doi.org/10.48597/BGX9-DJ8C +https://doi.org/10.48597/ETME-XJSP +https://doi.org/10.48597/JFUC-G3NR +https://doi.org/10.48597/EXSZ-C5U7 +https://doi.org/10.48597/4J2Y-2YT2 +https://doi.org/10.48597/J72R-WRRV +https://doi.org/10.48597/R4TU-76NA +https://doi.org/10.48597/WJFW-4VWX +https://doi.org/10.48597/WH5Q-4G95 +https://doi.org/10.48597/9KZ4-SAFZ +https://doi.org/10.48597/ASYX-JUMP +https://doi.org/10.48597/TB9Q-HSVG +https://doi.org/10.48597/U2S6-FY27 +https://doi.org/10.48597/MSWF-W2WQ +https://doi.org/10.48597/JKRD-85R6 +https://doi.org/10.48597/Y3PZ-U6B4 +https://doi.org/10.48597/KJMH-TH2D +https://doi.org/10.48597/MWP4-MTCA +https://doi.org/10.48597/GA5X-N6FG +https://doi.org/10.48597/GW5P-GZHY +https://doi.org/10.48597/UGFE-TMFQ +https://doi.org/10.48597/EKAK-3N5X +https://doi.org/10.48597/YM4V-M4FG +https://doi.org/10.48597/2JNR-W9UP +https://doi.org/10.48597/DKSV-A6VS +https://doi.org/10.48597/63UY-GT9V +https://doi.org/10.48597/3QPW-HRWU +https://doi.org/10.48597/KJMR-B9NE +https://doi.org/10.48597/JGFT-75WY +https://doi.org/10.48597/CMN7-BFJ9 +https://doi.org/10.48597/FWP7-9BQY +https://doi.org/10.48597/64JH-A4UK +https://doi.org/10.48597/KTJ6-UF5Y +https://doi.org/10.48597/NAB8-32W7 +https://doi.org/10.48597/RFM4-CYKF +https://doi.org/10.48597/WJME-QPXQ +https://doi.org/10.48597/F27F-A39F +https://doi.org/10.48597/X9VD-QCGM +https://doi.org/10.48597/YQ7S-E3MF +https://doi.org/10.48597/HGEK-AU3M +https://doi.org/10.48597/R6WD-MSRK +https://doi.org/10.48597/V2RC-WTNC +https://doi.org/10.48597/MGVV-YQDN +https://doi.org/10.48597/8B9Y-RCZS +https://doi.org/10.48597/KS5G-ZYMM +https://doi.org/10.48597/GHY5-SRAA +https://doi.org/10.48597/XAFN-SN5N +https://doi.org/10.48597/M78Y-X9ZN +https://doi.org/10.48597/6B3G-ECMC +https://doi.org/10.48597/EM8Z-9H3Y +https://doi.org/10.48597/MNGD-A9YU +https://doi.org/10.48597/TRVK-Z3EV +https://doi.org/10.48597/XNJN-V9XJ +https://doi.org/10.48597/5BGR-BGNU +https://doi.org/10.48597/JAQU-HYSF +https://doi.org/10.48597/795Y-97CT +https://doi.org/10.48597/YE6P-FYP3 +https://doi.org/10.48597/SC3E-NETG +https://doi.org/10.48597/PUB2-5Y7F +https://doi.org/10.48597/FRNJ-6ZKB +https://doi.org/10.48597/XDN6-P6SS +https://doi.org/10.48597/KQHM-C7YK +https://doi.org/10.48597/5XZH-VD9D +https://doi.org/10.48597/HQPT-FA2Q +https://doi.org/10.48597/R64W-9H4J +https://doi.org/10.48597/6XXC-V723 +https://doi.org/10.48597/78E2-R87M +https://doi.org/10.48597/E7ZV-92G3 +https://doi.org/10.48597/WAEV-NACA +https://doi.org/10.48597/93QJ-8BWH +https://doi.org/10.48597/AC8J-JM8F +https://doi.org/10.48597/PPMA-NJPS +https://doi.org/10.48597/6GVS-DWDW +https://doi.org/10.48597/K6SW-2SDW +https://doi.org/10.48597/YXPT-33G8 +https://doi.org/10.48597/HF4S-A47P +https://doi.org/10.48597/TN4A-EWAR +https://doi.org/10.48597/YDKR-YVRV +https://doi.org/10.48597/8K8H-RHZN +https://doi.org/10.48597/Y5S7-H2RP +https://doi.org/10.48597/YHGD-YGMT +https://doi.org/10.48597/4XRR-TR6P +https://doi.org/10.48597/P3SQ-RK2W +https://doi.org/10.48597/ZXR7-CA76 +https://doi.org/10.48597/7S28-PMT6 +https://doi.org/10.48597/4BWS-WXRC +https://doi.org/10.48597/8YZD-S5QS +https://doi.org/10.48597/HZ8E-EVSE +https://doi.org/10.48597/Q97V-2PBA +https://doi.org/10.48597/82ZU-2GNK +https://doi.org/10.48597/M974-Z53X +https://doi.org/10.48597/X9P4-7N5J +https://doi.org/10.48597/EUKJ-T9DR +https://doi.org/10.48597/K9V7-U5J7 +https://doi.org/10.48597/SQ72-96TC +https://doi.org/10.48597/CTMU-XEE5 +https://doi.org/10.48597/87CQ-RWDR +https://doi.org/10.48597/JDEA-MRVB +https://doi.org/10.48597/PKSQ-R99Q +https://doi.org/10.48597/C9A3-FJDQ +https://doi.org/10.48597/V9GN-4538 +https://doi.org/10.48597/29ZM-MG7H +https://doi.org/10.48597/MJFX-D8CJ +https://doi.org/10.48597/FYM5-AT3R +https://doi.org/10.48597/8ZVU-KDTS +https://doi.org/10.48597/MJK2-Q9GH +https://doi.org/10.48597/CXZZ-WYF2 +https://doi.org/10.48597/9YPV-CZVA +https://doi.org/10.48597/PQH8-X3ZR +https://doi.org/10.48597/YHF9-SCBH +https://doi.org/10.48597/A697-S2SV +https://doi.org/10.48597/FA99-FPEV +https://doi.org/10.48597/SZU5-79M7 +https://doi.org/10.48597/P7JJ-9SYM +https://doi.org/10.48597/JY23-QZNN +https://doi.org/10.48597/P45H-SFWA +https://doi.org/10.48597/8MHT-WT75 +https://doi.org/10.48597/6CRU-UVDX +https://doi.org/10.48597/MPU8-UYUC +https://doi.org/10.48597/6QKP-VAW6 +https://doi.org/10.48597/GYHN-3U45 +https://doi.org/10.48597/4ERE-XDTV +https://doi.org/10.48597/PZKP-VVGV +https://doi.org/10.48597/SXAX-J57E +https://doi.org/10.48597/A5UT-TYX7 +https://doi.org/10.48597/NK9G-E8UN +https://doi.org/10.48597/255F-PKJG +https://doi.org/10.48597/ARA4-A6P6 +https://doi.org/10.48597/W2MF-ARAD +https://doi.org/10.48597/VFYN-9BDC +https://doi.org/10.48597/T723-W42F +https://doi.org/10.48597/2WSA-VRDG +https://doi.org/10.48597/5GWZ-TG7J +https://doi.org/10.48597/FMYZ-A8VQ +https://doi.org/10.48597/BFFP-MCFW +https://doi.org/10.48597/4JXX-D3RE +https://doi.org/10.48597/3FWF-GQVS +https://doi.org/10.48597/D2JZ-6GV5 +https://doi.org/10.48597/MWVT-XT9U +https://doi.org/10.48597/XJ8V-6CBK +https://doi.org/10.48597/3XYT-MQ4Q +https://doi.org/10.48597/HVPC-EJ7R +https://doi.org/10.48597/YCCW-F9CA +https://doi.org/10.48597/QC2T-UT7A +https://doi.org/10.48597/8327-66ZA +https://doi.org/10.48597/YKFQ-ZBEA +https://doi.org/10.48597/MH87-ZZVF +https://doi.org/10.48597/56V6-XPWF +https://doi.org/10.48597/V6MB-526X +https://doi.org/10.48597/J6UF-QY4J +https://doi.org/10.48597/7N9K-VGFH +https://doi.org/10.48597/JTMT-FZEG +https://doi.org/10.48597/2FD9-GBE2 +https://doi.org/10.48597/VESQ-WRJB +https://doi.org/10.48597/GVAY-ZR37 +https://doi.org/10.48597/52Q8-UAFD +https://doi.org/10.48597/PQ9P-JRS9 +https://doi.org/10.48597/KME4-Q4ND +https://doi.org/10.48597/WR3K-M4UA +https://doi.org/10.48597/SUWK-ESU5 +https://doi.org/10.48597/QUEF-43FC +https://doi.org/10.48597/KZHK-G8J6 +https://doi.org/10.48597/V6R7-UUZN +https://doi.org/10.48597/B27G-M5NB +https://doi.org/10.48597/PDF5-JWK5 +https://doi.org/10.48597/8BDN-H5JK +https://doi.org/10.48597/NUJ4-94W3 +https://doi.org/10.48597/ZW38-D89D +https://doi.org/10.48597/VV7M-BGEB +https://doi.org/10.48597/TQUZ-DV6J +https://doi.org/10.48597/PZNG-P53H +https://doi.org/10.48597/P68C-X8SF +https://doi.org/10.48597/JDAE-QNN6 +https://doi.org/10.48597/UXFC-646D +https://doi.org/10.48597/MCJM-8D9B +https://doi.org/10.48597/QYRV-WZVC +https://doi.org/10.48597/NK5C-S7VE +https://doi.org/10.48597/NYEN-XW49 +https://doi.org/10.48597/HGDD-KZPD +https://doi.org/10.48597/JZCB-KCBF +https://doi.org/10.48597/2EAB-7CBR +https://doi.org/10.48597/AMMS-EHPB +https://doi.org/10.48597/UARC-YNVW +https://doi.org/10.48597/XCTZ-DMH6 +https://doi.org/10.48597/FNFP-3N3J +https://doi.org/10.48597/9NXQ-HSJ9 +https://doi.org/10.48597/65BH-CMNV +https://doi.org/10.48597/PZ9V-HKP4 +https://doi.org/10.48597/UWCS-W3KH +https://doi.org/10.48597/2RRG-58TP +https://doi.org/10.48597/564H-BUXN +https://doi.org/10.48597/9XVX-W7A5 +https://doi.org/10.48597/9G9Q-T3NC +https://doi.org/10.48597/ZVUD-XZ38 +https://doi.org/10.48597/ZSHW-2ABD +https://doi.org/10.48597/55FR-F8JG +https://doi.org/10.48597/SFS3-BWZR +https://doi.org/10.48597/8YZW-CNH9 +https://doi.org/10.48597/7U8Y-CPB6 +https://doi.org/10.48597/JTNH-9W9Z +https://doi.org/10.48597/M87Q-SVF3 +https://doi.org/10.48597/TT34-S6WC +https://doi.org/10.48597/84DJ-W35D +https://doi.org/10.48597/4ZSD-BGDT +https://doi.org/10.48597/42TM-7GMQ +https://doi.org/10.48597/3QVP-SXJU +https://doi.org/10.48597/8RYK-GN6C +https://doi.org/10.48597/3A6E-UQMJ +https://doi.org/10.48597/W2T4-MK24 +https://doi.org/10.48597/DJCH-VNXA +https://doi.org/10.48597/7S6P-G344 +https://doi.org/10.48597/JJDR-URVC +https://doi.org/10.48597/58H9-EYBC +https://doi.org/10.48597/9Q5F-EJYH +https://doi.org/10.48597/5B8Z-QE4Z +https://doi.org/10.48597/CF4X-E4B9 +https://doi.org/10.48597/92ZU-Y9EN +https://doi.org/10.48597/A379-4E8N +https://doi.org/10.48597/DCJR-ZZZU +https://doi.org/10.48597/7EX5-EEMP +https://doi.org/10.48597/JATD-87F9 +https://doi.org/10.48597/MDYD-QPPX +https://doi.org/10.48597/ZYPH-BGQ8 +https://doi.org/10.48597/B6TW-J9S2 +https://doi.org/10.48597/4BMR-Z699 +https://doi.org/10.48597/ETF5-HC73 +https://doi.org/10.48597/YQ74-QDZ3 +https://doi.org/10.48597/XR6C-9PS3 +https://doi.org/10.48597/3K7H-2VYS +https://doi.org/10.48597/9FKB-GRFX +https://doi.org/10.48597/F85P-YJ6P +https://doi.org/10.48597/SATS-E2QM +https://doi.org/10.48597/3D84-FSAE +https://doi.org/10.48597/7EUT-DG5A +https://doi.org/10.48597/KH5F-4UFA +https://doi.org/10.48597/HXEF-59E2 +https://doi.org/10.48597/K58S-B9SZ +https://doi.org/10.48597/RY9D-9HN5 +https://doi.org/10.48597/FBEV-7NEM +https://doi.org/10.48597/4VKR-333F +https://doi.org/10.48597/39HG-NQV3 +https://doi.org/10.48597/WSPY-2YCQ +https://doi.org/10.48597/4MZZ-2SDA +https://doi.org/10.48597/CW9B-6WPF +https://doi.org/10.48597/A3UC-GJW2 +https://doi.org/10.48597/P53J-2CR8 +https://doi.org/10.48597/KSKS-E242 +https://doi.org/10.48597/PJXA-7JN8 +https://doi.org/10.48597/FBCK-8B3D +https://doi.org/10.48597/SXZA-26F2 +https://doi.org/10.48597/ERGJ-WVYV +https://doi.org/10.48597/3ABW-4568 +https://doi.org/10.48597/AV5Y-EWE4 +https://doi.org/10.48597/A3V5-A8AM +https://doi.org/10.48597/XUBN-HQ98 +https://doi.org/10.48597/ZDN3-5MCX +https://doi.org/10.48597/KXX2-FQ4Q +https://doi.org/10.48597/PV25-PF6H +https://doi.org/10.48597/G35P-QJVP +https://doi.org/10.48597/JB7H-24QW +https://doi.org/10.48597/7NAM-8QBJ +https://doi.org/10.48597/Z9D6-YEK3 +https://doi.org/10.48597/QTUC-CHFZ +https://doi.org/10.48597/UZ7W-MK6V +https://doi.org/10.48597/YZJ2-82RA +https://doi.org/10.48597/NVCW-3FP2 +https://doi.org/10.48597/9Q8V-W4TU +https://doi.org/10.48597/TFHG-BPWZ +https://doi.org/10.48597/2XMH-GMYW +https://doi.org/10.48597/CMRX-6688 +https://doi.org/10.48597/2K5C-BSCK +https://doi.org/10.48597/5YH9-7KYU +https://doi.org/10.48597/NS6H-3MDK +https://doi.org/10.48597/NDGX-8SGR +https://doi.org/10.48597/NRGU-AZNE +https://doi.org/10.48597/XS2X-UTUT +https://doi.org/10.48597/EG2F-FXKQ +https://doi.org/10.48597/CK8K-R5RJ +https://doi.org/10.48597/BBUT-QKBX +https://doi.org/10.48597/GYGX-4JTU +https://doi.org/10.48597/CA2S-3DVA +https://doi.org/10.48597/KTXV-XZY3 +https://doi.org/10.48597/FD4W-65XH +https://doi.org/10.48597/BEUB-JC9V +https://doi.org/10.48597/TH3S-HCA8 +https://doi.org/10.48597/MEJT-9STU +https://doi.org/10.48597/N3PU-7ASG +https://doi.org/10.48597/UCHS-QKZT +https://doi.org/10.48597/XPED-QYYR +https://doi.org/10.48597/PZKN-HV53 +https://doi.org/10.48597/EA79-XE79 +https://doi.org/10.48597/FJZ5-DPDW +https://doi.org/10.48597/RSPZ-QFJY +https://doi.org/10.48597/BSVG-S7RP +https://doi.org/10.48597/ZHT3-QNGA +https://doi.org/10.48597/HA6C-UWQG +https://doi.org/10.48597/W6JW-DQKC +https://doi.org/10.48597/8UJD-KBBX +https://doi.org/10.48597/U3DM-Y83K +https://doi.org/10.48597/S4HZ-8TVQ +https://doi.org/10.48597/KBY8-7MXS +https://doi.org/10.48597/DFYZ-DA5Q +https://doi.org/10.48597/XX6T-4YEC +https://doi.org/10.48597/QN2J-CX36 +https://doi.org/10.48597/4RG4-97YH +https://doi.org/10.48597/NE9A-FP37 +https://doi.org/10.48597/95N2-T3UU +https://doi.org/10.48597/PPGB-3ERU +https://doi.org/10.48597/DTQD-RM5Z +https://doi.org/10.48597/X7SV-PSCV +https://doi.org/10.48597/2RFD-UJFE +https://doi.org/10.48597/Q5U6-C9JQ +https://doi.org/10.48597/GTPN-AQYH +https://doi.org/10.48597/9GAX-Y7FE +https://doi.org/10.48597/X7K5-5RCT +https://doi.org/10.48597/ER2A-JDXT +https://doi.org/10.48597/KAX6-3FZW +https://doi.org/10.48597/N35S-DCP2 +https://doi.org/10.48597/UPC7-HV8S +https://doi.org/10.48597/F33V-MFQM +https://doi.org/10.48597/Q72N-FF2Q +https://doi.org/10.48597/QNVN-RZ5X +https://doi.org/10.48597/7W23-Q4ZR +https://doi.org/10.48597/G5Y4-EZKR +https://doi.org/10.48597/M4E8-QR7R +https://doi.org/10.48597/532B-8S4K +https://doi.org/10.48597/2PRY-MJH4 +https://doi.org/10.48597/PKN4-85VF +https://doi.org/10.48597/PEAN-489T +https://doi.org/10.48597/QSS6-6CRV +https://doi.org/10.48597/QEK4-Q9JG +https://doi.org/10.48597/325P-F7JH +https://doi.org/10.48597/BY5R-C5US +https://doi.org/10.48597/A7Q9-DJSS +https://doi.org/10.48597/C8HG-8SBG +https://doi.org/10.48597/JJDJ-KP6M +https://doi.org/10.48597/Y573-JAG9 +https://doi.org/10.48597/NK8Q-SBNR +https://doi.org/10.48597/GC4Y-KHR2 +https://doi.org/10.48597/M7HZ-HVWC +https://doi.org/10.48597/WQ6E-3E7K +https://doi.org/10.48597/BTTN-99CG +https://doi.org/10.48597/3TFW-X2ZA +https://doi.org/10.48597/T5J9-UWJ8 +https://doi.org/10.48597/APP5-JNBT +https://doi.org/10.48597/QZA4-GX9F +https://doi.org/10.48597/FVDN-QNG5 +https://doi.org/10.48597/KDZG-4SCK +https://doi.org/10.48597/22XM-NV7Y +https://doi.org/10.48597/GTVJ-HEXR +https://doi.org/10.48597/Y5CW-F779 +https://doi.org/10.48597/FM4Q-XKPG +https://doi.org/10.48597/U88Y-G2HC +https://doi.org/10.48597/WNTV-6G7P +https://doi.org/10.48597/75B9-E2TM +https://doi.org/10.48597/89NW-X9RE +https://doi.org/10.48597/9YRB-FQUW +https://doi.org/10.48597/DGMP-YAHF +https://doi.org/10.48597/3CGV-K7NN +https://doi.org/10.48597/HZQ7-FRHM +https://doi.org/10.48597/4Y6T-2AX2 +https://doi.org/10.48597/28JV-JZRS +https://doi.org/10.48597/C6Z2-6XGZ +https://doi.org/10.48597/NK8F-3FKK +https://doi.org/10.48597/EQ6T-FKB9 +https://doi.org/10.48597/TAK5-9MKX +https://doi.org/10.48597/QENJ-TMWE +https://doi.org/10.48597/APDS-UJX3 +https://doi.org/10.48597/N2SD-8699 +https://doi.org/10.48597/98UY-Q7K6 +https://doi.org/10.48597/G9CT-4KWD +https://doi.org/10.48597/KMHZ-ZWKU +https://doi.org/10.48597/WXUG-PQCS +https://doi.org/10.48597/57MU-PCDK +https://doi.org/10.48597/44SM-2Z3Q +https://doi.org/10.48597/J8KU-ZJVF +https://doi.org/10.48597/MVAS-YR2P +https://doi.org/10.48597/FSCN-NJ87 +https://doi.org/10.48597/PPS9-KDQB +https://doi.org/10.48597/656E-CJ6R +https://doi.org/10.48597/F3AX-VUF7 +https://doi.org/10.48597/8AXT-VFY9 +https://doi.org/10.48597/Z73V-APRX +https://doi.org/10.48597/PA6W-4N68 +https://doi.org/10.48597/36NX-WJ49 +https://doi.org/10.48597/B9MV-PJJT +https://doi.org/10.48597/3R6X-2KRD +https://doi.org/10.48597/XT9F-PHZT +https://doi.org/10.48597/U9A5-ZM5V +https://doi.org/10.48597/UX4V-C4UF +https://doi.org/10.48597/GJE9-K9CN +https://doi.org/10.48597/RKYA-RXAS +https://doi.org/10.48597/GCHB-7C52 +https://doi.org/10.48597/84YZ-P49B +https://doi.org/10.48597/8P32-SHW9 +https://doi.org/10.48597/P9TY-WAYH +https://doi.org/10.48597/DEGX-2JDM +https://doi.org/10.48597/YPZ5-6V4V +https://doi.org/10.48597/W9H9-GZ9B +https://doi.org/10.48597/N4UU-KYWA +https://doi.org/10.48597/K7GX-5ZRX +https://doi.org/10.48597/4WHN-R5UU +https://doi.org/10.48597/ZNPT-XCZN +https://doi.org/10.48597/KR9Z-K6A2 +https://doi.org/10.48597/XFEE-U6PK +https://doi.org/10.48597/VUJ6-E8CG +https://doi.org/10.48597/SU9A-PZXN +https://doi.org/10.48597/YECT-3MM5 +https://doi.org/10.48597/CA3T-CX2H +https://doi.org/10.48597/Z352-6VKD +https://doi.org/10.48597/3V8A-NWQF +https://doi.org/10.48597/32TT-Z48H +https://doi.org/10.48597/AVBV-B7S5 +https://doi.org/10.48597/J5JS-9H6D +https://doi.org/10.48597/URR9-5YZ8 +https://doi.org/10.48597/WY36-5PPT +https://doi.org/10.48597/D4V8-EFK7 +https://doi.org/10.48597/CHRG-YK7M +https://doi.org/10.48597/S3U4-8ZB9 +https://doi.org/10.48597/8VF2-4D8G +https://doi.org/10.48597/Y9U3-HRY4 +https://doi.org/10.48597/YH3B-QTHT +https://doi.org/10.48597/XBDH-YGRM +https://doi.org/10.48597/WAZ5-EHRG +https://doi.org/10.48597/MV6J-F6P9 +https://doi.org/10.48597/QMVA-D7NH +https://doi.org/10.48597/C9HM-CUFE +https://doi.org/10.48597/R4B9-FXDD +https://doi.org/10.48597/6HHN-Y2YT +https://doi.org/10.48597/9EEJ-SKKA +https://doi.org/10.48597/DVKM-G4VP +https://doi.org/10.48597/5KSU-RU67 +https://doi.org/10.48597/A5WE-79JY +https://doi.org/10.48597/QHXS-H4JG +https://doi.org/10.48597/EYYA-5GJW +https://doi.org/10.48597/GEZR-U3K7 +https://doi.org/10.48597/BRMS-9TE7 +https://doi.org/10.48597/FMU5-QYZR +https://doi.org/10.48597/RTNW-8DEX +https://doi.org/10.48597/9ZRW-NZHG +https://doi.org/10.48597/RGHD-ZJ7B +https://doi.org/10.48597/K3U2-Z2GW +https://doi.org/10.48597/8KAH-X9AE +https://doi.org/10.48597/6HW8-Z55E +https://doi.org/10.48597/CB8Q-K5Z9 +https://doi.org/10.48597/5JUB-Q4TZ +https://doi.org/10.48597/BD5B-8HTS +https://doi.org/10.48597/5ZAW-3Z7Z +https://doi.org/10.48597/H2N8-G4T5 +https://doi.org/10.48597/CGT6-5HS6 +https://doi.org/10.48597/PZQ3-VW5W +https://doi.org/10.48597/4B46-F7JU +https://doi.org/10.48597/9K2K-TBV2 +https://doi.org/10.48597/ZKKK-7QCC +https://doi.org/10.48597/GA5V-GJKE +https://doi.org/10.48597/CWJX-ARUD +https://doi.org/10.48597/5DJK-7CWC +https://doi.org/10.48597/BP7A-TZZU +https://doi.org/10.48597/Y6JF-QBH6 +https://doi.org/10.48597/YETD-WS9A +https://doi.org/10.48597/9WH8-98RF +https://doi.org/10.48597/MC4W-3M66 +https://doi.org/10.48597/XMUD-3D8U +https://doi.org/10.48597/J6R2-B8M4 +https://doi.org/10.48597/C6FG-E8S8 +https://doi.org/10.48597/C5DM-J4HX +https://doi.org/10.48597/KHYE-NSZX +https://doi.org/10.48597/W52Z-GYHU +https://doi.org/10.48597/REYM-E4VZ +https://doi.org/10.48597/X3T6-6CGR +https://doi.org/10.48597/PC99-GAMC +https://doi.org/10.48597/6MVX-2XBF +https://doi.org/10.48597/AW5B-33KJ +https://doi.org/10.48597/GTEW-MPZA +https://doi.org/10.48597/QUJH-SDNH +https://doi.org/10.48597/DAZP-QKDR +https://doi.org/10.48597/X6J2-PZAN +https://doi.org/10.48597/XR74-YX67 +https://doi.org/10.48597/KGD4-8Y9Q +https://doi.org/10.48597/NSDG-ZDUE +https://doi.org/10.48597/AZHJ-6NKR +https://doi.org/10.48597/JDPK-AUG2 +https://doi.org/10.48597/4E5T-XRF5 +https://doi.org/10.48597/Z2BG-JQKR +https://doi.org/10.48597/PRHD-ARG7 +https://doi.org/10.48597/VZK9-296T +https://doi.org/10.48597/6B5Y-7UXE +https://doi.org/10.48597/WABC-2Y4T +https://doi.org/10.48597/MX5E-E73G +https://doi.org/10.48597/MS2Z-WAXA +https://doi.org/10.48597/NGEY-VVTB +https://doi.org/10.48597/7R53-Y5XN +https://doi.org/10.48597/XHKZ-3X4N +https://doi.org/10.48597/AFUD-4C5J +https://doi.org/10.48597/DZVG-E96P +https://doi.org/10.48597/WWD6-4G4R +https://doi.org/10.48597/YHDZ-GTP4 +https://doi.org/10.48597/2HQF-MNPG +https://doi.org/10.48597/B292-J9TH +https://doi.org/10.48597/DTGH-YNP2 +https://doi.org/10.48597/F9Z6-S38H +https://doi.org/10.48597/QVN6-98RR +https://doi.org/10.48597/4SAB-KBD8 +https://doi.org/10.48597/5NU7-RXWJ +https://doi.org/10.48597/MQUT-RPN2 +https://doi.org/10.48597/K4JY-WD66 +https://doi.org/10.48597/BM7K-W9S6 +https://doi.org/10.48597/CAEP-8PVE +https://doi.org/10.48597/GF2G-7F6N +https://doi.org/10.48597/P3NZ-JR85 +https://doi.org/10.48597/B8ZN-5CH9 +https://doi.org/10.48597/4BUN-7XAR +https://doi.org/10.48597/RN94-TZUG +https://doi.org/10.48597/GMA7-7FCQ +https://doi.org/10.48597/V2NS-RRDW +https://doi.org/10.48597/D6ST-JSVE +https://doi.org/10.48597/9MTT-2V5Q +https://doi.org/10.48597/H98S-JUAT +https://doi.org/10.48597/7S99-GA9S +https://doi.org/10.48597/CSEK-GUBS +https://doi.org/10.48597/3XQM-6D2D +https://doi.org/10.48597/SEBZ-EAMV +https://doi.org/10.48597/NFUQ-FGHZ +https://doi.org/10.48597/5SRD-PHPV +https://doi.org/10.48597/ED9V-3B69 +https://doi.org/10.48597/R6UQ-FG2R +https://doi.org/10.48597/UJJ2-AWSH +https://doi.org/10.48597/B7NC-9EJA +https://doi.org/10.48597/SBJP-RX5M +https://doi.org/10.48597/33TF-63CR +https://doi.org/10.48597/7MTV-YRX7 +https://doi.org/10.48597/VRKP-7BJ2 +https://doi.org/10.48597/RPZH-P22R +https://doi.org/10.48597/XYVX-A6WT +https://doi.org/10.48597/YX2C-GZSR +https://doi.org/10.48597/63ZT-YXHP +https://doi.org/10.48597/YK86-XM93 +https://doi.org/10.48597/MN4A-A8DG +https://doi.org/10.48597/9J46-65E3 +https://doi.org/10.48597/A4J8-YK9D +https://doi.org/10.48597/GU67-4T84 +https://doi.org/10.48597/KUAW-2T38 +https://doi.org/10.48597/3F6R-YAMV +https://doi.org/10.48597/WKK9-KWEB +https://doi.org/10.48597/XT4T-HAC8 +https://doi.org/10.48597/K4U2-UE7Q +https://doi.org/10.48597/CVPJ-DQN3 +https://doi.org/10.48597/3HT5-N8SH +https://doi.org/10.48597/G3MG-P35C +https://doi.org/10.48597/GTKX-73MW +https://doi.org/10.48597/V9UK-28UD +https://doi.org/10.48597/7SGM-6GDF +https://doi.org/10.48597/YD4N-8EPX +https://doi.org/10.48597/Z9TT-FREQ +https://doi.org/10.48597/E2H3-BSBT +https://doi.org/10.48597/AEDE-DCAJ +https://doi.org/10.48597/7DCY-K3JJ +https://doi.org/10.48597/9BE3-Z3ZN +https://doi.org/10.48597/FEYQ-VUTM +https://doi.org/10.48597/7NE7-9BHG +https://doi.org/10.48597/HZ59-EB6K +https://doi.org/10.48597/TENY-KP5Y +https://doi.org/10.48597/D37A-EFZ2 +https://doi.org/10.48597/7HW5-TQVF +https://doi.org/10.48597/F6MJ-9DRY +https://doi.org/10.48597/J3QK-SMT8 +https://doi.org/10.48597/Z2EW-8DY7 +https://doi.org/10.48597/SZDE-XD7B +https://doi.org/10.48597/Y5HE-9CGJ +https://doi.org/10.48597/UVQU-TQEN +https://doi.org/10.48597/NSY6-WTT6 +https://doi.org/10.48597/RJA9-9HXT +https://doi.org/10.48597/6V8R-8YDC +https://doi.org/10.48597/H55U-5N8F +https://doi.org/10.48597/EUMC-N3RT +https://doi.org/10.48597/X4UY-BP53 +https://doi.org/10.48597/BFXS-Z8U3 +https://doi.org/10.48597/QXR3-W3JQ +https://doi.org/10.48597/MWXP-SZ3R +https://doi.org/10.48597/DKSM-23N8 +https://doi.org/10.48597/JWJ8-KYCX +https://doi.org/10.48597/GRMX-U69B +https://doi.org/10.48597/74RG-YCU6 +https://doi.org/10.48597/883K-WKKJ +https://doi.org/10.48597/T5S7-5C7J +https://doi.org/10.48597/XSQ3-5J9T +https://doi.org/10.48597/K4BD-7SR8 +https://doi.org/10.48597/NTTZ-HVVG +https://doi.org/10.48597/GAF3-CRJR +https://doi.org/10.48597/W655-CAG8 +https://doi.org/10.48597/WAT8-WPRJ +https://doi.org/10.48597/GJZ2-ENRX +https://doi.org/10.48597/F63G-AUMG +https://doi.org/10.48597/BKZK-3BQ6 +https://doi.org/10.48597/49JR-XURF +https://doi.org/10.48597/8AE3-A84D +https://doi.org/10.48597/H8YC-FSSD +https://doi.org/10.48597/KNE3-FABD +https://doi.org/10.48597/5E2C-M2KD +https://doi.org/10.48597/CVJC-3TK9 +https://doi.org/10.48597/7FY8-3RAD +https://doi.org/10.48597/M9BT-99SJ +https://doi.org/10.48597/MT3Q-RFB9 +https://doi.org/10.48597/TT86-3S2Y +https://doi.org/10.48597/3GFP-6FNS +https://doi.org/10.48597/WE4D-3WME +https://doi.org/10.48597/8V36-FEXN +https://doi.org/10.48597/PWTG-B2BZ +https://doi.org/10.48597/AEGW-X98A +https://doi.org/10.48597/QQVP-9XBR +https://doi.org/10.48597/MCFA-2W6H +https://doi.org/10.48597/8F8E-DR9J +https://doi.org/10.48597/VUTF-Y8QH +https://doi.org/10.48597/5G5T-ZZF7 +https://doi.org/10.48597/2CN3-TW35 +https://doi.org/10.48597/VGJ3-PBU6 +https://doi.org/10.48597/JGFV-WV28 +https://doi.org/10.48597/CPHG-6UUG +https://doi.org/10.48597/A7JX-SX7M +https://doi.org/10.48597/FJU2-ES4G +https://doi.org/10.48597/5VYX-S79R +https://doi.org/10.48597/W9GX-UWGM +https://doi.org/10.48597/FMXP-6ZFG +https://doi.org/10.48597/APBR-V8BC +https://doi.org/10.48597/YKFB-Z78J +https://doi.org/10.48597/G7V6-DHQP +https://doi.org/10.48597/PJ2M-GKWX +https://doi.org/10.48597/HT8C-ZRTV +https://doi.org/10.48597/MQX7-ARN2 +https://doi.org/10.48597/HZUA-CJMF +https://doi.org/10.48597/UZQJ-RXXA +https://doi.org/10.48597/T24S-62U2 +https://doi.org/10.48597/BBMN-X8RT +https://doi.org/10.48597/NU4T-7RUJ +https://doi.org/10.48597/64DX-D4GE +https://doi.org/10.48597/R3M7-HSXH +https://doi.org/10.48597/38TC-93QD +https://doi.org/10.48597/MCZB-5VDD +https://doi.org/10.48597/9THC-WARD +https://doi.org/10.48597/2MS5-JKJG +https://doi.org/10.48597/WHZY-RA9U +https://doi.org/10.48597/USXV-3CM3 +https://doi.org/10.48597/2SP2-XU7D +https://doi.org/10.48597/HQXB-895A +https://doi.org/10.48597/EYKR-5XQD +https://doi.org/10.48597/M2SH-KA9C +https://doi.org/10.48597/59ZW-HJ6J +https://doi.org/10.48597/AFH9-GQ7C +https://doi.org/10.48597/ZJFD-EH72 +https://doi.org/10.48597/R4YT-RTGP +https://doi.org/10.48597/WS62-TKH6 +https://doi.org/10.48597/FQZG-9TCP +https://doi.org/10.48597/XH5G-E6J5 +https://doi.org/10.48597/T24H-B26R +https://doi.org/10.48597/W6PJ-SFBS +https://doi.org/10.48597/DH4N-NZKT +https://doi.org/10.48597/QM6D-PYGJ +https://doi.org/10.48597/U57J-JDDS +https://doi.org/10.48597/VVZA-82X8 +https://doi.org/10.48597/34MH-6DT9 +https://doi.org/10.48597/EN6P-83F2 +https://doi.org/10.48597/9R35-TDN6 +https://doi.org/10.48597/2X7A-HWD5 +https://doi.org/10.48597/ZV7Y-FAUG +https://doi.org/10.48597/DNQM-XA9J +https://doi.org/10.48597/GZZQ-A8JR +https://doi.org/10.48597/GCFH-VWG8 +https://doi.org/10.48597/4PDE-UHHA +https://doi.org/10.48597/R3BR-WS4E +https://doi.org/10.48597/WEQT-5ZST +https://doi.org/10.48597/SXZW-BKCB +https://doi.org/10.48597/HGGU-6EEE +https://doi.org/10.48597/YWY6-BG3K +https://doi.org/10.48597/77ZH-6XDA +https://doi.org/10.48597/499U-M7AR +https://doi.org/10.48597/SB58-YRR4 +https://doi.org/10.48597/7PCV-V3KF +https://doi.org/10.48597/B2VT-PDGN +https://doi.org/10.48597/7EMW-HGS5 +https://doi.org/10.48597/UMMM-7J4P +https://doi.org/10.48597/ADXR-4RK5 +https://doi.org/10.48597/EPVK-SVKN +https://doi.org/10.48597/T3QN-9DBZ +https://doi.org/10.48597/AKD5-R82V +https://doi.org/10.48597/4XU6-SRPH +https://doi.org/10.48597/XDCE-ZJTS +https://doi.org/10.48597/3XRV-JHCA +https://doi.org/10.48597/YUG7-RN5Y +https://doi.org/10.48597/MGCR-MSEM +https://doi.org/10.48597/2XFS-HGY6 +https://doi.org/10.48597/QUU6-89MS +https://doi.org/10.48597/N47K-SDR6 +https://doi.org/10.48597/AVKY-EM6E +https://doi.org/10.48597/6CNH-23PX +https://doi.org/10.48597/MZS2-3WFB +https://doi.org/10.48597/8SPY-A5VA +https://doi.org/10.48597/FK2Y-8CQR +https://doi.org/10.48597/VTPE-RWY9 +https://doi.org/10.48597/GNP2-FXSU +https://doi.org/10.48597/MNCF-S2KB +https://doi.org/10.48597/BM4B-RQJ9 +https://doi.org/10.48597/BBAK-8Z7C +https://doi.org/10.48597/4577-FZV7 +https://doi.org/10.48597/ESXV-RZ7U +https://doi.org/10.48597/VPM2-AM7J +https://doi.org/10.48597/5UH4-NBUH +https://doi.org/10.48597/E5YH-WEBE +https://doi.org/10.48597/S8T2-AZCM +https://doi.org/10.48597/U8FQ-VNP7 +https://doi.org/10.48597/UJ7P-6B6M +https://doi.org/10.48597/R64M-B8MD +https://doi.org/10.48597/TTDP-7Z4J +https://doi.org/10.48597/HRTP-NVEV +https://doi.org/10.48597/2W58-K5KQ +https://doi.org/10.48597/EMTA-M39M +https://doi.org/10.48597/JVGZ-K49D +https://doi.org/10.48597/6FHJ-AV4A +https://doi.org/10.48597/2PHU-CDRY +https://doi.org/10.48597/DW9W-6AC3 +https://doi.org/10.48597/77BY-Y6JM +https://doi.org/10.48597/X5W2-TUGR +https://doi.org/10.48597/68M6-DY3W +https://doi.org/10.48597/DK8H-VKX3 +https://doi.org/10.48597/7UUS-H3DK +https://doi.org/10.48597/APKU-2YDC +https://doi.org/10.48597/7JGZ-WS7C +https://doi.org/10.48597/EWFE-6HGN +https://doi.org/10.48597/SFEF-DMKB +https://doi.org/10.48597/GDR6-BHV8 +https://doi.org/10.48597/WESG-QZSG +https://doi.org/10.48597/HM65-BBRJ +https://doi.org/10.48597/WQQZ-ZQCU +https://doi.org/10.48597/7FG3-RSA7 +https://doi.org/10.48597/QPHY-KBR3 +https://doi.org/10.48597/FAAJ-Z6W9 +https://doi.org/10.48597/FJFV-HYRX +https://doi.org/10.48597/PRBG-3DQ8 +https://doi.org/10.48597/7GKQ-H9GR +https://doi.org/10.48597/KGXX-FC74 +https://doi.org/10.48597/HQTJ-6U9N +https://doi.org/10.48597/3G4T-3GMS +https://doi.org/10.48597/6MUR-U7VY +https://doi.org/10.48597/69ZR-T92D +https://doi.org/10.48597/YTWF-FAM7 +https://doi.org/10.48597/9E5M-QCEA +https://doi.org/10.48597/JCKU-VHTJ +https://doi.org/10.48597/7PXR-C2N4 +https://doi.org/10.48597/DBD2-7ZAX +https://doi.org/10.48597/VQFQ-EVAH +https://doi.org/10.48597/Z36F-ME7D +https://doi.org/10.48597/8ZHJ-3Q6C +https://doi.org/10.48597/E2YD-PANF +https://doi.org/10.48597/HU24-BB2A +https://doi.org/10.48597/UM5Q-4A3K +https://doi.org/10.48597/7WFS-PQ9C +https://doi.org/10.48597/WVC7-YFS6 +https://doi.org/10.48597/KG3X-F4PX +https://doi.org/10.48597/UR7T-AGST +https://doi.org/10.48597/SVF8-H9BR +https://doi.org/10.48597/83W2-V99X +https://doi.org/10.48597/RDUF-2P4V +https://doi.org/10.48597/PGAW-NFJA +https://doi.org/10.48597/TQZS-84AP +https://doi.org/10.48597/TC7S-XTES +https://doi.org/10.48597/Y7A2-56UZ +https://doi.org/10.48597/9UG4-R4Z7 +https://doi.org/10.48597/2PZZ-4JKZ +https://doi.org/10.48597/2MDE-KMM6 +https://doi.org/10.48597/8QFG-AR9N +https://doi.org/10.48597/4Z9D-XR7G +https://doi.org/10.48597/TVXJ-AWPA +https://doi.org/10.48597/P38D-3ZJG +https://doi.org/10.48597/EDMK-HTQ7 +https://doi.org/10.48597/W8A2-ZBEY +https://doi.org/10.48597/GF2N-99M3 +https://doi.org/10.48597/ZZCW-8UZE +https://doi.org/10.48597/X4CZ-8CQ7 +https://doi.org/10.48597/TBBY-66GR +https://doi.org/10.48597/42BE-5BDV +https://doi.org/10.48597/JQCN-4NN9 +https://doi.org/10.48597/Q7DQ-K6DV +https://doi.org/10.48597/DM2K-U8VZ +https://doi.org/10.48597/5J7Y-XJ8A +https://doi.org/10.48597/Y5YG-JWM9 +https://doi.org/10.48597/PXSJ-U6GB +https://doi.org/10.48597/BQ62-YJ3Z +https://doi.org/10.48597/7UYK-4TP8 +https://doi.org/10.48597/GJAM-6ARN +https://doi.org/10.48597/P8KS-FV53 +https://doi.org/10.48597/XWD3-DM24 +https://doi.org/10.48597/PMGD-ZNF6 +https://doi.org/10.48597/285B-AKYE +https://doi.org/10.48597/4YW4-P3C2 +https://doi.org/10.48597/9JAE-CW59 +https://doi.org/10.48597/B88G-TW7Z +https://doi.org/10.48597/E2DJ-EYBT +https://doi.org/10.48597/TTWP-4ZPJ +https://doi.org/10.48597/YQER-FKXG +https://doi.org/10.48597/9XYJ-MZ96 +https://doi.org/10.48597/HP5K-T8WE +https://doi.org/10.48597/YJ74-FNJN +https://doi.org/10.48597/PA63-DHBS +https://doi.org/10.48597/AJQR-X7PP +https://doi.org/10.48597/JAY3-BNJZ +https://doi.org/10.48597/WV7B-VRBQ +https://doi.org/10.48597/4VWV-KCHZ +https://doi.org/10.48597/2VG2-J47V +https://doi.org/10.48597/GP5N-B3D4 +https://doi.org/10.48597/QM2A-2PHN +https://doi.org/10.48597/TKZX-2TDT +https://doi.org/10.48597/HJSG-488Z +https://doi.org/10.48597/RRUK-AVAC +https://doi.org/10.48597/ZB83-RKCU +https://doi.org/10.48597/PWB2-Q7TH +https://doi.org/10.48597/U8YC-AD3P +https://doi.org/10.48597/48QC-V4MX +https://doi.org/10.48597/F8UA-RGPB +https://doi.org/10.48597/JJNR-K7JD +https://doi.org/10.48597/62N9-BSSQ +https://doi.org/10.48597/3K6Y-KFCS +https://doi.org/10.48597/YRJP-E9G3 +https://doi.org/10.48597/NFV8-QFW5 +https://doi.org/10.48597/JA26-324T +https://doi.org/10.48597/4H6X-P6S6 +https://doi.org/10.48597/ZDBZ-B3BX +https://doi.org/10.48597/4RWB-FPV6 +https://doi.org/10.48597/6HM2-2RS3 +https://doi.org/10.48597/E4M7-8Z3T +https://doi.org/10.48597/QHQH-26YM +https://doi.org/10.48597/G69Z-DPRZ +https://doi.org/10.48597/NTK6-ERFU +https://doi.org/10.48597/P72C-CGZS +https://doi.org/10.48597/8NG6-PF2T +https://doi.org/10.48597/8STT-DJ9P +https://doi.org/10.48597/SUSW-U3YD +https://doi.org/10.48597/F24D-GY93 +https://doi.org/10.48597/4ZKY-F69D +https://doi.org/10.48597/RGJ9-6TG7 +https://doi.org/10.48597/JWW2-K8HN +https://doi.org/10.48597/JRUZ-HNTG +https://doi.org/10.48597/NK7P-X6NA +https://doi.org/10.48597/VJWX-8ER3 +https://doi.org/10.48597/XSA9-MY5K +https://doi.org/10.48597/GCAR-FNGJ +https://doi.org/10.48597/7RVM-QKNU +https://doi.org/10.48597/786F-MX8N +https://doi.org/10.48597/RD6H-WQNW +https://doi.org/10.48597/6DJN-JJZM +https://doi.org/10.48597/PQAF-DAKW +https://doi.org/10.48597/GT4X-H93S +https://doi.org/10.48597/6FDK-GNRE +https://doi.org/10.48597/XFJ3-7BKD +https://doi.org/10.48597/99VF-237A +https://doi.org/10.48597/YP29-VKTU +https://doi.org/10.48597/CQXA-VDRP +https://doi.org/10.48597/XXQ3-ZWFE +https://doi.org/10.48597/WJKR-YWCZ +https://doi.org/10.48597/73Z9-QVKP +https://doi.org/10.48597/UDCW-EM2Y +https://doi.org/10.48597/YKVB-343K +https://doi.org/10.48597/MU76-P9YU +https://doi.org/10.48597/GX34-EN4Q +https://doi.org/10.48597/GJ52-D9DH +https://doi.org/10.48597/EFYT-BSR6 +https://doi.org/10.48597/RP2Q-2CD2 +https://doi.org/10.48597/GY8V-RAVB +https://doi.org/10.48597/XP27-YDGT +https://doi.org/10.48597/PPNB-JP9S +https://doi.org/10.48597/7NKA-A2UE +https://doi.org/10.48597/JDH3-XW6U +https://doi.org/10.48597/EHWV-RPJE +https://doi.org/10.48597/ABKR-3D74 +https://doi.org/10.48597/MERY-J8MY +https://doi.org/10.48597/KMEZ-FFHS +https://doi.org/10.48597/AVSN-DGAC +https://doi.org/10.48597/7XKM-NRNJ +https://doi.org/10.48597/C57V-2QHU +https://doi.org/10.48597/F3AA-3EC4 +https://doi.org/10.48597/C9ZX-RZQZ +https://doi.org/10.48597/WY6H-ZCX5 +https://doi.org/10.48597/Y2HZ-ZNSW +https://doi.org/10.48597/RX4R-7J4E +https://doi.org/10.48597/K8GP-VZDN +https://doi.org/10.48597/GC42-9VCK +https://doi.org/10.48597/FCR2-BC6H +https://doi.org/10.48597/JAGP-4Y6Q +https://doi.org/10.48597/HGH9-Q6CE +https://doi.org/10.48597/58RU-7HM2 +https://doi.org/10.48597/DDZC-TT9Q +https://doi.org/10.48597/VRAV-NDFV +https://doi.org/10.48597/EZPX-EE5B +https://doi.org/10.48597/DH6W-PAZY +https://doi.org/10.48597/8Y2G-TBEE +https://doi.org/10.48597/BQPH-WRKZ +https://doi.org/10.48597/DMMF-576P +https://doi.org/10.48597/GAYS-7XCM +https://doi.org/10.48597/9Q88-T6FN +https://doi.org/10.48597/NKR5-H3FA +https://doi.org/10.48597/5JQA-Y65J +https://doi.org/10.48597/V5F5-N5YQ +https://doi.org/10.48597/2FWM-C3W7 +https://doi.org/10.48597/R3WB-PTQ8 +https://doi.org/10.48597/HNXH-65GK +https://doi.org/10.48597/FAXJ-9W3J +https://doi.org/10.48597/JC4A-D3ZS +https://doi.org/10.48597/7T9Y-SWQK +https://doi.org/10.48597/2PE8-8FAN +https://doi.org/10.48597/VSFS-F27B +https://doi.org/10.48597/HVSC-5TJP +https://doi.org/10.48597/8HME-Q327 +https://doi.org/10.48597/AZPV-BBFX +https://doi.org/10.48597/DM2C-45XC +https://doi.org/10.48597/TC3S-4N4Z +https://doi.org/10.48597/TURT-BGVR +https://doi.org/10.48597/KWND-4F9E +https://doi.org/10.48597/5CAG-8B4U +https://doi.org/10.48597/9D98-SUBK +https://doi.org/10.48597/EWJA-BD7U +https://doi.org/10.48597/25Y8-NUQJ +https://doi.org/10.48597/RQSD-XM7D +https://doi.org/10.48597/TTFF-TGVS +https://doi.org/10.48597/58AP-TK4D +https://doi.org/10.48597/YUFR-2H2D +https://doi.org/10.48597/8ZS7-5A9F +https://doi.org/10.48597/KMV2-UEKP +https://doi.org/10.48597/2Q85-SVQG +https://doi.org/10.48597/G44J-7W34 +https://doi.org/10.48597/FU23-BP8D +https://doi.org/10.48597/7YHQ-ZN5E +https://doi.org/10.48597/7RHU-2CHP +https://doi.org/10.48597/S5BR-YT6V +https://doi.org/10.48597/W3KS-RBX9 +https://doi.org/10.48597/XFRW-SDR2 +https://doi.org/10.48597/26YB-G9YA +https://doi.org/10.48597/EEX6-M3AT +https://doi.org/10.48597/GN49-8RXA +https://doi.org/10.48597/GZ2V-EU8W +https://doi.org/10.48597/82BZ-656Y +https://doi.org/10.48597/U8EZ-PDBQ +https://doi.org/10.48597/2MQS-M3W8 +https://doi.org/10.48597/4GVJ-VXT6 +https://doi.org/10.48597/RVNJ-CZH5 +https://doi.org/10.48597/ZW9V-AK9G +https://doi.org/10.48597/5GBA-34ZR +https://doi.org/10.48597/NZQV-MVNF +https://doi.org/10.48597/84X3-2W88 +https://doi.org/10.48597/S4J2-JN4W +https://doi.org/10.48597/JDSA-KRYR +https://doi.org/10.48597/UPAD-YW6S +https://doi.org/10.48597/G3M6-Q3Y9 +https://doi.org/10.48597/9KV6-VVBS +https://doi.org/10.48597/6Z43-CS5V +https://doi.org/10.48597/Z2F4-XTA4 +https://doi.org/10.48597/G8KG-8GN5 +https://doi.org/10.48597/YYHE-S85U +https://doi.org/10.48597/Q4K9-U4HM +https://doi.org/10.48597/YM3Y-B2B5 +https://doi.org/10.48597/Q783-TV5V +https://doi.org/10.48597/RZ8P-H4T8 +https://doi.org/10.48597/Q4N5-V4PG +https://doi.org/10.48597/5KVT-9WA2 +https://doi.org/10.48597/PKA6-PEG8 +https://doi.org/10.48597/U6AF-VRD3 +https://doi.org/10.48597/VEVD-J5KA +https://doi.org/10.48597/2DDY-EPFZ +https://doi.org/10.48597/8SJB-WQG7 +https://doi.org/10.48597/7T3Z-R92U +https://doi.org/10.48597/9VDR-J7AH +https://doi.org/10.48597/KY9Z-QA86 +https://doi.org/10.48597/VY9P-HXGG +https://doi.org/10.48597/G59N-6PVR +https://doi.org/10.48597/WQ78-MHNB +https://doi.org/10.48597/NBXD-K3EH +https://doi.org/10.48597/A8BJ-6X2J +https://doi.org/10.48597/P52N-YTTU +https://doi.org/10.48597/Y6P4-A8GG +https://doi.org/10.48597/HP34-XVWY +https://doi.org/10.48597/Q8ZN-ADHW +https://doi.org/10.48597/6ZAM-SY8T +https://doi.org/10.48597/Y7SQ-VEAG +https://doi.org/10.48597/FMP6-GVKR +https://doi.org/10.48597/NXBD-GHDY +https://doi.org/10.48597/5V2D-JC38 +https://doi.org/10.48597/HYZF-QRX9 +https://doi.org/10.48597/NE9R-T296 +https://doi.org/10.48597/7M6B-UHZ6 +https://doi.org/10.48597/BDMF-VXE6 +https://doi.org/10.48597/DTG9-WTPP +https://doi.org/10.48597/75TA-UPUK +https://doi.org/10.48597/228G-HA82 +https://doi.org/10.48597/FQVZ-PU5D +https://doi.org/10.48597/F6X8-KV7J +https://doi.org/10.48597/DTQX-PZK7 +https://doi.org/10.48597/BFUE-YEF3 +https://doi.org/10.48597/NN5G-VCPD +https://doi.org/10.48597/QWED-C3Z6 +https://doi.org/10.48597/Y6WC-Y38E +https://doi.org/10.48597/V7GJ-S86T +https://doi.org/10.48597/3WWC-9GY2 +https://doi.org/10.48597/ENGU-VJK3 +https://doi.org/10.48597/76WX-98RP +https://doi.org/10.48597/Z38K-GRCU +https://doi.org/10.48597/KCF7-7SJC +https://doi.org/10.48597/F2ZJ-S4GC +https://doi.org/10.48597/NB2R-NNVX +https://doi.org/10.48597/MPF7-MHFW +https://doi.org/10.48597/S4YG-BMV5 +https://doi.org/10.48597/WFZ6-HREH +https://doi.org/10.48597/MDTD-PX2V +https://doi.org/10.48597/N6CP-B5VQ +https://doi.org/10.48597/96GW-AS8D +https://doi.org/10.48597/9YF2-KPGE +https://doi.org/10.48597/RW4R-FU2D +https://doi.org/10.48597/D8R4-XD2U +https://doi.org/10.48597/ZQYW-TQDR +https://doi.org/10.48597/A2AQ-JN4Z +https://doi.org/10.48597/D63N-BH3E +https://doi.org/10.48597/5KVY-Z3YE +https://doi.org/10.48597/3KKJ-8S39 +https://doi.org/10.48597/TZ58-4Z5F +https://doi.org/10.48597/XUTT-G9SB +https://doi.org/10.48597/3S9M-VKRF +https://doi.org/10.48597/657Y-U2X5 +https://doi.org/10.48597/JVB2-QCZY +https://doi.org/10.48597/A8ZV-DGTU +https://doi.org/10.48597/Z3B6-9FGQ +https://doi.org/10.48597/R4EA-ACJU +https://doi.org/10.48597/SQ9X-XX6G +https://doi.org/10.48597/QZ6M-6EE6 +https://doi.org/10.48597/86BZ-9BXT +https://doi.org/10.48597/VF5Y-PJAG +https://doi.org/10.48597/XH48-85AS +https://doi.org/10.48597/NNC8-RK9Y +https://doi.org/10.48597/JHSZ-NUCZ +https://doi.org/10.48597/BDGP-V643 +https://doi.org/10.48597/GGY5-8JTK +https://doi.org/10.48597/7B2J-KRHS +https://doi.org/10.48597/PWYG-MHVF +https://doi.org/10.48597/M8GE-DJVJ +https://doi.org/10.48597/Y8TE-QN98 +https://doi.org/10.48597/MJN6-TQWU +https://doi.org/10.48597/9R4H-J8HG +https://doi.org/10.48597/W2YB-CH7N +https://doi.org/10.48597/CCUU-C434 +https://doi.org/10.48597/N6TV-995B +https://doi.org/10.48597/EASX-P25D +https://doi.org/10.48597/AC93-FV2H +https://doi.org/10.48597/7CHV-56F3 +https://doi.org/10.48597/HW7P-W2CE +https://doi.org/10.48597/E9Q6-JHKP +https://doi.org/10.48597/QAYT-Y4XS +https://doi.org/10.48597/GYVH-2ENC +https://doi.org/10.48597/UEUW-JKM6 +https://doi.org/10.48597/EX3P-7Y23 +https://doi.org/10.48597/BN2K-AMHA +https://doi.org/10.48597/HMGH-QXK4 +https://doi.org/10.48597/Z97J-H98R +https://doi.org/10.48597/64EF-JC2G +https://doi.org/10.48597/4KEQ-2S9M +https://doi.org/10.48597/9PGM-VJZR +https://doi.org/10.48597/RWK8-HU7J +https://doi.org/10.48597/AG74-P53Y +https://doi.org/10.48597/2KMD-T268 +https://doi.org/10.48597/58SZ-UJAY +https://doi.org/10.48597/493W-X3BQ +https://doi.org/10.48597/YNS9-RGNW +https://doi.org/10.48597/DU5H-A849 +https://doi.org/10.48597/FNM2-MM7C +https://doi.org/10.48597/6Y7S-SJDZ +https://doi.org/10.48597/EZQX-8JXC +https://doi.org/10.48597/FAV7-UQAN +https://doi.org/10.48597/JSR2-S7RE +https://doi.org/10.48597/36GN-4ZUH +https://doi.org/10.48597/S6WW-MVJ9 +https://doi.org/10.48597/TV44-J57J +https://doi.org/10.48597/Q32V-A8FK +https://doi.org/10.48597/K659-KPGP +https://doi.org/10.48597/77AU-FWR4 +https://doi.org/10.48597/BHR8-5Z67 +https://doi.org/10.48597/2SFT-CMAB +https://doi.org/10.48597/D83C-2G9J +https://doi.org/10.48597/7FKJ-EFW3 +https://doi.org/10.48597/AFBW-YK22 +https://doi.org/10.48597/R9KT-JKQ5 +https://doi.org/10.48597/H6R9-8889 +https://doi.org/10.48597/9B84-6FQK +https://doi.org/10.48597/UCGJ-ZK2E +https://doi.org/10.48597/HE5W-RZRQ +https://doi.org/10.48597/8GGA-9CDC +https://doi.org/10.48597/2FHS-84T6 +https://doi.org/10.48597/B76D-7E5E +https://doi.org/10.48597/8F2T-P97A +https://doi.org/10.48597/PBEE-WVS8 +https://doi.org/10.48597/33AV-95EU +https://doi.org/10.48597/DWP3-77MY +https://doi.org/10.48597/D685-89FJ +https://doi.org/10.48597/MUM6-NJQU +https://doi.org/10.48597/Y3F5-YGXY +https://doi.org/10.48597/QSDH-UKTY +https://doi.org/10.48597/KWQP-BVM7 +https://doi.org/10.48597/PFKU-XT47 +https://doi.org/10.48597/CNYU-5Y5J +https://doi.org/10.48597/7SN8-MW92 +https://doi.org/10.48597/6E66-9VEY +https://doi.org/10.48597/EPUJ-WG85 +https://doi.org/10.48597/M6PB-ZD6P +https://doi.org/10.48597/X9SX-XXXK +https://doi.org/10.48597/75B5-9X65 +https://doi.org/10.48597/VYE5-CRKC +https://doi.org/10.48597/23XA-2M3K +https://doi.org/10.48597/A6KY-WCJD +https://doi.org/10.48597/QBFZ-QTB7 +https://doi.org/10.48597/5M5E-G3H6 +https://doi.org/10.48597/3WDE-583W +https://doi.org/10.48597/BKK4-8S36 +https://doi.org/10.48597/RPUN-VYA8 +https://doi.org/10.48597/CX8Q-AUCA +https://doi.org/10.48597/UQB6-YSE4 +https://doi.org/10.48597/6EHQ-SQH4 +https://doi.org/10.48597/AUCQ-QT34 +https://doi.org/10.48597/UGN5-HUDC +https://doi.org/10.48597/7G2J-PZUF +https://doi.org/10.48597/U5X3-TJKZ +https://doi.org/10.48597/99UY-S3XA +https://doi.org/10.48597/EKMY-79GR +https://doi.org/10.48597/D6Q2-95A8 +https://doi.org/10.48597/TE8D-ZHZM +https://doi.org/10.48597/6BKG-DRBQ +https://doi.org/10.48597/HG26-DSUN +https://doi.org/10.48597/FUXF-Y7FV +https://doi.org/10.48597/ES58-RVJ3 +https://doi.org/10.48597/P326-V82K +https://doi.org/10.48597/XP48-HBNG +https://doi.org/10.48597/W67R-GBKF +https://doi.org/10.48597/49D8-7TX4 +https://doi.org/10.48597/ET54-JX8F +https://doi.org/10.48597/2BR2-XRRC +https://doi.org/10.48597/RJA4-M3JX +https://doi.org/10.48597/4FNW-K83R +https://doi.org/10.48597/WHUW-YXV9 +https://doi.org/10.48597/U632-CZ2G +https://doi.org/10.48597/C728-5S9Y +https://doi.org/10.48597/8G8X-CT25 +https://doi.org/10.48597/MZBN-F9VK +https://doi.org/10.48597/AUBU-86CB +https://doi.org/10.48597/RTFD-5QBY +https://doi.org/10.48597/ZBE4-JTT3 +https://doi.org/10.48597/XU3H-UKNW +https://doi.org/10.48597/RYFG-4PAK +https://doi.org/10.48597/ANZ2-SBF5 +https://doi.org/10.48597/NBKT-7ESF +https://doi.org/10.48597/SXC7-U7DX +https://doi.org/10.48597/ZWSG-33A4 +https://doi.org/10.48597/29JA-32BB +https://doi.org/10.48597/CXNV-MTY2 +https://doi.org/10.48597/K347-DB9P +https://doi.org/10.48597/VQQK-5GH6 +https://doi.org/10.48597/WFMS-8N87 +https://doi.org/10.48597/M64U-QT3H +https://doi.org/10.48597/F5JA-5DGN +https://doi.org/10.48597/FWYH-Y934 +https://doi.org/10.48597/P84U-45EG +https://doi.org/10.48597/RR9W-K3R3 +https://doi.org/10.48597/8FPN-VAG2 +https://doi.org/10.48597/C2A5-GDS6 +https://doi.org/10.48597/X3M4-7H7K +https://doi.org/10.48597/F48D-46KW +https://doi.org/10.48597/VQ6E-AMSX +https://doi.org/10.48597/MWY3-S3VX +https://doi.org/10.48597/F277-YNC7 +https://doi.org/10.48597/T5MF-YWM3 +https://doi.org/10.48597/YEC4-NGBW +https://doi.org/10.48597/NAMH-TVRF +https://doi.org/10.48597/PBR3-6MX5 +https://doi.org/10.48597/DGFU-EWM6 +https://doi.org/10.48597/HTVP-5GFG +https://doi.org/10.48597/7EJC-9VH3 +https://doi.org/10.48597/AZJT-QGAB +https://doi.org/10.48597/63Q6-Z46M +https://doi.org/10.48597/EWC9-ZRFJ +https://doi.org/10.48597/DZXW-SVJK +https://doi.org/10.48597/9U3P-Z3SF +https://doi.org/10.48597/F5DB-DE9Q +https://doi.org/10.48597/PBCA-ZBYE +https://doi.org/10.48597/HMHB-JJVH +https://doi.org/10.48597/39T8-ETSJ +https://doi.org/10.48597/2ETM-DCZZ +https://doi.org/10.48597/QCDR-TX7T +https://doi.org/10.48597/QX39-AFBX +https://doi.org/10.48597/ZSMW-GWHY +https://doi.org/10.48597/8XGC-TK6W +https://doi.org/10.48597/QWF7-8J64 +https://doi.org/10.48597/AMUP-V676 +https://doi.org/10.48597/EQF3-KNMX +https://doi.org/10.48597/SX2Y-2SVC +https://doi.org/10.48597/GR6F-C6ZP +https://doi.org/10.48597/M79U-J38J +https://doi.org/10.48597/7DJ8-7A5D +https://doi.org/10.48597/ZRNV-FAHX +https://doi.org/10.48597/5XY9-7QDZ +https://doi.org/10.48597/KJW6-HNQD +https://doi.org/10.48597/FP8K-3R7J +https://doi.org/10.48597/BUMD-RZ98 +https://doi.org/10.48597/6A5Y-PZES +https://doi.org/10.48597/HBRG-Z5QD +https://doi.org/10.48597/FZ97-934F +https://doi.org/10.48597/28QQ-J84G +https://doi.org/10.48597/C27T-NZ9K +https://doi.org/10.48597/JSGN-BZV4 +https://doi.org/10.48597/MBSF-W3YD +https://doi.org/10.48597/D9P5-2JYG +https://doi.org/10.48597/QUNB-ZBJY +https://doi.org/10.48597/JVRS-4VVE +https://doi.org/10.48597/92AZ-9NZF +https://doi.org/10.48597/893U-A2M7 +https://doi.org/10.48597/EWYA-Y3H9 +https://doi.org/10.48597/EBFB-24C4 +https://doi.org/10.48597/87TG-K6ND +https://doi.org/10.48597/DKCS-X8UV +https://doi.org/10.48597/F77P-VN6U +https://doi.org/10.48597/JM36-2U7A +https://doi.org/10.48597/HZUY-KJVY +https://doi.org/10.48597/3T74-EPGH +https://doi.org/10.48597/5RQ7-EDB6 +https://doi.org/10.48597/8KTW-EFHD +https://doi.org/10.48597/KA4S-56QT +https://doi.org/10.48597/ZSW8-AAQD +https://doi.org/10.48597/GDE9-G4HR +https://doi.org/10.48597/GU4H-ZKBB +https://doi.org/10.48597/R3MG-JYUW +https://doi.org/10.48597/V74F-UJXX +https://doi.org/10.48597/NNM4-BZHX +https://doi.org/10.48597/KFXZ-JDDK +https://doi.org/10.48597/BR3J-DWWV +https://doi.org/10.48597/YZPS-4HZ8 +https://doi.org/10.48597/QGDT-K5M6 +https://doi.org/10.48597/WZCH-AKCT +https://doi.org/10.48597/S7C5-MPZC +https://doi.org/10.48597/E45Q-986P +https://doi.org/10.48597/YNJ2-JM6Q +https://doi.org/10.48597/9F5B-8KFR +https://doi.org/10.48597/D8NY-PR6A +https://doi.org/10.48597/KECS-DEWP +https://doi.org/10.48597/ZS4C-ZMXV +https://doi.org/10.48597/3PXG-RZE9 +https://doi.org/10.48597/F3KA-QJZ3 +https://doi.org/10.48597/TV54-7K2E +https://doi.org/10.48597/DUNJ-NUVU +https://doi.org/10.48597/6HPN-44ZB +https://doi.org/10.48597/UYDQ-26Q4 +https://doi.org/10.48597/HYST-YAWY +https://doi.org/10.48597/C7P5-GHXK +https://doi.org/10.48597/PJ62-5HXT +https://doi.org/10.48597/MJYY-D7D4 +https://doi.org/10.48597/66RA-AEWB +https://doi.org/10.48597/3FKA-4EB6 +https://doi.org/10.48597/4JV8-UQA6 +https://doi.org/10.48597/T89M-K5NT +https://doi.org/10.48597/QG7F-63VJ +https://doi.org/10.48597/H3JY-P34R +https://doi.org/10.48597/H8NM-4WPS +https://doi.org/10.48597/EY6K-N92A +https://doi.org/10.48597/SNRZ-CPHY +https://doi.org/10.48597/EBPR-SCD5 +https://doi.org/10.48597/8CPJ-CRYS +https://doi.org/10.48597/9JQ7-CY24 +https://doi.org/10.48597/MNHT-VKRF +https://doi.org/10.48597/TH5T-TE8T +https://doi.org/10.48597/NYDF-CZNW +https://doi.org/10.48597/AGUK-QZQC +https://doi.org/10.48597/E5E7-UEYG +https://doi.org/10.48597/FTTT-QBJX +https://doi.org/10.48597/6R23-C9ES +https://doi.org/10.48597/UK7J-3MJG +https://doi.org/10.48597/MSUS-GX77 +https://doi.org/10.48597/QUBU-83SV +https://doi.org/10.48597/9RYY-E4MA +https://doi.org/10.48597/WQCH-FMTN +https://doi.org/10.48597/47Y8-Q7GQ +https://doi.org/10.48597/NZSQ-QMJ9 +https://doi.org/10.48597/6UGY-7Y2T +https://doi.org/10.48597/WTDF-DZTV +https://doi.org/10.48597/Z575-9UCQ +https://doi.org/10.48597/PYDR-4QKM +https://doi.org/10.48597/A459-2TP8 +https://doi.org/10.48597/CRHM-3F32 +https://doi.org/10.48597/6HMM-K37R +https://doi.org/10.48597/X9AJ-4Z4F +https://doi.org/10.48597/XW6K-AVTV +https://doi.org/10.48597/G9SK-TM78 +https://doi.org/10.48597/WERZ-XGYV +https://doi.org/10.48597/VPJW-8HBV +https://doi.org/10.48597/JQUD-9689 +https://doi.org/10.48597/DRW4-85YZ +https://doi.org/10.48597/H67A-N38R +https://doi.org/10.48597/KASD-BMQV +https://doi.org/10.48597/PZM5-XCX8 +https://doi.org/10.48597/3UR8-WDWK +https://doi.org/10.48597/RFXZ-6HFT +https://doi.org/10.48597/6HS3-BS86 +https://doi.org/10.48597/8FF6-7BX8 +https://doi.org/10.48597/XPBF-T5DU +https://doi.org/10.48597/WCFP-P4MN +https://doi.org/10.48597/4EK7-S3QT +https://doi.org/10.48597/3ZVF-2UFW +https://doi.org/10.48597/AZMB-FD36 +https://doi.org/10.48597/APT8-DMWJ +https://doi.org/10.48597/M62T-W5FW +https://doi.org/10.48597/G8SD-NJGG +https://doi.org/10.48597/R7CC-PB33 +https://doi.org/10.48597/CJEH-X9AK +https://doi.org/10.48597/DQ8F-GAJM +https://doi.org/10.48597/GP7H-MQE2 +https://doi.org/10.48597/86RR-VGN9 +https://doi.org/10.48597/YBGG-SZKU +https://doi.org/10.48597/9RGV-Q2KK +https://doi.org/10.48597/QECZ-59QJ +https://doi.org/10.48597/JYEC-WJDG +https://doi.org/10.48597/XC3K-HKWK +https://doi.org/10.48597/3KFW-ABQJ +https://doi.org/10.48597/UKW5-BTW5 +https://doi.org/10.48597/CXAQ-EWYA +https://doi.org/10.48597/2WRM-UA7U +https://doi.org/10.48597/TFJK-W7J4 +https://doi.org/10.48597/UK54-EMFB +https://doi.org/10.48597/U9ZK-7J7Z +https://doi.org/10.48597/TU7H-5UT5 +https://doi.org/10.48597/B36Y-UCDG +https://doi.org/10.48597/GHV3-HUD5 +https://doi.org/10.48597/3CG5-9UFU +https://doi.org/10.48597/SC5P-6QWT +https://doi.org/10.48597/GM9M-SX4Q +https://doi.org/10.48597/BY5X-KYGR +https://doi.org/10.48597/3PPH-VBTK +https://doi.org/10.48597/GG7H-Z795 +https://doi.org/10.48597/U8V2-MWCS +https://doi.org/10.48597/DYHY-TY9A +https://doi.org/10.48597/3GJ9-YWUY +https://doi.org/10.48597/YKYQ-5N2H +https://doi.org/10.48597/AQCY-Q9HA +https://doi.org/10.48597/TEGE-P9VR +https://doi.org/10.48597/WP7C-MHCB +https://doi.org/10.48597/TBFK-DC34 +https://doi.org/10.48597/WTB7-KU53 +https://doi.org/10.48597/H2SQ-QFSY +https://doi.org/10.48597/JN7S-67P2 +https://doi.org/10.48597/J4TE-JCAE +https://doi.org/10.48597/E7PN-J65D +https://doi.org/10.48597/MB5F-C4ER +https://doi.org/10.48597/8FD3-E9WV +https://doi.org/10.48597/M7ZT-2D2F +https://doi.org/10.48597/8E6C-Z7UR +https://doi.org/10.48597/EPHZ-ZN9S +https://doi.org/10.48597/V6AS-X7Z4 +https://doi.org/10.48597/AGRT-MA99 +https://doi.org/10.48597/9Q2N-FBP3 +https://doi.org/10.48597/UNYN-547W +https://doi.org/10.48597/9S6N-7PXF +https://doi.org/10.48597/CH8A-H6E2 +https://doi.org/10.48597/PRY4-J29P +https://doi.org/10.48597/GHNC-HYQG +https://doi.org/10.48597/Z8DA-MX54 +https://doi.org/10.48597/ZDB6-QCXA +https://doi.org/10.48597/EXR9-RW7Z +https://doi.org/10.48597/UQPM-25GZ +https://doi.org/10.48597/SW4F-PZ29 +https://doi.org/10.48597/758Z-GHN4 +https://doi.org/10.48597/T8T9-W94F +https://doi.org/10.48597/HFXJ-3XA8 +https://doi.org/10.48597/9KH4-EZ2V +https://doi.org/10.48597/8MHD-BTPS +https://doi.org/10.48597/Q2FE-QFJR +https://doi.org/10.48597/7WRV-D6E6 +https://doi.org/10.48597/Y5T7-4CK4 +https://doi.org/10.48597/QK24-TCKU +https://doi.org/10.48597/AS6Z-FPFB +https://doi.org/10.48597/SC55-A3YE +https://doi.org/10.48597/7UMH-EFAJ +https://doi.org/10.48597/D5VM-XBMM +https://doi.org/10.48597/XGDG-D64T +https://doi.org/10.48597/4XZ6-JP7S +https://doi.org/10.48597/BK7Q-E7TT +https://doi.org/10.48597/9K2R-K56Z +https://doi.org/10.48597/ZSDS-C3Y6 +https://doi.org/10.48597/F5RY-YEQ2 +https://doi.org/10.48597/282U-X252 +https://doi.org/10.48597/QMBY-8CRE +https://doi.org/10.48597/ERZC-MHTA +https://doi.org/10.48597/Q6ZT-GJU7 +https://doi.org/10.48597/KW5V-GFP6 +https://doi.org/10.48597/FZCX-J6NW +https://doi.org/10.48597/XH6P-N5FS +https://doi.org/10.48597/7N3T-9M6G +https://doi.org/10.48597/UP9C-SG56 +https://doi.org/10.48597/CD8N-SXWS +https://doi.org/10.48597/NFU5-Q88F +https://doi.org/10.48597/NQSV-E9CB +https://doi.org/10.48597/QQGV-AHHW +https://doi.org/10.48597/BCWE-4E6P +https://doi.org/10.48597/XKFC-A995 +https://doi.org/10.48597/5BP4-676K +https://doi.org/10.48597/C459-CVSW +https://doi.org/10.48597/NXC3-CFV7 +https://doi.org/10.48597/YT57-XFFF +https://doi.org/10.48597/6HZP-N6S9 +https://doi.org/10.48597/MHN6-PRME +https://doi.org/10.48597/N8PB-UQP8 +https://doi.org/10.48597/EH32-6GMY +https://doi.org/10.48597/AYHB-G4Z3 +https://doi.org/10.48597/6XEB-2BDC +https://doi.org/10.48597/VV77-3VAU +https://doi.org/10.48597/5XND-23QA +https://doi.org/10.48597/RUJ9-WCMS +https://doi.org/10.48597/RTEG-ZZH6 +https://doi.org/10.48597/KCH2-9BUX +https://doi.org/10.48597/GEDE-2HYJ +https://doi.org/10.48597/DNES-RPR7 +https://doi.org/10.48597/57TY-X4Y8 +https://doi.org/10.48597/4AQX-S4EK +https://doi.org/10.48597/65QW-3QZS +https://doi.org/10.48597/TX9H-EAPZ +https://doi.org/10.48597/CZUB-NT83 +https://doi.org/10.48597/BGAQ-DK3Z +https://doi.org/10.48597/F6DH-6RYU +https://doi.org/10.48597/FTWY-TXFC +https://doi.org/10.48597/AR2E-CVQ4 +https://doi.org/10.48597/UYX8-GY9M +https://doi.org/10.48597/VFCF-2XN2 +https://doi.org/10.48597/SNV2-E2YS +https://doi.org/10.48597/GUT7-DKSW +https://doi.org/10.48597/7EC6-DWFF +https://doi.org/10.48597/RZNG-7XM3 +https://doi.org/10.48597/45AN-RXNH +https://doi.org/10.48597/46GM-K7QD +https://doi.org/10.48597/G2K8-ZD3P +https://doi.org/10.48597/RU2J-A8AT +https://doi.org/10.48597/GYV6-TFAT +https://doi.org/10.48597/J4MS-W8KJ +https://doi.org/10.48597/ZQS2-5D85 +https://doi.org/10.48597/P5VA-9ZD3 +https://doi.org/10.48597/FDSY-VBB3 +https://doi.org/10.48597/85EE-NVQV +https://doi.org/10.48597/4M45-RS58 +https://doi.org/10.48597/23MY-ZH63 +https://doi.org/10.48597/K6HQ-DCKC +https://doi.org/10.48597/V965-S9DR +https://doi.org/10.48597/YRB5-V695 +https://doi.org/10.48597/B5NC-QCB5 +https://doi.org/10.48597/SXC6-AYFP +https://doi.org/10.48597/899R-M4JJ +https://doi.org/10.48597/SZT2-HDZY +https://doi.org/10.48597/78WZ-T4WD +https://doi.org/10.48597/3M7T-3DW9 +https://doi.org/10.48597/JKY3-F633 +https://doi.org/10.48597/VHFZ-D5FQ +https://doi.org/10.48597/SVCV-6N46 +https://doi.org/10.48597/3ES8-M4MW +https://doi.org/10.48597/TDFZ-ADDV +https://doi.org/10.48597/CU6N-GCSW +https://doi.org/10.48597/6KZF-8BWY +https://doi.org/10.48597/BM23-HYKZ +https://doi.org/10.48597/S48G-97SY +https://doi.org/10.48597/HP8Q-U7US +https://doi.org/10.48597/7E3U-BCUV +https://doi.org/10.48597/VAWC-SARQ +https://doi.org/10.48597/AYFW-PY6Q +https://doi.org/10.48597/KP42-PFYE +https://doi.org/10.48597/VPNZ-Q4JQ +https://doi.org/10.48597/93HC-3YYK +https://doi.org/10.48597/V9UT-N67U +https://doi.org/10.48597/GFU3-SUTK +https://doi.org/10.48597/HYGD-UUVW +https://doi.org/10.48597/GMC4-6D4Z +https://doi.org/10.48597/C7XN-Z57Z +https://doi.org/10.48597/3AA7-6R82 +https://doi.org/10.48597/348U-2QXT +https://doi.org/10.48597/M53U-22YA +https://doi.org/10.48597/XBK7-2YE2 +https://doi.org/10.48597/VXE3-C9GH +https://doi.org/10.48597/3M8W-EE6A +https://doi.org/10.48597/V26A-433Y +https://doi.org/10.48597/EU9C-Y8XF +https://doi.org/10.48597/6M9R-5FZK +https://doi.org/10.48597/4HCZ-R2JZ +https://doi.org/10.48597/C5XF-6KK5 +https://doi.org/10.48597/NJJV-ZET5 +https://doi.org/10.48597/SHHB-S83X +https://doi.org/10.48597/CXHA-7TC5 +https://doi.org/10.48597/9PMT-32BE +https://doi.org/10.48597/9STY-VY4S +https://doi.org/10.48597/SXE6-SDQR +https://doi.org/10.48597/55DU-KUZ5 +https://doi.org/10.48597/DKBR-36YT +https://doi.org/10.48597/J8D7-9B45 +https://doi.org/10.48597/XXWS-C75N +https://doi.org/10.48597/FKBH-GP39 +https://doi.org/10.48597/7HNG-ZURQ +https://doi.org/10.48597/H95E-VD5F +https://doi.org/10.48597/W3FZ-Z3W9 +https://doi.org/10.48597/NSNF-GA75 +https://doi.org/10.48597/5XJX-RH8E +https://doi.org/10.48597/KC7C-2XT6 +https://doi.org/10.48597/SNAK-E66E +https://doi.org/10.48597/23TG-52MX +https://doi.org/10.48597/N25F-APDJ +https://doi.org/10.48597/W93Q-KE8J +https://doi.org/10.48597/V2H9-KE9Y +https://doi.org/10.48597/QXPW-T6XR +https://doi.org/10.48597/P87M-AZ5E +https://doi.org/10.48597/VQ2J-E6KS +https://doi.org/10.48597/GKZA-4WJ3 +https://doi.org/10.48597/2SCG-MF7X +https://doi.org/10.48597/89MZ-JVCR +https://doi.org/10.48597/2M8F-SEX2 +https://doi.org/10.48597/E8WP-TE2R +https://doi.org/10.48597/BVW6-S639 +https://doi.org/10.48597/TD8F-ZU6U +https://doi.org/10.48597/5FBU-9VD7 +https://doi.org/10.48597/C56W-J5KR +https://doi.org/10.48597/4GJR-FZ8M +https://doi.org/10.48597/K38M-B9UD +https://doi.org/10.48597/Y2JH-WYXH +https://doi.org/10.48597/REAR-HYM6 +https://doi.org/10.48597/WWVW-TXCS +https://doi.org/10.48597/8ZP8-UJD3 +https://doi.org/10.48597/SZJZ-33NU +https://doi.org/10.48597/TJ9B-WZ6C +https://doi.org/10.48597/43WT-8VXZ +https://doi.org/10.48597/HV5A-AWC4 +https://doi.org/10.48597/4Q9N-XREM +https://doi.org/10.48597/RSWQ-UWJT +https://doi.org/10.48597/Y6ZC-6QZE +https://doi.org/10.48597/Q3NR-BUPW +https://doi.org/10.48597/N7CJ-NZZG +https://doi.org/10.48597/Z2VF-7VYQ +https://doi.org/10.48597/6A8N-2E36 +https://doi.org/10.48597/KU2T-U5JX +https://doi.org/10.48597/N5F8-QVAD +https://doi.org/10.48597/YSD6-SRE7 +https://doi.org/10.48597/7GBT-XCCC +https://doi.org/10.48597/XKC7-YASU +https://doi.org/10.48597/MZXQ-EQ83 +https://doi.org/10.48597/B4BB-FDX3 +https://doi.org/10.48597/AQRD-SZH8 +https://doi.org/10.48597/PA8Y-RWF7 +https://doi.org/10.48597/V86J-E5F8 +https://doi.org/10.48597/Z8TH-8324 +https://doi.org/10.48597/GHMF-ZZBX +https://doi.org/10.48597/DY9P-WXXU +https://doi.org/10.48597/S3VF-YGRY +https://doi.org/10.48597/UN4N-36ZY +https://doi.org/10.48597/RX6C-ME7F +https://doi.org/10.48597/DSQP-HXT7 +https://doi.org/10.48597/44RB-ERCQ +https://doi.org/10.48597/VWGC-CJ2S +https://doi.org/10.48597/A4DG-S89R +https://doi.org/10.48597/WHGT-D9PT +https://doi.org/10.48597/RCKQ-S6ZD +https://doi.org/10.48597/Y9CQ-PTVT +https://doi.org/10.48597/QZAM-GYKE +https://doi.org/10.48597/QTKJ-Z93T +https://doi.org/10.48597/GJN5-D4FW +https://doi.org/10.48597/HGY7-QZ2V +https://doi.org/10.48597/28PN-CTC3 +https://doi.org/10.48597/BWF3-Q47G +https://doi.org/10.48597/EXMM-KS4A +https://doi.org/10.48597/QXWC-T8P9 +https://doi.org/10.48597/QX5X-99KP +https://doi.org/10.48597/C6KB-U6Q2 +https://doi.org/10.48597/9RA8-R5CJ +https://doi.org/10.48597/YTKF-XG2C +https://doi.org/10.48597/7QAQ-VFH4 +https://doi.org/10.48597/3B8Q-ZHWF +https://doi.org/10.48597/ASFB-SSXP +https://doi.org/10.48597/YHN8-8WET +https://doi.org/10.48597/4CZH-92MA +https://doi.org/10.48597/2H7E-29R7 +https://doi.org/10.48597/CG6J-9YN2 +https://doi.org/10.48597/CNXJ-NPKR +https://doi.org/10.48597/NJ5A-KSKD +https://doi.org/10.48597/X8KP-5CQR +https://doi.org/10.48597/YQEB-QQSQ +https://doi.org/10.48597/WSZU-GQTS +https://doi.org/10.48597/2WJ2-3PRU +https://doi.org/10.48597/T893-4S65 +https://doi.org/10.48597/R9DZ-U5YQ +https://doi.org/10.48597/8SUY-A4J2 +https://doi.org/10.48597/X4TF-ZKRG +https://doi.org/10.48597/GRDM-Z9AM +https://doi.org/10.48597/HAGE-MA4B +https://doi.org/10.48597/K5DR-7M8F +https://doi.org/10.48597/STWT-5KFF +https://doi.org/10.48597/QZXQ-GZ73 +https://doi.org/10.48597/M9DX-MBJB +https://doi.org/10.48597/M57Y-AD6B +https://doi.org/10.48597/8S52-HC32 +https://doi.org/10.48597/PGA8-SNT8 +https://doi.org/10.48597/U2KK-4APH +https://doi.org/10.48597/NFY9-57TV +https://doi.org/10.48597/FTPY-8GB3 +https://doi.org/10.48597/AKXQ-DZ7A +https://doi.org/10.48597/GK75-AHU4 +https://doi.org/10.48597/SKGX-239W +https://doi.org/10.48597/7N6Z-GDYH +https://doi.org/10.48597/XZZX-64E8 +https://doi.org/10.48597/XZD7-6VJU +https://doi.org/10.48597/MRXQ-JF7M +https://doi.org/10.48597/ZSNS-MBAS +https://doi.org/10.48597/WQVT-AMGJ +https://doi.org/10.48597/FMJ6-55BS +https://doi.org/10.48597/NMGE-J6QK +https://doi.org/10.48597/RVNZ-DQMR +https://doi.org/10.48597/WF3K-557D +https://doi.org/10.48597/RG7A-8TUC +https://doi.org/10.48597/VPWQ-SFK9 +https://doi.org/10.48597/M26X-79QY +https://doi.org/10.48597/XT4T-JF6J +https://doi.org/10.48597/PPNC-4NWY +https://doi.org/10.48597/TC8C-G5AX +https://doi.org/10.48597/THTY-KECV +https://doi.org/10.48597/7JSN-GVGR +https://doi.org/10.48597/T2UV-2SGT +https://doi.org/10.48597/8B69-U7BG +https://doi.org/10.48597/H7KE-WJ47 +https://doi.org/10.48597/FEHZ-Q3A2 +https://doi.org/10.48597/5SBR-79VF +https://doi.org/10.48597/SNV7-5FAJ +https://doi.org/10.48597/AA5F-E3GC +https://doi.org/10.48597/RTW7-8QM8 +https://doi.org/10.48597/KD28-SM6U +https://doi.org/10.48597/NWN8-WUH8 +https://doi.org/10.48597/WPEX-PM7G +https://doi.org/10.48597/RZNF-EV8M +https://doi.org/10.48597/S2VF-M3YG +https://doi.org/10.48597/95GT-5RP7 +https://doi.org/10.48597/7T3U-KX39 +https://doi.org/10.48597/NNCS-9P38 +https://doi.org/10.48597/MZ4Z-X9WX +https://doi.org/10.48597/7QRZ-ZV8H +https://doi.org/10.48597/KT9W-C54E +https://doi.org/10.48597/KS2C-394J +https://doi.org/10.48597/M5XP-52XR +https://doi.org/10.48597/KQTU-EG9S +https://doi.org/10.48597/HZ2K-SDB6 +https://doi.org/10.48597/ZZHS-PGH4 +https://doi.org/10.48597/8YQ7-JP2N +https://doi.org/10.48597/UE7Z-ZB2W +https://doi.org/10.48597/S3SU-2XAZ +https://doi.org/10.48597/SAN6-WCBP +https://doi.org/10.48597/UQA9-HQHT +https://doi.org/10.48597/PEH7-ZVKU +https://doi.org/10.48597/6W6S-GZVB +https://doi.org/10.48597/7EGY-P43G +https://doi.org/10.48597/JV3A-E952 +https://doi.org/10.48597/3F6M-U8UD +https://doi.org/10.48597/B5QX-RDZR +https://doi.org/10.48597/73C3-RB5D +https://doi.org/10.48597/9ZPB-HNZY +https://doi.org/10.48597/S4UN-E9K8 +https://doi.org/10.48597/TFW6-WY2Z +https://doi.org/10.48597/7FDG-7NUY +https://doi.org/10.48597/DFVK-AGUJ +https://doi.org/10.48597/TZPK-W2VQ +https://doi.org/10.48597/R9GK-QA42 +https://doi.org/10.48597/THBC-A5CD +https://doi.org/10.48597/QB5T-2CDB +https://doi.org/10.48597/EU5A-7TEK +https://doi.org/10.48597/UVH9-38HM +https://doi.org/10.48597/UMV5-M34F +https://doi.org/10.48597/PB5G-HQ7P +https://doi.org/10.48597/CDYX-A82W +https://doi.org/10.48597/RU3S-8EF7 +https://doi.org/10.48597/GW9B-HSNH +https://doi.org/10.48597/Z2X9-CF7B +https://doi.org/10.48597/H6CV-N7ME +https://doi.org/10.48597/32HJ-FQ3K +https://doi.org/10.48597/7AU3-KG3T +https://doi.org/10.48597/QSJK-R6UZ +https://doi.org/10.48597/9QJV-ECJ7 +https://doi.org/10.48597/T9G7-TUDY +https://doi.org/10.48597/9U2A-67XY +https://doi.org/10.48597/GWJD-BKDY +https://doi.org/10.48597/XCRJ-GZ6N +https://doi.org/10.48597/2J3W-FZVD +https://doi.org/10.48597/CMF5-Z99P +https://doi.org/10.48597/ESYU-JGRK +https://doi.org/10.48597/ADCJ-6AJN +https://doi.org/10.48597/JGYE-KF8Z +https://doi.org/10.48597/XDSQ-NKDD +https://doi.org/10.48597/ZJ4V-44V8 +https://doi.org/10.48597/RVM6-9Y9G +https://doi.org/10.48597/8UEU-3QM4 +https://doi.org/10.48597/CUQK-SDGC +https://doi.org/10.48597/YQ5R-BBYB +https://doi.org/10.48597/UUQ6-AKAG +https://doi.org/10.48597/GRAV-7H2Z +https://doi.org/10.48597/CRPG-HTCM +https://doi.org/10.48597/DU5X-89GX +https://doi.org/10.48597/ADE7-668X +https://doi.org/10.48597/PH2R-BNFT +https://doi.org/10.48597/22S8-STKY +https://doi.org/10.48597/FVSM-ER97 +https://doi.org/10.48597/RK8F-KV95 +https://doi.org/10.48597/XHQM-J36J +https://doi.org/10.48597/QYYD-SK2W +https://doi.org/10.48597/Y86E-RUMJ +https://doi.org/10.48597/XMQG-SDDV +https://doi.org/10.48597/E7CF-DEJH +https://doi.org/10.48597/TG8D-D36Z +https://doi.org/10.48597/8KM6-E37G +https://doi.org/10.48597/5V25-WYTD +https://doi.org/10.48597/J86J-B8NA +https://doi.org/10.48597/H8ZH-KUEV +https://doi.org/10.48597/BCVP-ZJBV +https://doi.org/10.48597/F2N6-92WJ +https://doi.org/10.48597/65BU-ZPST +https://doi.org/10.48597/9QFN-AWQ4 +https://doi.org/10.48597/46MP-X424 +https://doi.org/10.48597/TSXD-3VDW +https://doi.org/10.48597/JSW4-G7A2 +https://doi.org/10.48597/9UXU-54JT +https://doi.org/10.48597/CHGD-JETS +https://doi.org/10.48597/P3QG-TSRH +https://doi.org/10.48597/8TRF-DDKG +https://doi.org/10.48597/JZQ6-3799 +https://doi.org/10.48597/5C6C-2GM5 +https://doi.org/10.48597/KT55-BPHZ +https://doi.org/10.48597/E6F3-JRDB +https://doi.org/10.48597/9BVT-6FPB +https://doi.org/10.48597/5Y9Y-5RRW +https://doi.org/10.48597/Y7R9-F3Q2 +https://doi.org/10.48597/7QP9-XESC +https://doi.org/10.48597/GC6D-ZJEJ +https://doi.org/10.48597/63SA-85PW +https://doi.org/10.48597/FZYF-TEDU +https://doi.org/10.48597/PYAF-PMW9 +https://doi.org/10.48597/BH6H-624J +https://doi.org/10.48597/XPS3-M5SB +https://doi.org/10.48597/UQRZ-2MU2 +https://doi.org/10.48597/HTW6-MZQ9 +https://doi.org/10.48597/84P7-J5W8 +https://doi.org/10.48597/639T-WS62 +https://doi.org/10.48597/NYJ9-926Z +https://doi.org/10.48597/T7J5-ZTXA +https://doi.org/10.48597/UWKD-RHU2 +https://doi.org/10.48597/6BN3-ZABS +https://doi.org/10.48597/C9DC-48MK +https://doi.org/10.48597/VUNB-9MB2 +https://doi.org/10.48597/96HX-ETTB +https://doi.org/10.48597/FP38-7DZ7 +https://doi.org/10.48597/XXVX-7MHK +https://doi.org/10.48597/NNBY-5H58 +https://doi.org/10.48597/3N4Z-Y58A +https://doi.org/10.48597/PYDE-5AQJ +https://doi.org/10.48597/QRRT-5KP9 +https://doi.org/10.48597/RCBR-Y5KW +https://doi.org/10.48597/7KG8-5BJC +https://doi.org/10.48597/66A5-K2BX +https://doi.org/10.48597/VHSS-QVQ6 +https://doi.org/10.48597/YX2Z-MXWR +https://doi.org/10.48597/HHBQ-M8YD +https://doi.org/10.48597/HQSB-6MJJ +https://doi.org/10.48597/EPG4-TG25 +https://doi.org/10.48597/BWY5-QBC2 +https://doi.org/10.48597/K45G-WHEX +https://doi.org/10.48597/F3MY-36JV +https://doi.org/10.48597/N69M-CGXK +https://doi.org/10.48597/7MGT-ACMH +https://doi.org/10.48597/WE2X-QUGB +https://doi.org/10.48597/NW9J-8DQY +https://doi.org/10.48597/JZH5-P4Z2 +https://doi.org/10.48597/Y42K-EVF5 +https://doi.org/10.48597/8FSV-7KFY +https://doi.org/10.48597/H95C-W8MA +https://doi.org/10.48597/SPW4-6S7A +https://doi.org/10.48597/FU4K-6F3Z +https://doi.org/10.48597/2C86-9384 +https://doi.org/10.48597/PV75-Q38M +https://doi.org/10.48597/KBZD-A2MB +https://doi.org/10.48597/4765-36FU +https://doi.org/10.48597/5N97-2DB2 +https://doi.org/10.48597/YDX8-8XP3 +https://doi.org/10.48597/Q3PU-JGVK +https://doi.org/10.48597/TVZD-HRTR +https://doi.org/10.48597/7W59-VVKG +https://doi.org/10.48597/J3ND-UCY2 +https://doi.org/10.48597/Z98C-8TER +https://doi.org/10.48597/FB6G-2JCP +https://doi.org/10.48597/A9X5-RFEH +https://doi.org/10.48597/RTXH-S3BJ +https://doi.org/10.48597/NCJK-VHPQ +https://doi.org/10.48597/4ES3-P496 +https://doi.org/10.48597/PU25-F82D +https://doi.org/10.48597/RBW7-6UR8 +https://doi.org/10.48597/DBGJ-EBN5 +https://doi.org/10.48597/JS9U-YZPW +https://doi.org/10.48597/CUVC-Y3ZK +https://doi.org/10.48597/CGZD-CYVQ +https://doi.org/10.48597/SZT3-A7AJ +https://doi.org/10.48597/7QBY-2QQ2 +https://doi.org/10.48597/ERA8-YQ2C +https://doi.org/10.48597/7WPY-7RGZ +https://doi.org/10.48597/6C97-RMAJ +https://doi.org/10.48597/NBEV-FF57 +https://doi.org/10.48597/E5ZJ-RBUM +https://doi.org/10.48597/TTQT-ZZED +https://doi.org/10.48597/8XDF-GT8H +https://doi.org/10.48597/R6CU-RJ47 +https://doi.org/10.48597/QCN2-AETG +https://doi.org/10.48597/BRZ5-RPX9 +https://doi.org/10.48597/KHZN-VJU2 +https://doi.org/10.48597/WHSY-YZMB +https://doi.org/10.48597/8C8H-TSSK +https://doi.org/10.48597/QYDQ-7XTJ +https://doi.org/10.48597/3W6J-J537 +https://doi.org/10.48597/BCFR-NDYF +https://doi.org/10.48597/ZQM7-QBDZ +https://doi.org/10.48597/336F-6YYE +https://doi.org/10.48597/WR6U-6MFV +https://doi.org/10.48597/J45V-UQ9E +https://doi.org/10.48597/GMYF-VHSF +https://doi.org/10.48597/UHJ4-DYCG +https://doi.org/10.48597/TGSY-296H +https://doi.org/10.48597/448N-Q6DR +https://doi.org/10.48597/GD53-QEBV +https://doi.org/10.48597/647Q-ARPK +https://doi.org/10.48597/9RPD-CJNK +https://doi.org/10.48597/HH3M-EPMN +https://doi.org/10.48597/VG92-YK88 +https://doi.org/10.48597/QJUU-ARD8 +https://doi.org/10.48597/ZJHG-YEHY +https://doi.org/10.48597/38XE-MWD9 +https://doi.org/10.48597/UHU8-HKMD +https://doi.org/10.48597/2VWC-M9H5 +https://doi.org/10.48597/28ZP-XVUR +https://doi.org/10.48597/YJMC-Q533 +https://doi.org/10.48597/VTAS-RYEK +https://doi.org/10.48597/HFRB-PDEF +https://doi.org/10.48597/5BHQ-KFX8 +https://doi.org/10.48597/ZAEJ-95V3 +https://doi.org/10.48597/PGGF-A2DC +https://doi.org/10.48597/4G8Z-38NS +https://doi.org/10.48597/GZ8T-A69S +https://doi.org/10.48597/EKQM-BWJW +https://doi.org/10.48597/WSJG-9WZT +https://doi.org/10.48597/8KVN-QXDA +https://doi.org/10.48597/MHPY-AXR7 +https://doi.org/10.48597/VPZ9-5V23 +https://doi.org/10.48597/JSMP-TRY5 +https://doi.org/10.48597/E7KJ-385Q +https://doi.org/10.48597/VR8G-8U26 +https://doi.org/10.48597/ZQZH-EFFH +https://doi.org/10.48597/YFYB-3TP2 +https://doi.org/10.48597/XCTZ-HYRK +https://doi.org/10.48597/D5KB-WKM7 +https://doi.org/10.48597/RD6X-RUE6 +https://doi.org/10.48597/YTR7-XPY9 +https://doi.org/10.48597/A9FF-UW9A +https://doi.org/10.48597/JRWZ-5F4V +https://doi.org/10.48597/M64H-GYWN +https://doi.org/10.48597/6CTM-GFV7 +https://doi.org/10.48597/N29S-ZW8V +https://doi.org/10.48597/JZ8A-5ZU8 +https://doi.org/10.48597/RFJG-67P5 +https://doi.org/10.48597/2RPY-TGWM +https://doi.org/10.48597/DS4V-CUDA +https://doi.org/10.48597/A8V6-T4VW +https://doi.org/10.48597/BR5C-RJ9Z +https://doi.org/10.48597/Q427-EU5A +https://doi.org/10.48597/RQBQ-4H3N +https://doi.org/10.48597/WYCU-DXVC +https://doi.org/10.48597/9BAY-UPJF +https://doi.org/10.48597/NT6F-9653 +https://doi.org/10.48597/36TR-DXV9 +https://doi.org/10.48597/CPZ9-C36G +https://doi.org/10.48597/PPHD-ZDTY +https://doi.org/10.48597/HNFN-TVJE +https://doi.org/10.48597/ZYSX-3Y68 +https://doi.org/10.48597/UPNF-8U4B +https://doi.org/10.48597/TC68-EPWP +https://doi.org/10.48597/B2S3-57F6 +https://doi.org/10.48597/WSMT-6UDX +https://doi.org/10.48597/42CY-5MWX +https://doi.org/10.48597/M5XB-4C8W +https://doi.org/10.48597/QZYH-QPVF +https://doi.org/10.48597/CVGK-9JMB +https://doi.org/10.48597/JTT9-62N3 +https://doi.org/10.48597/ZTZS-QZFH +https://doi.org/10.48597/34Q7-T4P2 +https://doi.org/10.48597/KAT3-TQ88 +https://doi.org/10.48597/BQGT-4GZH +https://doi.org/10.48597/6GFM-6YEZ +https://doi.org/10.48597/64QW-TJSQ +https://doi.org/10.48597/9DN7-ZM8B +https://doi.org/10.48597/2XB7-RAKJ +https://doi.org/10.48597/3B34-TAAY +https://doi.org/10.48597/USYK-S69Z +https://doi.org/10.48597/XBVR-ZJ6E +https://doi.org/10.48597/F52E-GNUZ +https://doi.org/10.48597/UD85-HR98 +https://doi.org/10.48597/JWZ3-967Z +https://doi.org/10.48597/FFSN-Y9D9 +https://doi.org/10.48597/KJVJ-KE7D +https://doi.org/10.48597/YR62-8JSQ +https://doi.org/10.48597/8AKA-TZJH +https://doi.org/10.48597/QBJU-TYSU +https://doi.org/10.48597/VR5W-GP9B +https://doi.org/10.48597/T98P-U946 +https://doi.org/10.48597/5TX9-AVVN +https://doi.org/10.48597/BTYS-ZKR5 +https://doi.org/10.48597/7RXM-9YXW +https://doi.org/10.48597/PZHA-PG2U +https://doi.org/10.48597/PVWU-4PEV +https://doi.org/10.48597/YK73-YMVD +https://doi.org/10.48597/ZZRR-DNXU +https://doi.org/10.48597/PY8T-FXPS +https://doi.org/10.48597/W5UZ-85U7 +https://doi.org/10.48597/PQCU-5ZQ5 +https://doi.org/10.48597/A3QF-87UT +https://doi.org/10.48597/ZTE8-HCC3 +https://doi.org/10.48597/UU4S-CS8A +https://doi.org/10.48597/QHZW-96ER +https://doi.org/10.48597/UZTY-R2MM +https://doi.org/10.48597/BV9R-5S5M +https://doi.org/10.48597/HAPP-X2WN +https://doi.org/10.48597/Y5AN-H23V +https://doi.org/10.48597/R8QS-K6MR +https://doi.org/10.48597/44Q9-NKQK +https://doi.org/10.48597/RPDB-BJ9Y +https://doi.org/10.48597/4TFB-JQAH +https://doi.org/10.48597/P6TS-JVDF +https://doi.org/10.48597/8GP8-3KWC +https://doi.org/10.48597/9D3S-XRWG +https://doi.org/10.48597/VQ44-T6GS +https://doi.org/10.48597/QQKZ-A9TW +https://doi.org/10.48597/ZHMV-HTR3 +https://doi.org/10.48597/QUCG-AWUG +https://doi.org/10.48597/6ANB-79MU +https://doi.org/10.48597/34YG-2JKN +https://doi.org/10.48597/2QP7-5YQS +https://doi.org/10.48597/RYHA-QTUM +https://doi.org/10.48597/AKCM-DA69 +https://doi.org/10.48597/N99A-NU3D +https://doi.org/10.48597/EV69-GTAS +https://doi.org/10.48597/77QC-RW4Q +https://doi.org/10.48597/B3WF-UUND +https://doi.org/10.48597/NGSH-BVYX +https://doi.org/10.48597/67YX-QDKK +https://doi.org/10.48597/JJE9-VSMT +https://doi.org/10.48597/2P7Y-5ZYV +https://doi.org/10.48597/XJDC-XF42 +https://doi.org/10.48597/E2UD-NZKC +https://doi.org/10.48597/PQHZ-JB9Q +https://doi.org/10.48597/BHZS-BUG5 +https://doi.org/10.48597/RQK4-QHM8 +https://doi.org/10.48597/WHY8-3ZVN +https://doi.org/10.48597/NYUZ-3HAW +https://doi.org/10.48597/2MJD-46YR +https://doi.org/10.48597/4329-QYDQ +https://doi.org/10.48597/9BYG-CZQB +https://doi.org/10.48597/B9WU-3EXD +https://doi.org/10.48597/ZR5A-9ZQT +https://doi.org/10.48597/VXRW-SR8Y +https://doi.org/10.48597/SSZQ-59QF +https://doi.org/10.48597/9MBZ-CP8N +https://doi.org/10.48597/QBWC-FDNH +https://doi.org/10.48597/2H9Y-95XX +https://doi.org/10.48597/MYHJ-ANP7 +https://doi.org/10.48597/NJPH-QMH7 +https://doi.org/10.48597/HKGN-YJ52 +https://doi.org/10.48597/72B4-2THG +https://doi.org/10.48597/536X-AAY2 +https://doi.org/10.48597/NGDT-N9SQ +https://doi.org/10.48597/TKV8-7RPT +https://doi.org/10.48597/SGHP-7TZZ +https://doi.org/10.48597/J559-THPG +https://doi.org/10.48597/R352-P6CA +https://doi.org/10.48597/PY7G-HJ99 +https://doi.org/10.48597/4Q2V-GU7P +https://doi.org/10.48597/6A59-2QZQ +https://doi.org/10.48597/A3PM-B3W2 +https://doi.org/10.48597/FT5Y-YKX6 +https://doi.org/10.48597/DFCG-T4Z9 +https://doi.org/10.48597/G5JQ-BPP7 +https://doi.org/10.48597/CPNT-S4KQ +https://doi.org/10.48597/9W92-7GVF +https://doi.org/10.48597/F6B7-8ZK9 +https://doi.org/10.48597/MCST-9R65 +https://doi.org/10.48597/385R-EVF7 +https://doi.org/10.48597/6ARW-YM63 +https://doi.org/10.48597/UBSS-U5E6 +https://doi.org/10.48597/F4Y5-MNEP +https://doi.org/10.48597/JG94-RVGZ +https://doi.org/10.48597/V8M5-R97V +https://doi.org/10.48597/PFJP-3UWQ +https://doi.org/10.48597/4N4Y-XYEW +https://doi.org/10.48597/AY6G-3TVS +https://doi.org/10.48597/4FAG-FG3S +https://doi.org/10.48597/9W7C-FFRD +https://doi.org/10.48597/GANK-9JGR +https://doi.org/10.48597/AEPW-QXVX +https://doi.org/10.48597/HGC4-UJJ9 +https://doi.org/10.48597/42G7-XUQ2 +https://doi.org/10.48597/J8HA-64ZP +https://doi.org/10.48597/J3M8-F5K3 +https://doi.org/10.48597/2FJE-3TR2 +https://doi.org/10.48597/8WZ7-AW6A +https://doi.org/10.48597/YGSZ-7MC7 +https://doi.org/10.48597/PSBV-D2TU +https://doi.org/10.48597/FKBX-X78P +https://doi.org/10.48597/2NV8-M2KE +https://doi.org/10.48597/ASM8-VJYZ +https://doi.org/10.48597/YTG9-6ERE +https://doi.org/10.48597/3XVJ-6YGJ +https://doi.org/10.48597/PYCZ-6282 +https://doi.org/10.48597/HNGJ-DKPZ +https://doi.org/10.48597/2YNM-Y49J +https://doi.org/10.48597/UA5W-773Z +https://doi.org/10.48597/QTX8-F7KY +https://doi.org/10.48597/UTDD-DTMU +https://doi.org/10.48597/SM23-NAPN +https://doi.org/10.48597/T9XB-XHWG +https://doi.org/10.48597/E9JM-MYNC +https://doi.org/10.48597/YKF2-AJ5X +https://doi.org/10.48597/3TWP-U3NQ +https://doi.org/10.48597/UXAZ-KX2Y +https://doi.org/10.48597/FYDQ-D9PB +https://doi.org/10.48597/G7RE-D34C +https://doi.org/10.48597/WHE8-99QW +https://doi.org/10.48597/XQCS-TY79 +https://doi.org/10.48597/6H26-M4ND +https://doi.org/10.48597/DSUG-3HW5 +https://doi.org/10.48597/E366-DEBU +https://doi.org/10.48597/FQ4J-NUEH +https://doi.org/10.48597/VE77-4VFP +https://doi.org/10.48597/9K2X-28UZ +https://doi.org/10.48597/D7QK-4HC2 +https://doi.org/10.48597/8V3M-FB6X +https://doi.org/10.48597/ANVR-GB3F +https://doi.org/10.48597/XJY3-NMZU +https://doi.org/10.48597/XHT4-C8NV +https://doi.org/10.48597/WB55-ZYYV +https://doi.org/10.48597/Q6EG-8RX3 +https://doi.org/10.48597/7D2D-CD8W +https://doi.org/10.48597/HDY4-MK2X +https://doi.org/10.48597/K3BK-YK27 +https://doi.org/10.48597/565A-SX93 +https://doi.org/10.48597/C8KA-9Y5D +https://doi.org/10.48597/JJQ6-43HT +https://doi.org/10.48597/64Q8-S5AW +https://doi.org/10.48597/2DWQ-XKK4 +https://doi.org/10.48597/GTJR-2HJE +https://doi.org/10.48597/HCWV-78DY +https://doi.org/10.48597/R6Q2-VH68 +https://doi.org/10.48597/P2MW-NY2A +https://doi.org/10.48597/SKJ3-3WUG +https://doi.org/10.48597/VQRU-PNN5 +https://doi.org/10.48597/MEXB-35YT +https://doi.org/10.48597/PMAB-P5ZF +https://doi.org/10.48597/KEUG-UWT4 +https://doi.org/10.48597/RMF4-6SN3 +https://doi.org/10.48597/TJAC-8CG7 +https://doi.org/10.48597/WBSP-W53N +https://doi.org/10.48597/4B7D-4PZ6 +https://doi.org/10.48597/THJJ-BRH8 +https://doi.org/10.48597/YE38-8MF4 +https://doi.org/10.48597/JMMX-2NQ4 +https://doi.org/10.48597/5H89-KUXB +https://doi.org/10.48597/JS44-FBEQ +https://doi.org/10.48597/7XED-FCUJ +https://doi.org/10.48597/KTNQ-VJGD +https://doi.org/10.48597/634E-HGZA +https://doi.org/10.48597/BPQ2-SBR9 +https://doi.org/10.48597/AZ7U-WURS +https://doi.org/10.48597/43CG-8JN8 +https://doi.org/10.48597/EJDP-Q2TQ +https://doi.org/10.48597/KNW9-48DY +https://doi.org/10.48597/HC8E-DGUC +https://doi.org/10.48597/T4VU-8E3N +https://doi.org/10.48597/RN7E-APJM +https://doi.org/10.48597/V6XT-XMCF +https://doi.org/10.48597/82UN-2AE2 +https://doi.org/10.48597/MY4X-QQFB +https://doi.org/10.48597/HZWA-WGAJ +https://doi.org/10.48597/4AA7-22SC +https://doi.org/10.48597/RPBP-2F26 +https://doi.org/10.48597/8DEM-Y28J +https://doi.org/10.48597/2EEW-TZWR +https://doi.org/10.48597/YJRP-DJFG +https://doi.org/10.48597/KVPQ-392G +https://doi.org/10.48597/YUWU-S75Z +https://doi.org/10.48597/KSGU-3EMF +https://doi.org/10.48597/GYAR-GPZ2 +https://doi.org/10.48597/4GYG-7DDB +https://doi.org/10.48597/5R3Q-PK6R +https://doi.org/10.48597/UFHH-78H9 +https://doi.org/10.48597/QGDM-RUNW +https://doi.org/10.48597/T66Q-X5AT +https://doi.org/10.48597/7QPF-QA3M +https://doi.org/10.48597/TM2W-JZRA +https://doi.org/10.48597/QSX4-XHGU +https://doi.org/10.48597/MEVW-UPA8 +https://doi.org/10.48597/BBHN-WC7H +https://doi.org/10.48597/V8XG-29XA +https://doi.org/10.48597/FFDE-TQBB +https://doi.org/10.48597/76QY-TY4Q +https://doi.org/10.48597/GPPU-PU2J +https://doi.org/10.48597/PXTU-M77T +https://doi.org/10.48597/BA3P-H6MH +https://doi.org/10.48597/29GX-CSDS +https://doi.org/10.48597/9UDF-CKQX +https://doi.org/10.48597/JBYQ-6ZS6 +https://doi.org/10.48597/BF66-DXX3 +https://doi.org/10.48597/W24Q-6PYZ +https://doi.org/10.48597/9T69-44BX +https://doi.org/10.48597/6QHC-4RJC +https://doi.org/10.48597/XJC9-AD8Z +https://doi.org/10.48597/4UCJ-XC6D +https://doi.org/10.48597/PS2M-RG4S +https://doi.org/10.48597/THMQ-4DXW +https://doi.org/10.48597/SHFB-TKGD +https://doi.org/10.48597/4EWT-FS24 +https://doi.org/10.48597/TDM2-WVRJ +https://doi.org/10.48597/Q4VB-388E +https://doi.org/10.48597/T7X7-9MK7 +https://doi.org/10.48597/TGV9-2SQK +https://doi.org/10.48597/CFMN-BF8S +https://doi.org/10.48597/A3WT-99GX +https://doi.org/10.48597/BUY6-AUNC +https://doi.org/10.48597/A6BR-UZNE +https://doi.org/10.48597/NB3J-FQ8R +https://doi.org/10.48597/9WXN-CWJ3 +https://doi.org/10.48597/XBVJ-SXN9 +https://doi.org/10.48597/E55Y-FEKR +https://doi.org/10.48597/XAD2-CPT4 +https://doi.org/10.48597/55KA-43TP +https://doi.org/10.48597/AVGJ-PUXS +https://doi.org/10.48597/BQXQ-97NM +https://doi.org/10.48597/AHXP-KW2R +https://doi.org/10.48597/H8MG-VUV5 +https://doi.org/10.48597/J5NT-6SDG +https://doi.org/10.48597/F9U9-KUBV +https://doi.org/10.48597/MUZR-7AHJ +https://doi.org/10.48597/UTKS-C8D7 +https://doi.org/10.48597/5BKQ-UMJN +https://doi.org/10.48597/N52E-7GK6 +https://doi.org/10.48597/M7MY-BNN8 +https://doi.org/10.48597/SPSE-PHWK +https://doi.org/10.48597/ACEZ-C7Q2 +https://doi.org/10.48597/E2NX-CN4Y +https://doi.org/10.48597/HF38-GJJW +https://doi.org/10.48597/P7KR-2TX3 +https://doi.org/10.48597/V7QV-7K3D +https://doi.org/10.48597/V78A-NG6E +https://doi.org/10.48597/N3WB-XPHT +https://doi.org/10.48597/MNHV-S2QV +https://doi.org/10.48597/TZEN-8UVD +https://doi.org/10.48597/T6DY-XS4J +https://doi.org/10.48597/7HDE-X278 +https://doi.org/10.48597/PTWR-R2PC +https://doi.org/10.48597/AX7S-X5N7 +https://doi.org/10.48597/XAQW-FWZZ +https://doi.org/10.48597/D4D5-Q76H +https://doi.org/10.48597/YZME-QH4T +https://doi.org/10.48597/K9K6-U2FE +https://doi.org/10.48597/D7N8-UWM3 +https://doi.org/10.48597/2K3N-VXQS +https://doi.org/10.48597/3456-JVMC +https://doi.org/10.48597/9ZDN-PP2X +https://doi.org/10.48597/K65B-YKHZ +https://doi.org/10.48597/5TAA-EXRA +https://doi.org/10.48597/9FRC-4JVN +https://doi.org/10.48597/3KF3-YGGY +https://doi.org/10.48597/46ZB-C9JU +https://doi.org/10.48597/NGGP-YA24 +https://doi.org/10.48597/QPM4-BPM8 +https://doi.org/10.48597/F6GR-GH9J +https://doi.org/10.48597/4GF3-97G5 +https://doi.org/10.48597/CDAA-K9ZN +https://doi.org/10.48597/5K7N-W6KK +https://doi.org/10.48597/GP3H-DUZN +https://doi.org/10.48597/KVW2-8T2G +https://doi.org/10.48597/KT33-ESQB +https://doi.org/10.48597/HBD7-C23K +https://doi.org/10.48597/8FVT-UW56 +https://doi.org/10.48597/BSFR-RZG6 +https://doi.org/10.48597/NJGR-35NQ +https://doi.org/10.48597/ZGJS-6YJJ +https://doi.org/10.48597/CM8D-YY68 +https://doi.org/10.48597/CZ42-Q4X4 +https://doi.org/10.48597/U8C2-KJPG +https://doi.org/10.48597/AN8J-D9YU +https://doi.org/10.48597/5SX5-SQ2B +https://doi.org/10.48597/RTV2-TRWP +https://doi.org/10.48597/QEK2-G467 +https://doi.org/10.48597/UEUG-4NCD +https://doi.org/10.48597/PUQY-GJSB +https://doi.org/10.48597/BKDP-GVU2 +https://doi.org/10.48597/TCW3-UZ8N +https://doi.org/10.48597/UFVP-3QDA +https://doi.org/10.48597/J2WX-3AMH +https://doi.org/10.48597/U6HX-5PN3 +https://doi.org/10.48597/58EP-59C5 +https://doi.org/10.48597/EQR8-ZA8P +https://doi.org/10.48597/UBY5-88TG +https://doi.org/10.48597/EXMU-JSMF +https://doi.org/10.48597/ZE95-UXAF +https://doi.org/10.48597/2HRR-2QPZ +https://doi.org/10.48597/T9VK-66GX +https://doi.org/10.48597/GX76-JKA6 +https://doi.org/10.48597/AFFF-2V2R +https://doi.org/10.48597/RKDP-T53S +https://doi.org/10.48597/P4WN-VCP2 +https://doi.org/10.48597/SYCB-Q2YD +https://doi.org/10.48597/5RWV-DZTP +https://doi.org/10.48597/NJ3J-QH95 +https://doi.org/10.48597/52WH-428Q +https://doi.org/10.48597/NQ4G-6RT5 +https://doi.org/10.48597/F63D-MTME +https://doi.org/10.48597/4BBN-Z8QB +https://doi.org/10.48597/FFSJ-BZKR +https://doi.org/10.48597/3RGM-78PS +https://doi.org/10.48597/R8S5-KKR9 +https://doi.org/10.48597/MCKT-G9P8 +https://doi.org/10.48597/ZBW5-6RMV +https://doi.org/10.48597/Y2V4-Z3WX +https://doi.org/10.48597/2QMR-7CC8 +https://doi.org/10.48597/HXEV-Q476 +https://doi.org/10.48597/3VJQ-RQRK +https://doi.org/10.48597/F3YR-V9DG +https://doi.org/10.48597/JKNS-VUQY +https://doi.org/10.48597/3FVB-8W3V +https://doi.org/10.48597/UGTT-8YW6 +https://doi.org/10.48597/S89A-55PD +https://doi.org/10.48597/NZH4-Y982 +https://doi.org/10.48597/AA3P-K6VT +https://doi.org/10.48597/MXWP-NTQR +https://doi.org/10.48597/Q2BA-GM75 +https://doi.org/10.48597/A9JM-2QNV +https://doi.org/10.48597/986C-PSF8 +https://doi.org/10.48597/NQ2W-KBE4 +https://doi.org/10.48597/UQ4S-275R +https://doi.org/10.48597/WVR7-U58W +https://doi.org/10.48597/XUMC-PA8H +https://doi.org/10.48597/TGCQ-4HKK +https://doi.org/10.48597/V2P6-FVYS +https://doi.org/10.48597/GKHD-89H2 +https://doi.org/10.48597/ZRSG-44JZ +https://doi.org/10.48597/5F6V-87E4 +https://doi.org/10.48597/ARBV-RYSG +https://doi.org/10.48597/JXBR-G6FX +https://doi.org/10.48597/3A6H-97Z4 +https://doi.org/10.48597/JKAK-P3NF +https://doi.org/10.48597/MYCK-94QG +https://doi.org/10.48597/TBPR-XER8 +https://doi.org/10.48597/HHCZ-QURZ +https://doi.org/10.48597/QAXA-A53R +https://doi.org/10.48597/YVP4-TXWP +https://doi.org/10.48597/AQH9-XZ5D +https://doi.org/10.48597/86Q9-65KX +https://doi.org/10.48597/JMT5-6NJU +https://doi.org/10.48597/8A5K-94UY +https://doi.org/10.48597/NHJW-9GPF +https://doi.org/10.48597/D2EU-HJQW +https://doi.org/10.48597/7E8T-DSFV +https://doi.org/10.48597/R9KD-9SXD +https://doi.org/10.48597/7SZ4-QKD9 +https://doi.org/10.48597/XAGY-DS6P +https://doi.org/10.48597/J2ZG-A9RH +https://doi.org/10.48597/A26H-FYDF +https://doi.org/10.48597/C2BS-8US8 +https://doi.org/10.48597/UEVT-BDEW +https://doi.org/10.48597/AJ6M-MUG6 +https://doi.org/10.48597/YDKF-Y7U3 +https://doi.org/10.48597/SD3C-YAR9 +https://doi.org/10.48597/GTEJ-3B7T +https://doi.org/10.48597/3SYK-5V2G +https://doi.org/10.48597/EUG8-SSNF +https://doi.org/10.48597/TBTB-3CEQ +https://doi.org/10.48597/A64B-7SXW +https://doi.org/10.48597/VGX2-K8HR +https://doi.org/10.48597/YEDS-DCMM +https://doi.org/10.48597/7HMZ-EKUY +https://doi.org/10.48597/YKSN-VAYR +https://doi.org/10.48597/XKG2-G22G +https://doi.org/10.48597/G5YX-7ZFW +https://doi.org/10.48597/2MN2-E7DM +https://doi.org/10.48597/MNX7-AHDW +https://doi.org/10.48597/73KG-9JVT +https://doi.org/10.48597/MYRW-MW74 +https://doi.org/10.48597/X8JU-M59J +https://doi.org/10.48597/62H6-SE2X +https://doi.org/10.48597/BX85-4KNU +https://doi.org/10.48597/7U5A-Q5CS +https://doi.org/10.48597/FT7J-Z925 +https://doi.org/10.48597/K658-8H7F +https://doi.org/10.48597/VZD8-GHG3 +https://doi.org/10.48597/X58F-WYFS +https://doi.org/10.48597/3KDJ-4VSX +https://doi.org/10.48597/VJ7J-NNK5 +https://doi.org/10.48597/JKT4-VXPC +https://doi.org/10.48597/5PTA-VGA3 +https://doi.org/10.48597/DB3K-YS57 +https://doi.org/10.48597/D8BK-E9EC +https://doi.org/10.48597/3MEW-GEGV +https://doi.org/10.48597/DVTB-RQX7 +https://doi.org/10.48597/F5T7-U6JQ +https://doi.org/10.48597/D97U-5GSU +https://doi.org/10.48597/VPUE-KV4W +https://doi.org/10.48597/F4Z3-SXAE +https://doi.org/10.48597/94JT-XGAT +https://doi.org/10.48597/53FD-VC6N +https://doi.org/10.48597/Z9YZ-VXPQ +https://doi.org/10.48597/G2YA-YQFK +https://doi.org/10.48597/7MT6-9KKH +https://doi.org/10.48597/QXP2-TWJY +https://doi.org/10.48597/M3PJ-ABKK +https://doi.org/10.48597/NMAT-NS5W +https://doi.org/10.48597/VZ3Q-R6B8 +https://doi.org/10.48597/U84H-QJJP +https://doi.org/10.48597/KXPD-D53P +https://doi.org/10.48597/ZTX4-9QJ7 +https://doi.org/10.48597/AXB3-SXWQ +https://doi.org/10.48597/TAWV-A4DS +https://doi.org/10.48597/65ZN-4FWF +https://doi.org/10.48597/56SJ-XNH2 +https://doi.org/10.48597/NZ7P-Y3E3 +https://doi.org/10.48597/QCYD-AT9G +https://doi.org/10.48597/YEKQ-XVQT +https://doi.org/10.48597/NVCT-PSYM +https://doi.org/10.48597/2Z94-79FM +https://doi.org/10.48597/JBRU-RRV8 +https://doi.org/10.48597/HEXA-54E2 +https://doi.org/10.48597/3E3M-VFEG +https://doi.org/10.48597/WFSD-R3KB +https://doi.org/10.48597/ESBN-YTWW +https://doi.org/10.48597/J2HT-YY46 +https://doi.org/10.48597/EPZ6-ADDD +https://doi.org/10.48597/AEH7-UGZJ +https://doi.org/10.48597/8MTB-9N6T +https://doi.org/10.48597/HVH3-3WSZ +https://doi.org/10.48597/XYR7-A4BP +https://doi.org/10.48597/BBY8-N8KF +https://doi.org/10.48597/626F-C9N6 +https://doi.org/10.48597/NH4C-9HQG +https://doi.org/10.48597/5UW8-64JU +https://doi.org/10.48597/YA3X-2MSY +https://doi.org/10.48597/BSQF-GNPE +https://doi.org/10.48597/Z9MM-SCWK +https://doi.org/10.48597/KVM3-68WC +https://doi.org/10.48597/JW6E-VCBJ +https://doi.org/10.48597/RV55-9NYN +https://doi.org/10.48597/8RES-RG33 +https://doi.org/10.48597/ABNQ-J66U +https://doi.org/10.48597/9GS3-K69M +https://doi.org/10.48597/MFVR-PC2F +https://doi.org/10.48597/KF2F-RR4Z +https://doi.org/10.48597/WAWV-ZYSK +https://doi.org/10.48597/WK5T-R2D2 +https://doi.org/10.48597/QD6P-X8EQ +https://doi.org/10.48597/DMQY-9T48 +https://doi.org/10.48597/RVMV-KZMD +https://doi.org/10.48597/QK84-G9B6 +https://doi.org/10.48597/ZHQC-J6CB +https://doi.org/10.48597/W6SS-J6EJ +https://doi.org/10.48597/JXTP-XTNT +https://doi.org/10.48597/ZUFN-K56N +https://doi.org/10.48597/3RRF-WBB7 +https://doi.org/10.48597/QDHD-PKN8 +https://doi.org/10.48597/AQTC-H755 +https://doi.org/10.48597/3YJT-K2CK +https://doi.org/10.48597/XGYZ-Y9KA +https://doi.org/10.48597/WVX3-HBUK +https://doi.org/10.48597/NVWV-KNZW +https://doi.org/10.48597/WMZ6-663J +https://doi.org/10.48597/HX2X-MABK +https://doi.org/10.48597/EYV3-U9M8 +https://doi.org/10.48597/5F46-7S8E +https://doi.org/10.48597/YJJE-CUKG +https://doi.org/10.48597/J89C-PE25 +https://doi.org/10.48597/QHW5-MHZB +https://doi.org/10.48597/TTH6-XETU +https://doi.org/10.48597/DP4V-92FJ +https://doi.org/10.48597/9EXY-34KW +https://doi.org/10.48597/2JSN-69XV +https://doi.org/10.48597/S28Z-RSMD +https://doi.org/10.48597/YHFG-PBF5 +https://doi.org/10.48597/5U7V-MBE3 +https://doi.org/10.48597/NEVH-UW2H +https://doi.org/10.48597/3Y48-KB74 +https://doi.org/10.48597/VKGA-5DVR +https://doi.org/10.48597/CUNQ-32S7 +https://doi.org/10.48597/VM5P-H3CJ +https://doi.org/10.48597/ZN54-HYCR +https://doi.org/10.48597/CZ3Y-CTF6 +https://doi.org/10.48597/ZUEK-PRHQ +https://doi.org/10.48597/6MT8-PYG6 +https://doi.org/10.48597/2ZUR-2WAR +https://doi.org/10.48597/DBV8-72PG +https://doi.org/10.48597/J2QS-SK3V +https://doi.org/10.48597/RWYJ-SNMZ +https://doi.org/10.48597/NWQ4-59VR +https://doi.org/10.48597/3JP8-QYCN +https://doi.org/10.48597/8DW5-CMGY +https://doi.org/10.48597/H9U6-2772 +https://doi.org/10.48597/44TR-NTUX +https://doi.org/10.48597/ZXRB-A755 +https://doi.org/10.48597/WBH3-K5CH +https://doi.org/10.48597/WHJW-YK67 +https://doi.org/10.48597/ATCC-Q6WU +https://doi.org/10.48597/AM8F-N8M9 +https://doi.org/10.48597/M7XQ-4G4H +https://doi.org/10.48597/F68S-NRED +https://doi.org/10.48597/BSDC-EBRU +https://doi.org/10.48597/WHC8-DK4B +https://doi.org/10.48597/CHQM-ESPG +https://doi.org/10.48597/6NMR-KHWK +https://doi.org/10.48597/K2G8-PRP2 +https://doi.org/10.48597/3Q78-Q8EG +https://doi.org/10.48597/V5MV-DPGZ +https://doi.org/10.48597/M7GB-DYUD +https://doi.org/10.48597/WXZA-6M7D +https://doi.org/10.48597/FQEQ-KT8Y +https://doi.org/10.48597/SA2X-XCNR +https://doi.org/10.48597/D2UA-BE6J +https://doi.org/10.48597/VHPP-FM78 +https://doi.org/10.48597/FQZ7-4C97 +https://doi.org/10.48597/PB8Y-JZPM +https://doi.org/10.48597/HRMM-JAKT +https://doi.org/10.48597/JF3Z-RHD9 +https://doi.org/10.48597/RB2Q-W5B4 +https://doi.org/10.48597/KRCV-MFJW +https://doi.org/10.48597/SXAF-ZX4R +https://doi.org/10.48597/XQVD-9CZ2 +https://doi.org/10.48597/Q6E7-TEMG +https://doi.org/10.48597/NXJP-KDT7 +https://doi.org/10.48597/M4RJ-Q92E +https://doi.org/10.48597/WDA5-WVKF +https://doi.org/10.48597/WGVP-AVSJ +https://doi.org/10.48597/3S3J-QJY2 +https://doi.org/10.48597/9783-8UVG +https://doi.org/10.48597/BBRK-D7JW +https://doi.org/10.48597/7UAV-USET +https://doi.org/10.48597/QSVV-FEB6 +https://doi.org/10.48597/9ETF-7UNN +https://doi.org/10.48597/XFUN-VUAC +https://doi.org/10.48597/7M34-5PV2 +https://doi.org/10.48597/BW8G-ZU6Z +https://doi.org/10.48597/XX9Q-37ET +https://doi.org/10.48597/3M6S-G2VF +https://doi.org/10.48597/SEZV-XUB2 +https://doi.org/10.48597/MHR8-9J7A +https://doi.org/10.48597/EUVP-EK5R +https://doi.org/10.48597/JXK3-A4JV +https://doi.org/10.48597/4DR5-9KUU +https://doi.org/10.48597/NH4F-QPAA +https://doi.org/10.48597/6FWT-3VZ5 +https://doi.org/10.48597/SGM5-CUPD +https://doi.org/10.48597/SNJZ-YMJ8 +https://doi.org/10.48597/DG5H-84E3 +https://doi.org/10.48597/ARKM-29P2 +https://doi.org/10.48597/48SA-9B8G +https://doi.org/10.48597/UPJH-BFEP +https://doi.org/10.48597/59XE-6JFY +https://doi.org/10.48597/XKR2-NUU5 +https://doi.org/10.48597/5EBY-UAUS +https://doi.org/10.48597/DR5J-CD9S +https://doi.org/10.48597/5S3T-CQ34 +https://doi.org/10.48597/XQP4-MJGD +https://doi.org/10.48597/8D7M-NQKD +https://doi.org/10.48597/QF9K-RPM3 +https://doi.org/10.48597/QZNJ-KSZH +https://doi.org/10.48597/VMMF-RBMM +https://doi.org/10.48597/9VAJ-ABNB +https://doi.org/10.48597/ET8X-95VZ +https://doi.org/10.48597/5TA5-JE7U +https://doi.org/10.48597/XMCE-2WND +https://doi.org/10.48597/4QNV-CFGA +https://doi.org/10.48597/Z39F-UMHM +https://doi.org/10.48597/BZGX-Q7TB +https://doi.org/10.48597/UZCF-FU7B +https://doi.org/10.48597/EUVF-PGB8 +https://doi.org/10.48597/ZPQ8-SNZR +https://doi.org/10.48597/N7HJ-AVVS +https://doi.org/10.48597/QB4H-CJHF +https://doi.org/10.48597/7SCE-FQPZ +https://doi.org/10.48597/P25Y-E8H2 +https://doi.org/10.48597/KSSQ-J3PU +https://doi.org/10.48597/G9DB-NXMA +https://doi.org/10.48597/H8SP-WDK9 +https://doi.org/10.48597/3FA6-XNRE +https://doi.org/10.48597/AKKG-BY85 +https://doi.org/10.48597/J63V-3SXN +https://doi.org/10.48597/JQW7-SS73 +https://doi.org/10.48597/WGEX-QG2D +https://doi.org/10.48597/3KN9-M99G +https://doi.org/10.48597/5Z56-QQRX +https://doi.org/10.48597/DXG6-3YPE +https://doi.org/10.48597/KUDB-7UHA +https://doi.org/10.48597/CZX4-Y74U +https://doi.org/10.48597/BZFG-RJ4B +https://doi.org/10.48597/UTV6-KFZ6 +https://doi.org/10.48597/KE68-WEHY +https://doi.org/10.48597/6XK6-RMSZ +https://doi.org/10.48597/NHYU-BC4S +https://doi.org/10.48597/X7EY-GRKR +https://doi.org/10.48597/DNRM-N3BP +https://doi.org/10.48597/GXFU-NM3E +https://doi.org/10.48597/2DE7-5BDA +https://doi.org/10.48597/KW75-GK8X +https://doi.org/10.48597/23MM-RH6R +https://doi.org/10.48597/3P3J-4BGY +https://doi.org/10.48597/JDT2-QF8H +https://doi.org/10.48597/QNV7-324Y +https://doi.org/10.48597/MN3C-CUTY +https://doi.org/10.48597/VGNB-BNC6 +https://doi.org/10.48597/NMQE-T74J +https://doi.org/10.48597/S6TW-WHD8 +https://doi.org/10.48597/BD2E-BVHU +https://doi.org/10.48597/V2D6-WP7K +https://doi.org/10.48597/3AM8-9BJM +https://doi.org/10.48597/DHXP-AMM9 +https://doi.org/10.48597/5EFJ-3MFF +https://doi.org/10.48597/G49K-47QS +https://doi.org/10.48597/A4HQ-ZQFE +https://doi.org/10.48597/3VQC-Y2KQ +https://doi.org/10.48597/C43F-KZV5 +https://doi.org/10.48597/8TV5-3AFW +https://doi.org/10.48597/HRDU-DN3N +https://doi.org/10.48597/EF4N-ND6D +https://doi.org/10.48597/QEWE-XTY3 +https://doi.org/10.48597/QBSB-AQZF +https://doi.org/10.48597/H955-TEUB +https://doi.org/10.48597/56WS-3SKE +https://doi.org/10.48597/B3KZ-4MTF +https://doi.org/10.48597/RC72-84U3 +https://doi.org/10.48597/7UN6-MNXX +https://doi.org/10.48597/6D3A-TX5M +https://doi.org/10.48597/M5ZM-KSYB +https://doi.org/10.48597/NRGB-GTXS +https://doi.org/10.48597/59NY-4X43 +https://doi.org/10.48597/M6UB-KJSH +https://doi.org/10.48597/UTHM-SM2V +https://doi.org/10.48597/ZAWV-6J3V +https://doi.org/10.48597/EF68-UE8J +https://doi.org/10.48597/94BE-PGB7 +https://doi.org/10.48597/QKB9-ZUC2 +https://doi.org/10.48597/5JP5-84TS +https://doi.org/10.48597/BM2M-2P9Y +https://doi.org/10.48597/7UFY-5ZPG +https://doi.org/10.48597/ED6Q-HSPZ +https://doi.org/10.48597/WYVC-P8AZ +https://doi.org/10.48597/H5CP-M7BE +https://doi.org/10.48597/XY8G-2JSK +https://doi.org/10.48597/URDT-AXQA +https://doi.org/10.48597/YYS9-5E9P +https://doi.org/10.48597/KP2N-DMQ5 +https://doi.org/10.48597/2J8C-SJQQ +https://doi.org/10.48597/452R-FHJW +https://doi.org/10.48597/7AQG-T9DT +https://doi.org/10.48597/NCWX-ASG5 +https://doi.org/10.48597/32NG-F4SD +https://doi.org/10.48597/8AKU-U6KQ +https://doi.org/10.48597/HMDB-8P7S +https://doi.org/10.48597/W5QC-4EVW +https://doi.org/10.48597/ZUE2-FM97 +https://doi.org/10.48597/ZKNT-9ZWK +https://doi.org/10.48597/3UTE-QDKQ +https://doi.org/10.48597/DQ2B-FCH6 +https://doi.org/10.48597/82P3-E4P7 +https://doi.org/10.48597/UAB8-SK5Y +https://doi.org/10.48597/CJN9-GX3D +https://doi.org/10.48597/687E-6W3U +https://doi.org/10.48597/ZK9F-Y2NP +https://doi.org/10.48597/XGYD-8RN8 +https://doi.org/10.48597/V3DH-CJYK +https://doi.org/10.48597/QEJ2-TG7P +https://doi.org/10.48597/JZ78-C8GJ +https://doi.org/10.48597/AAHK-N5BD +https://doi.org/10.48597/DRKA-6R68 +https://doi.org/10.48597/F8JS-5N6U +https://doi.org/10.48597/JQ6V-QGNV +https://doi.org/10.48597/FZDD-GFEV +https://doi.org/10.48597/DZYQ-HCH7 +https://doi.org/10.48597/9WRB-T5ZG +https://doi.org/10.48597/5A7H-Z9MR +https://doi.org/10.48597/9HWR-XSE8 +https://doi.org/10.48597/G5AT-MZRJ +https://doi.org/10.48597/KCDE-8TRA +https://doi.org/10.48597/QAY8-QPJ5 +https://doi.org/10.48597/NTB5-S5G2 +https://doi.org/10.48597/P37K-GAXQ +https://doi.org/10.48597/T8RZ-NZ5M +https://doi.org/10.48597/TMFX-F2XZ +https://doi.org/10.48597/7QEX-EMWB +https://doi.org/10.48597/YHJD-MVHK +https://doi.org/10.48597/WS53-NRMN +https://doi.org/10.48597/5VUS-2J5B +https://doi.org/10.48597/MH2R-K82B +https://doi.org/10.48597/KTFS-JPWV +https://doi.org/10.48597/9JJA-2V7S +https://doi.org/10.48597/QSDV-KWHF +https://doi.org/10.48597/W7ZB-Q6NW +https://doi.org/10.48597/JHT8-36XP +https://doi.org/10.48597/WCYV-QB4X +https://doi.org/10.48597/6VSN-AAFQ +https://doi.org/10.48597/DJVR-6KSE +https://doi.org/10.48597/BD76-7Q47 +https://doi.org/10.48597/VY6T-W92P +https://doi.org/10.48597/4UVB-YMGC +https://doi.org/10.48597/DP6T-ZJ2A +https://doi.org/10.48597/7EAB-36GC +https://doi.org/10.48597/A9FV-82RT +https://doi.org/10.48597/7M87-3C5Q +https://doi.org/10.48597/3UVZ-85SF +https://doi.org/10.48597/E7E8-C92V +https://doi.org/10.48597/VK3Z-YM7A +https://doi.org/10.48597/VXKC-Z256 +https://doi.org/10.48597/9WV2-89WF +https://doi.org/10.48597/SEX8-SEBM +https://doi.org/10.48597/S236-VM3T +https://doi.org/10.48597/GZ5P-HT8E +https://doi.org/10.48597/ZJZA-84D2 +https://doi.org/10.48597/YPAA-XTTX +https://doi.org/10.48597/FKWT-PV8N +https://doi.org/10.48597/N7F2-4YET +https://doi.org/10.48597/KCKU-VRJZ +https://doi.org/10.48597/BBND-78XH +https://doi.org/10.48597/KB4T-E3PY +https://doi.org/10.48597/5R6H-JPKU +https://doi.org/10.48597/4B8H-CC95 +https://doi.org/10.48597/NM3J-XX7R +https://doi.org/10.48597/67RT-N4R7 +https://doi.org/10.48597/YE83-2CKX +https://doi.org/10.48597/43B6-3RYY +https://doi.org/10.48597/DENZ-S384 +https://doi.org/10.48597/XANJ-PMEN +https://doi.org/10.48597/S853-39X6 +https://doi.org/10.48597/7PEB-2853 +https://doi.org/10.48597/K8TX-MNBC +https://doi.org/10.48597/CAF4-KT3N +https://doi.org/10.48597/T2F4-5PP4 +https://doi.org/10.48597/DPE6-RT36 +https://doi.org/10.48597/QNDQ-BUAW +https://doi.org/10.48597/C7EE-QZ42 +https://doi.org/10.48597/B9YD-2GW8 +https://doi.org/10.48597/BGXM-ST5G +https://doi.org/10.48597/WF8A-UUNY +https://doi.org/10.48597/GH3X-AH7J +https://doi.org/10.48597/F72R-AB6B +https://doi.org/10.48597/QCQE-J62E +https://doi.org/10.48597/8M5Y-VVU2 +https://doi.org/10.48597/NXUD-S62C +https://doi.org/10.48597/5SDG-7A65 +https://doi.org/10.48597/6NQ9-AKEN +https://doi.org/10.48597/PK7J-AZ6B +https://doi.org/10.48597/Z2BQ-TE5C +https://doi.org/10.48597/N823-4USJ +https://doi.org/10.48597/T5RM-NNA9 +https://doi.org/10.48597/XNBG-A6JK +https://doi.org/10.48597/EUJQ-H283 +https://doi.org/10.48597/4CBX-ZWBX +https://doi.org/10.48597/BVFM-Z55C +https://doi.org/10.48597/Q9NK-RKWV +https://doi.org/10.48597/4JCC-KCAQ +https://doi.org/10.48597/W4TB-6NE4 +https://doi.org/10.48597/7X88-4F65 +https://doi.org/10.48597/F6D6-NG2J +https://doi.org/10.48597/B4KW-ZH24 +https://doi.org/10.48597/RF8Y-Q3ND +https://doi.org/10.48597/FD7U-5T3J +https://doi.org/10.48597/W7CK-YT8T +https://doi.org/10.48597/6S2W-8SCR +https://doi.org/10.48597/3FE3-6TEN +https://doi.org/10.48597/99QF-ZWJY +https://doi.org/10.48597/K6WN-5URW +https://doi.org/10.48597/ERQ9-C6SC +https://doi.org/10.48597/ZKW4-WM7G +https://doi.org/10.48597/QV3W-3HPZ +https://doi.org/10.48597/672Q-HEMW +https://doi.org/10.48597/KW4K-P7JJ +https://doi.org/10.48597/C5G5-X4Q6 +https://doi.org/10.48597/GRW3-3V9C +https://doi.org/10.48597/NAUK-5VAR +https://doi.org/10.48597/VVRA-9G6K +https://doi.org/10.48597/5RFC-VGME +https://doi.org/10.48597/F26T-2EPQ +https://doi.org/10.48597/UJG6-MR96 +https://doi.org/10.48597/EUQA-CT2X +https://doi.org/10.48597/QSF9-3EKS +https://doi.org/10.48597/EZXH-WHVU +https://doi.org/10.48597/MW5F-BUW6 +https://doi.org/10.48597/6832-7ZUN +https://doi.org/10.48597/4S7M-BX6C +https://doi.org/10.48597/GNWC-PTY3 +https://doi.org/10.48597/XM85-KYZG +https://doi.org/10.48597/ZW2F-9T6J +https://doi.org/10.48597/566G-WPYR +https://doi.org/10.48597/UGH6-JSYR +https://doi.org/10.48597/7TTN-9QGU +https://doi.org/10.48597/RM8D-WUQQ +https://doi.org/10.48597/DUTX-DSD8 +https://doi.org/10.48597/C7ZY-6NM6 +https://doi.org/10.48597/9JT6-T3PG +https://doi.org/10.48597/VF3Q-QFWZ +https://doi.org/10.48597/E7JF-JWRH +https://doi.org/10.48597/TFRZ-VRM8 +https://doi.org/10.48597/Y6BX-SYFB +https://doi.org/10.48597/GC43-WQCU +https://doi.org/10.48597/87M5-SQER +https://doi.org/10.48597/3H23-T64U +https://doi.org/10.48597/D5DP-CN69 +https://doi.org/10.48597/64F3-Z2C6 +https://doi.org/10.48597/P6CC-CC4Q +https://doi.org/10.48597/45DE-MZNZ +https://doi.org/10.48597/VHA2-XP5H +https://doi.org/10.48597/4FHS-NNGY +https://doi.org/10.48597/GTXM-RAPK +https://doi.org/10.48597/H3M7-WZQ5 +https://doi.org/10.48597/BCCT-FCJU +https://doi.org/10.48597/2TVC-MTGH +https://doi.org/10.48597/88GY-ZR48 +https://doi.org/10.48597/8855-6Y47 +https://doi.org/10.48597/DTUW-H6GF +https://doi.org/10.48597/RSXR-BQMW +https://doi.org/10.48597/7STY-TEGD +https://doi.org/10.48597/RJWP-2ST4 +https://doi.org/10.48597/4CTP-5GKS +https://doi.org/10.48597/NZGW-TFJ6 +https://doi.org/10.48597/WTB8-269Q +https://doi.org/10.48597/YSHW-YE4F +https://doi.org/10.48597/MTXK-K5GS +https://doi.org/10.48597/QDRQ-YQN4 +https://doi.org/10.48597/GSSY-TSGQ +https://doi.org/10.48597/JWAJ-92KR +https://doi.org/10.48597/HP9P-4553 +https://doi.org/10.48597/7QPQ-QS3U +https://doi.org/10.48597/8NG2-Z4AX +https://doi.org/10.48597/DZ9K-4BRT +https://doi.org/10.48597/9DXR-AQWH +https://doi.org/10.48597/HBJ5-6MCD +https://doi.org/10.48597/52US-FAV7 +https://doi.org/10.48597/45CD-EF6J +https://doi.org/10.48597/YUX9-8G8Q +https://doi.org/10.48597/K6CU-ZMN2 +https://doi.org/10.48597/6E36-9NKC +https://doi.org/10.48597/Q35W-RS6K +https://doi.org/10.48597/9MS3-J3DT +https://doi.org/10.48597/9T6X-4753 +https://doi.org/10.48597/4QXR-FGFC +https://doi.org/10.48597/7A35-HCKA +https://doi.org/10.48597/3FYG-5N2J +https://doi.org/10.48597/DGXM-Q9G7 +https://doi.org/10.48597/K3HT-N6Q6 +https://doi.org/10.48597/JA5Q-3DGZ +https://doi.org/10.48597/FY2N-E7HF +https://doi.org/10.48597/NJN6-X77R +https://doi.org/10.48597/PERR-Q5AW +https://doi.org/10.48597/3SC7-ZF7G +https://doi.org/10.48597/UA33-QXJN +https://doi.org/10.48597/KC45-8NMH +https://doi.org/10.48597/MJC9-VV7P +https://doi.org/10.48597/JBN7-UYY3 +https://doi.org/10.48597/CHKM-BFZM +https://doi.org/10.48597/D49N-QXMM +https://doi.org/10.48597/GAQG-HEWT +https://doi.org/10.48597/9C9R-B3US +https://doi.org/10.48597/MHBK-Y6FR +https://doi.org/10.48597/K57X-24YV +https://doi.org/10.48597/ZHYH-9HCU +https://doi.org/10.48597/7EZH-CJXJ +https://doi.org/10.48597/NN66-XD97 +https://doi.org/10.48597/5HB6-W59N +https://doi.org/10.48597/597M-39JX +https://doi.org/10.48597/GP9U-ZQVW +https://doi.org/10.48597/NCYJ-R2ZS +https://doi.org/10.48597/RU2T-2GJC +https://doi.org/10.48597/KAY5-KZMM +https://doi.org/10.48597/VMWC-AACT +https://doi.org/10.48597/SE9G-CCWP +https://doi.org/10.48597/C6Z9-BAXC +https://doi.org/10.48597/FHET-4GWW +https://doi.org/10.48597/Z9NT-DUP2 +https://doi.org/10.48597/3MC8-FPFG +https://doi.org/10.48597/7AU8-K4XZ +https://doi.org/10.48597/TGGR-YVTY +https://doi.org/10.48597/GKTB-HE4G +https://doi.org/10.48597/K352-7M6T +https://doi.org/10.48597/3W3Y-V8NJ +https://doi.org/10.48597/QFTV-YUJ5 +https://doi.org/10.48597/6AGQ-3ZV7 +https://doi.org/10.48597/Q2KP-XBHF +https://doi.org/10.48597/BCPF-G9T4 +https://doi.org/10.48597/DAGW-34S7 +https://doi.org/10.48597/H7E2-W5FY +https://doi.org/10.48597/89WY-5WPX +https://doi.org/10.48597/7EAV-UQMJ +https://doi.org/10.48597/PFVJ-YN9B +https://doi.org/10.48597/C327-FGZP +https://doi.org/10.48597/RQG5-VWJG +https://doi.org/10.48597/9KUT-VY3Q +https://doi.org/10.48597/S2C4-X6XG +https://doi.org/10.48597/VRD9-6F8M +https://doi.org/10.48597/8FPR-4CCM +https://doi.org/10.48597/P4QY-TYTQ +https://doi.org/10.48597/D3HY-VPVD +https://doi.org/10.48597/DVCD-4N8D +https://doi.org/10.48597/N56M-MVWS +https://doi.org/10.48597/TTN7-HGHJ +https://doi.org/10.48597/6REZ-6FWU +https://doi.org/10.48597/6MEX-2KTE +https://doi.org/10.48597/E7PP-ZG92 +https://doi.org/10.48597/RVA4-4P6U +https://doi.org/10.48597/TDKV-PG96 +https://doi.org/10.48597/KXN3-4MYR +https://doi.org/10.48597/XTXW-QJBA +https://doi.org/10.48597/HPPZ-EXKN +https://doi.org/10.48597/SN7T-PM8P +https://doi.org/10.48597/F4H4-76VQ +https://doi.org/10.48597/P5XW-9B3M +https://doi.org/10.48597/F9NS-UCKA +https://doi.org/10.48597/6C2Q-T4JN +https://doi.org/10.48597/G7YE-NH9C +https://doi.org/10.48597/QYKP-W7YA +https://doi.org/10.48597/JYYY-T5QU +https://doi.org/10.48597/5KDF-2DZE +https://doi.org/10.48597/F9J7-JY7M +https://doi.org/10.48597/E9GG-5YXQ +https://doi.org/10.48597/4GX6-ZV9F +https://doi.org/10.48597/XNZH-33R2 +https://doi.org/10.48597/J6MD-UK88 +https://doi.org/10.48597/RCNA-A6AZ +https://doi.org/10.48597/NUU6-ZBY2 +https://doi.org/10.48597/5SMR-4FU7 +https://doi.org/10.48597/5FM6-U5GW +https://doi.org/10.48597/B3KJ-XTTH +https://doi.org/10.48597/RJQY-KSH2 +https://doi.org/10.48597/QSNH-GMQV +https://doi.org/10.48597/TT72-AVJK +https://doi.org/10.48597/RYBJ-NCDB +https://doi.org/10.48597/TS35-FKHW +https://doi.org/10.48597/JCKQ-9XTT +https://doi.org/10.48597/94E5-HNR6 +https://doi.org/10.48597/8FCS-U32X +https://doi.org/10.48597/E83D-GG5Z +https://doi.org/10.48597/VBDW-ZSNH +https://doi.org/10.48597/EMD4-QBSZ +https://doi.org/10.48597/RFYE-QQRH +https://doi.org/10.48597/GR9J-CDTJ +https://doi.org/10.48597/7NC9-9CNU +https://doi.org/10.48597/NCPR-PZC9 +https://doi.org/10.48597/2PYP-HD4F +https://doi.org/10.48597/KQM8-M45N +https://doi.org/10.48597/VNPC-AXX7 +https://doi.org/10.48597/EK3K-XMJW +https://doi.org/10.48597/JX7K-VYBZ +https://doi.org/10.48597/3FE3-28W9 +https://doi.org/10.48597/TGF3-RP2B +https://doi.org/10.48597/V9CZ-22A2 +https://doi.org/10.48597/JGSQ-4XZE +https://doi.org/10.48597/844S-3K8K +https://doi.org/10.48597/FT9G-P2RQ +https://doi.org/10.48597/F7AS-8FC7 +https://doi.org/10.48597/45Y9-84DR +https://doi.org/10.48597/QEBR-A8PS +https://doi.org/10.48597/8TXX-SQYV +https://doi.org/10.48597/XR25-EHEK +https://doi.org/10.48597/WYQQ-94WQ +https://doi.org/10.48597/35TB-4BC9 +https://doi.org/10.48597/EY9U-FR5H +https://doi.org/10.48597/7V4Q-VHCE +https://doi.org/10.48597/3F6N-VK5V +https://doi.org/10.48597/5SZ7-SCJ2 +https://doi.org/10.48597/FC4M-KUSX +https://doi.org/10.48597/Y2BS-VJTN +https://doi.org/10.48597/WJZ7-82AC +https://doi.org/10.48597/EPB5-8YZW +https://doi.org/10.48597/QW83-NV4T +https://doi.org/10.48597/NQ4W-ZHKB +https://doi.org/10.48597/9A8G-98Q3 +https://doi.org/10.48597/VABD-GNZ9 +https://doi.org/10.48597/K2VV-YCME +https://doi.org/10.48597/JYYR-R6S9 +https://doi.org/10.48597/98NW-YHP4 +https://doi.org/10.48597/EAMN-8EWU +https://doi.org/10.48597/2XAK-MQX6 +https://doi.org/10.48597/KZJN-NDUB +https://doi.org/10.48597/J8U5-ECSB +https://doi.org/10.48597/7JX9-F86F +https://doi.org/10.48597/JAM2-3SCG +https://doi.org/10.48597/M8P7-2KPM +https://doi.org/10.48597/7H2S-NBDQ +https://doi.org/10.48597/WNQ7-QYZC +https://doi.org/10.48597/MJX6-3MJR +https://doi.org/10.48597/YER7-CKFQ +https://doi.org/10.48597/EKKD-JGSA +https://doi.org/10.48597/UW7Z-YHB7 +https://doi.org/10.48597/GPP9-5TQU +https://doi.org/10.48597/VR3Y-KJMH +https://doi.org/10.48597/SV2W-758J +https://doi.org/10.48597/SJ47-NDCV +https://doi.org/10.48597/N4M9-GZWB +https://doi.org/10.48597/P3K4-FWR9 +https://doi.org/10.48597/A7SD-ZF4V +https://doi.org/10.48597/VN3R-J4WF +https://doi.org/10.48597/DFRA-EU3Y +https://doi.org/10.48597/KHST-4FXB +https://doi.org/10.48597/HFHS-WUB3 +https://doi.org/10.48597/GZYR-VVNE +https://doi.org/10.48597/GZQ6-3ZKX +https://doi.org/10.48597/B58J-98Z5 +https://doi.org/10.48597/MQPR-HVV9 +https://doi.org/10.48597/QXV6-63E9 +https://doi.org/10.48597/2NBT-6MMX +https://doi.org/10.48597/KX67-TSYU +https://doi.org/10.48597/FHZE-PNUB +https://doi.org/10.48597/DF5W-XSHY +https://doi.org/10.48597/HR7T-A3ZF +https://doi.org/10.48597/4QHA-8EF6 +https://doi.org/10.48597/9EKW-3V9C +https://doi.org/10.48597/CGKW-5E36 +https://doi.org/10.48597/97VX-F2WK +https://doi.org/10.48597/ZYV8-AMBH +https://doi.org/10.48597/UJEV-JU5B +https://doi.org/10.48597/2YTH-8XGE +https://doi.org/10.48597/XPNA-8PS5 +https://doi.org/10.48597/FHM4-2C3P +https://doi.org/10.48597/M2QD-83F3 +https://doi.org/10.48597/JTHV-JQU8 +https://doi.org/10.48597/YETV-5CYE +https://doi.org/10.48597/U5TT-J9JX +https://doi.org/10.48597/3DU5-U6BQ +https://doi.org/10.48597/XF6W-UA7P +https://doi.org/10.48597/VG2Q-KHAH +https://doi.org/10.48597/N3JT-ZGUQ +https://doi.org/10.48597/5G23-KRRY +https://doi.org/10.48597/2M24-J8EF +https://doi.org/10.48597/8S3U-3YTH +https://doi.org/10.48597/6V44-5HGX +https://doi.org/10.48597/3U4E-J94Y +https://doi.org/10.48597/3W3Y-XAAF +https://doi.org/10.48597/64YT-Y99F +https://doi.org/10.48597/2MMK-TKAP +https://doi.org/10.48597/PW3S-7FKH +https://doi.org/10.48597/GJZ6-RHEX +https://doi.org/10.48597/DNMS-AVKC +https://doi.org/10.48597/XWCU-R265 +https://doi.org/10.48597/YSHN-4QH4 +https://doi.org/10.48597/4PEK-KYYC +https://doi.org/10.48597/X5XE-DJ27 +https://doi.org/10.48597/R8PK-R34G +https://doi.org/10.48597/7C79-4QUW +https://doi.org/10.48597/E9ZH-YXJP +https://doi.org/10.48597/SNVF-GZST +https://doi.org/10.48597/QFR7-7FUD +https://doi.org/10.48597/VMJF-N3DF +https://doi.org/10.48597/YUR5-NWXH +https://doi.org/10.48597/DM2S-2UMC +https://doi.org/10.48597/XEBA-7B49 +https://doi.org/10.48597/NS38-VVKD +https://doi.org/10.48597/3945-4NBA +https://doi.org/10.48597/95JM-3P3T +https://doi.org/10.48597/T9H7-N8RC +https://doi.org/10.48597/K3EB-EVME +https://doi.org/10.48597/MUSD-B7H4 +https://doi.org/10.48597/FXZ9-X679 +https://doi.org/10.48597/84NH-3X9F +https://doi.org/10.48597/H223-WFQE +https://doi.org/10.48597/ARQC-X89S +https://doi.org/10.48597/KPSF-HX5T +https://doi.org/10.48597/FV49-CTR3 +https://doi.org/10.48597/T56A-V6TZ +https://doi.org/10.48597/S5AF-JWXM +https://doi.org/10.48597/P6AU-JTDX +https://doi.org/10.48597/CFMV-VAS3 +https://doi.org/10.48597/CAKE-TAZC +https://doi.org/10.48597/Z469-Y4NR +https://doi.org/10.48597/S54Y-7H7Q +https://doi.org/10.48597/Z9N8-S22M +https://doi.org/10.48597/T3UY-7PDY +https://doi.org/10.48597/3CCK-2ZD9 +https://doi.org/10.48597/ZU4R-X6B7 +https://doi.org/10.48597/Y6ZH-PX7A +https://doi.org/10.48597/VFS5-4FXD +https://doi.org/10.48597/RYVM-VJQ7 +https://doi.org/10.48597/X69E-4F22 +https://doi.org/10.48597/J2EF-8AKQ +https://doi.org/10.48597/FBX8-WVNT +https://doi.org/10.48597/JNRR-HZVF +https://doi.org/10.48597/UTUZ-H896 +https://doi.org/10.48597/K55W-8FAA +https://doi.org/10.48597/X77Y-QKVJ +https://doi.org/10.48597/QQJY-Q67A +https://doi.org/10.48597/3DKM-KQ2Z +https://doi.org/10.48597/NCJR-N97Q +https://doi.org/10.48597/8ANZ-86KN +https://doi.org/10.48597/K3JS-Y3EU +https://doi.org/10.48597/BHQT-HKQK +https://doi.org/10.48597/A4VU-FMYU +https://doi.org/10.48597/USTF-3BVU +https://doi.org/10.48597/VB4E-U5NP +https://doi.org/10.48597/SHYV-UKNR +https://doi.org/10.48597/J3V2-4UHF +https://doi.org/10.48597/D8KA-GF32 +https://doi.org/10.48597/AP97-RYCS +https://doi.org/10.48597/KYTG-U5M7 +https://doi.org/10.48597/33NS-76H2 +https://doi.org/10.48597/6HEZ-J62T +https://doi.org/10.48597/PPPM-6NHF +https://doi.org/10.48597/FT7D-6HZJ +https://doi.org/10.48597/HNYV-HQEQ +https://doi.org/10.48597/8ZS8-9PN8 +https://doi.org/10.48597/8H7S-JFC6 +https://doi.org/10.48597/SGJX-HVJV +https://doi.org/10.48597/6JAM-PA9C +https://doi.org/10.48597/WRJ5-4GSZ +https://doi.org/10.48597/UBQ5-8RYX +https://doi.org/10.48597/PWR2-G693 +https://doi.org/10.48597/T7Z7-U38U +https://doi.org/10.48597/5WAT-ZS6N +https://doi.org/10.48597/JW9T-VPBS +https://doi.org/10.48597/DQH2-GP5D +https://doi.org/10.48597/D9K7-AU4U +https://doi.org/10.48597/5WT7-Q3TJ +https://doi.org/10.48597/Q268-7RD3 +https://doi.org/10.48597/5WGF-45XQ +https://doi.org/10.48597/6K6Z-R5ZT +https://doi.org/10.48597/85FM-MCW4 +https://doi.org/10.48597/ZA7C-QAT5 +https://doi.org/10.48597/WT7Z-85YQ +https://doi.org/10.48597/7DCT-MAT2 +https://doi.org/10.48597/9C5A-6FVB +https://doi.org/10.48597/V535-R32A +https://doi.org/10.48597/RRUW-UKD4 +https://doi.org/10.48597/C3J7-EWQ5 +https://doi.org/10.48597/5FUF-Y52P +https://doi.org/10.48597/YZ66-5KX2 +https://doi.org/10.48597/GA59-WCA5 +https://doi.org/10.48597/ZQCR-SUE2 +https://doi.org/10.48597/4X66-GS65 +https://doi.org/10.48597/E56U-TUT8 +https://doi.org/10.48597/Z9XE-RXZ5 +https://doi.org/10.48597/XJ75-THHN +https://doi.org/10.48597/V2TD-EME8 +https://doi.org/10.48597/WRP3-29GW +https://doi.org/10.48597/FDFZ-BZ55 +https://doi.org/10.48597/UPU9-ATNF +https://doi.org/10.48597/A37P-5U32 +https://doi.org/10.48597/QNCQ-9MJD +https://doi.org/10.48597/8ZRT-DVWW +https://doi.org/10.48597/4Z68-BF4B +https://doi.org/10.48597/UGUX-XR9Y +https://doi.org/10.48597/SJ6Z-QBQK +https://doi.org/10.48597/K267-6BW3 +https://doi.org/10.48597/EY6X-C2MY +https://doi.org/10.48597/QGCU-K8NJ +https://doi.org/10.48597/N7S8-HY3S +https://doi.org/10.48597/2KD3-F6B8 +https://doi.org/10.48597/PUQQ-3E43 +https://doi.org/10.48597/GFA3-J43U +https://doi.org/10.48597/XSHH-B35K +https://doi.org/10.48597/3748-E6MJ +https://doi.org/10.48597/HVMX-BYET +https://doi.org/10.48597/ADSF-JUHS +https://doi.org/10.48597/MFY4-F4CX +https://doi.org/10.48597/KJFT-HUXP +https://doi.org/10.48597/QVBR-4N3K +https://doi.org/10.48597/NUGT-28AP +https://doi.org/10.48597/TVJ2-TYGV +https://doi.org/10.48597/VMRK-VC7X +https://doi.org/10.48597/JP4N-NQPP +https://doi.org/10.48597/BMWQ-XJN2 +https://doi.org/10.48597/WF5W-BRX7 +https://doi.org/10.48597/B8M5-SXJR +https://doi.org/10.48597/HKNS-PUQR +https://doi.org/10.48597/Z24E-2SN3 +https://doi.org/10.48597/YBZZ-PDYC +https://doi.org/10.48597/CMXW-986J +https://doi.org/10.48597/7NCQ-Z9RR +https://doi.org/10.48597/SWJ9-P8F8 +https://doi.org/10.48597/VS4M-98F5 +https://doi.org/10.48597/PU5T-NP9A +https://doi.org/10.48597/NMH6-SBYT +https://doi.org/10.48597/KMEG-CXCE +https://doi.org/10.48597/HC4T-N2Q6 +https://doi.org/10.48597/V6ER-Z7DK +https://doi.org/10.48597/SQJ2-TZDC +https://doi.org/10.48597/FHF2-XXQM +https://doi.org/10.48597/A7TM-DGZY +https://doi.org/10.48597/SM5B-YZR2 +https://doi.org/10.48597/XKGW-XVHJ +https://doi.org/10.48597/YD4A-HZ7E +https://doi.org/10.48597/UZDV-6V6D +https://doi.org/10.48597/DJRB-EJ8N +https://doi.org/10.48597/G6Q8-QSVV +https://doi.org/10.48597/JBVR-TJ4S +https://doi.org/10.48597/3ZDY-MX8M +https://doi.org/10.48597/E99X-2VDW +https://doi.org/10.48597/SQU7-BZNW +https://doi.org/10.48597/96J3-9JBB +https://doi.org/10.48597/ATKV-69FW +https://doi.org/10.48597/YTHH-2CQV +https://doi.org/10.48597/MCBQ-KWJK +https://doi.org/10.48597/Z9HN-4H2H +https://doi.org/10.48597/J9MZ-SBY9 +https://doi.org/10.48597/JM38-U42W +https://doi.org/10.48597/DT72-UK2B +https://doi.org/10.48597/T36D-D38R +https://doi.org/10.48597/JTJX-KXCP +https://doi.org/10.48597/HQB4-4QHM +https://doi.org/10.48597/T5PT-3BYW +https://doi.org/10.48597/7WVE-K6RF +https://doi.org/10.48597/BBPJ-ZFDY +https://doi.org/10.48597/JRUK-69FC +https://doi.org/10.48597/P8J4-EY26 +https://doi.org/10.48597/X85K-XB88 +https://doi.org/10.48597/ZPCC-4W84 +https://doi.org/10.48597/AM2Y-4B7X +https://doi.org/10.48597/YKCC-8BFD +https://doi.org/10.48597/5X7P-E4YF +https://doi.org/10.48597/T3GJ-YVJV +https://doi.org/10.48597/484A-4S7Y +https://doi.org/10.48597/SJEB-YXTZ +https://doi.org/10.48597/CM5E-XNUW +https://doi.org/10.48597/3HPY-7TR6 +https://doi.org/10.48597/5YZH-RWYM +https://doi.org/10.48597/NEVE-4RZY +https://doi.org/10.48597/N5A7-284B +https://doi.org/10.48597/YXRK-QA8P +https://doi.org/10.48597/68UZ-NW6T +https://doi.org/10.48597/Z377-VAGT +https://doi.org/10.48597/22K7-4A4Y +https://doi.org/10.48597/GUTS-N9Y5 +https://doi.org/10.48597/FZAN-4NJV +https://doi.org/10.48597/8DJX-CYJ6 +https://doi.org/10.48597/4XB6-DFZ3 +https://doi.org/10.48597/YU8U-3RSW +https://doi.org/10.48597/Y243-5BWY +https://doi.org/10.48597/T9X3-E5QU +https://doi.org/10.48597/4U8F-MXPW +https://doi.org/10.48597/HSRZ-8QEY +https://doi.org/10.48597/ADAG-C5J4 +https://doi.org/10.48597/2NDR-VQSY +https://doi.org/10.48597/QYFM-ZFB7 +https://doi.org/10.48597/EW43-ZARN +https://doi.org/10.48597/THBX-9MU2 +https://doi.org/10.48597/ZHTX-P2VE +https://doi.org/10.48597/9RJJ-AM6K +https://doi.org/10.48597/9RW6-AG9G +https://doi.org/10.48597/26PP-Y3EE +https://doi.org/10.48597/GWZV-FDMN +https://doi.org/10.48597/8XCW-ZZTH +https://doi.org/10.48597/HFA2-E5WK +https://doi.org/10.48597/PTZ7-WTXJ +https://doi.org/10.48597/C8QB-N28A +https://doi.org/10.48597/YM7B-PYRW +https://doi.org/10.48597/8QT6-SZZ2 +https://doi.org/10.48597/CU4B-QTE4 +https://doi.org/10.48597/UJQJ-VRWF +https://doi.org/10.48597/GT87-FH2C +https://doi.org/10.48597/R3RC-U6E4 +https://doi.org/10.48597/BCYJ-PHHC +https://doi.org/10.48597/RRW7-ME97 +https://doi.org/10.48597/GFWC-KRT2 +https://doi.org/10.48597/ZX2K-6G7Z +https://doi.org/10.48597/UWKV-C89N +https://doi.org/10.48597/WBPY-XNYW +https://doi.org/10.48597/PSMN-WX5Z +https://doi.org/10.48597/7JBA-VG98 +https://doi.org/10.48597/4KHA-AWGB +https://doi.org/10.48597/FMSR-MW3A +https://doi.org/10.48597/BVZQ-Z75D +https://doi.org/10.48597/D4UR-2XTZ +https://doi.org/10.48597/UK2T-6KWF +https://doi.org/10.48597/SYPZ-XBEA +https://doi.org/10.48597/KGNZ-AU58 +https://doi.org/10.48597/B2EC-JPDG +https://doi.org/10.48597/R7Z9-GV4W +https://doi.org/10.48597/2QCH-D4DR +https://doi.org/10.48597/DUAD-4MZW +https://doi.org/10.48597/69KT-ACEB +https://doi.org/10.48597/ZFFF-B8C5 +https://doi.org/10.48597/ATEN-2UU3 +https://doi.org/10.48597/9YR4-TMJZ +https://doi.org/10.48597/5SEK-F7FQ +https://doi.org/10.48597/8M8Y-53KQ +https://doi.org/10.48597/8A4H-VQXA +https://doi.org/10.48597/KGVC-RYY7 +https://doi.org/10.48597/DEDK-38TX +https://doi.org/10.48597/EQ5K-Y3KS +https://doi.org/10.48597/VBSF-TWBE +https://doi.org/10.48597/PPW8-F2YE +https://doi.org/10.48597/TSM9-ZHG6 +https://doi.org/10.48597/5UUM-ZGXB +https://doi.org/10.48597/3ARU-QMZC +https://doi.org/10.48597/9ZXD-BUC6 +https://doi.org/10.48597/XHQQ-ASCW +https://doi.org/10.48597/NSVE-3RNN +https://doi.org/10.48597/WK4E-86CP +https://doi.org/10.48597/RT5X-9J7T +https://doi.org/10.48597/DHQ5-NDR7 +https://doi.org/10.48597/X7TE-6GTM +https://doi.org/10.48597/Z33D-KHHP +https://doi.org/10.48597/YJGC-XU7E +https://doi.org/10.48597/6643-9S7B +https://doi.org/10.48597/WGNV-S92T +https://doi.org/10.48597/XB7X-MH2Q +https://doi.org/10.48597/QA8E-9WTF +https://doi.org/10.48597/4BDM-M9CN +https://doi.org/10.48597/69BV-MZHM +https://doi.org/10.48597/YMTP-HQ2X +https://doi.org/10.48597/TSPV-8KGG +https://doi.org/10.48597/6BRN-9VEQ +https://doi.org/10.48597/MXGD-RSSH +https://doi.org/10.48597/QF3S-SKUE +https://doi.org/10.48597/43BC-DAEY +https://doi.org/10.48597/2TMB-BTGV +https://doi.org/10.48597/5DWP-C7B4 +https://doi.org/10.48597/E3SG-6BTD +https://doi.org/10.48597/4T63-GEZ8 +https://doi.org/10.48597/CQUN-FAY6 +https://doi.org/10.48597/N6A4-8VGN +https://doi.org/10.48597/8DE9-SCJK +https://doi.org/10.48597/UQ2Q-FSK4 +https://doi.org/10.48597/MSZG-RCZT +https://doi.org/10.48597/G84E-MPQG +https://doi.org/10.48597/CYB3-5Q3Q +https://doi.org/10.48597/RS65-R6YE +https://doi.org/10.48597/5EUH-H8AV +https://doi.org/10.48597/YR2G-K57F +https://doi.org/10.48597/Q2EF-XWFA +https://doi.org/10.48597/RDJ6-VQJ4 +https://doi.org/10.48597/C6NK-S5TT +https://doi.org/10.48597/ZJAY-X6RM +https://doi.org/10.48597/FQAE-85NZ +https://doi.org/10.48597/M8X6-23P8 +https://doi.org/10.48597/AVEH-J5HX +https://doi.org/10.48597/R5T2-BQ47 +https://doi.org/10.48597/G4EB-93BJ +https://doi.org/10.48597/NZZG-HF3N +https://doi.org/10.48597/5KKZ-DCK4 +https://doi.org/10.48597/MA2X-Q523 +https://doi.org/10.48597/A4FJ-9AYD +https://doi.org/10.48597/7H28-VBNJ +https://doi.org/10.48597/NVJA-NWRD +https://doi.org/10.48597/Z43R-ZCGR +https://doi.org/10.48597/89P9-4NUX +https://doi.org/10.48597/D7MJ-T5FG +https://doi.org/10.48597/QUNQ-64BD +https://doi.org/10.48597/GZXC-2W83 +https://doi.org/10.48597/EBQ2-49AY +https://doi.org/10.48597/Z9CQ-XTKT +https://doi.org/10.48597/A3EE-WFNP diff --git a/download_scripts/EBAS_download.py b/download_scripts/EBAS_download.py new file mode 100644 index 0000000000000000000000000000000000000000..c87bbe3b5fe936d6bfef3e8a075999c8b2710461 --- /dev/null +++ b/download_scripts/EBAS_download.py @@ -0,0 +1,60 @@ +import requests +import time +from datetime import date +from datetime import timedelta +import os.path +import urllib +import pandas as pd + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'https://thredds.nilu.no/thredds/fileServer/ebas_doi/{}/{}/{}/{}.nc' + + if mode == 'all': + bdate = date(2013, 12, 1) + edate = date.today() + + os.makedirs('{}/EBAS/original_files/{}/'.format(dl_root,version), exist_ok=True) + download_location = dl_root+'/EBAS/original_files/'+version+'/{}.nc' + + elif mode == 'nrt': + bdate = start + edate = stop + download_location = dl_root+'/EBAS/original_files/nrt/{}.nc' + + else: + print('time mode inapplicable') + + + # import DOIs of datasets + dois = pd.read_csv('EBAS_doilist.txt', header=None, names=["DOI"]) + + # download + for index, doi in dois.iterrows(): + doi_string = doi.loc["DOI"][-9:] + url = base_url.format(doi_string[0:2], doi_string[2:4], doi_string[5:7], doi_string) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format(doi_string), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, download_location.format(doi_string)) + print('Downloaded DOI {}'.format(doi_string)) + errcode = r.status_code + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) \ No newline at end of file diff --git a/download_scripts/EEA_AQ_eReporting_download.py b/download_scripts/EEA_AQ_eReporting_download.py new file mode 100644 index 0000000000000000000000000000000000000000..5fa223539479f1aa399bc02e318dca77eaca947a --- /dev/null +++ b/download_scripts/EEA_AQ_eReporting_download.py @@ -0,0 +1,361 @@ +# use API +import requests +import pandas as pd + +import os +import sys +import logging +import urllib +import datetime as dt +import json +import csv +from pathlib import Path +from datetime import date +from datetime import timedelta +import zipfile +import time +import shutil + +from selenium import webdriver +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC +from selenium.common.exceptions import TimeoutException +from selenium.common.exceptions import WebDriverException +from bs4 import BeautifulSoup + + +class eea_ereporting_api(object): + """defines and configures API to query the eea database""" + + def __init__(self, ): + self.logger = logging.getLogger(__file__) + self.url_api = "https://eeadmz1-downloads-api-appservice.azurewebsites.net/" + self.headers = {'content-type': 'application/json', 'accept': 'application/json'} + + self.parquet_files = 'ParquetFile' + self.get_countries = 'Country' + self.get_cities = 'City' + self.components = 'Property' + + return + + def get_parquet_files(self, max_time_per_dl, n_max_tries, ccode, city, pcode, dataset): + """build a query to return data in parquet files""" + query = urllib.parse.urljoin(self.url_api, self.parquet_files) + request_body = {'countries': [ccode], 'cities': [city], 'properties': [pcode], 'datasets':[dataset], 'source': 'Api'} + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + response = requests.post(url=query, json=request_body, timeout=max_time_per_dl) + + if response.status_code == 200: + return response.content + errcode = response.status_code + else: + # try again + print('Response error {}, attempt {}'.format(response.status_code, n_tries)) + errcode = response.status_code + n_tries += 1 + + if n_tries == n_max_tries: + print('Failed downloading {}_{}_{}_{} {} times in {} seconds, error code {}'.format(ccode, city, pcode, dataset, n_tries, max_time_per_dl, errcode)) + return None + + + def get_countrycodes_in_list(self, ): + """build a query to return country codes""" + query = urllib.parse.urljoin(self.url_api, self.get_countries) + response = requests.get(url=query, data='') + if response.status_code == 200: + return response.text + else: + return print('Response error {}'.format(response.status_code)) + + def get_components(self, ): + """build a query to return components""" + query = urllib.parse.urljoin(self.url_api, self.components) + response = requests.get(url=query, data='') + if response.status_code == 200: + return response.text + else: + return print('Response error {}'.format(response.status_code)) + max_time_per_dl, n_max_tries + + def get_cities_in_list(self, ccode): + """build a query to return cities""" + query = urllib.parse.urljoin(self.url_api, self.get_cities) + request_body = [ccode] + response = requests.post(url=query, json=request_body) + if response.status_code == 200: + return response.content + else: + return print('Response error {}'.format(response.status_code)) + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + # from October 2024 the API will have option to choose desired time period; until then, we will use https://discomap.eea.europa.eu/map/fme/AirQualityUTDExport.htm for nrt + + if mode == 'all': + streams = ['E1a', 'E2a', 'Airbase'] + + elif mode == 'nrt': + version = mode + streams = ['E2a'] # this means E2a: data from 2023-01-01 until present + else: + print('time mode inapplicable') + + countries = json.loads(eea_ereporting_api().get_countrycodes_in_list()) + #countries = [{'countryCode': 'AT'}] + components = json.loads(eea_ereporting_api().get_components()) + + if mode == 'all': # for now API not used for nrt; from October 2024 it will be + + for stream in streams: + # choose the dataset + if stream == 'E1a': + dataset = 2 # this means E1a: data from 2013 until 2022 + elif stream == 'E2a': + dataset = 1 # this means E2a: data from 2023-01-01 until present + elif stream == 'Airbase': + dataset = 3 # this means Airbase, old data until 2013 + else: + print("Invalid data stream") + continue + print("Download started from {}".format(stream)) + + for country in countries: + ccode = country['countryCode'] + + cities = json.loads(eea_ereporting_api().get_cities_in_list(ccode)) + for city in cities: + cityname = city['cityName'] + + for component in components: # downloading ALL components available, not needed for GHOST + pcode = component['notation'].replace(' ', '_') + + data = eea_ereporting_api().get_parquet_files(max_time_per_dl, n_max_tries, ccode, cityname, pcode, dataset) + if data == None: + continue # move to next component + else: + os.makedirs('{}/EEA_AQ_eReporting/original_files/{}/{}/{}/'.format(dl_root,version, stream, pcode), exist_ok=True) + download_location = '{}/EEA_AQ_eReporting/original_files/{}/{}/{}/'.format(dl_root,version, stream, pcode) + filename = '{}_{}_{}.zip'.format(ccode, cityname, pcode) + + with open(download_location+filename, 'wb') as outfile: + outfile.write(data) + print("Downloaded {}".format(filename)) + + with zipfile.ZipFile(download_location+filename, 'r') as zip_ref: + zip_ref.extractall(download_location) + os.remove(download_location+filename) + + # list all parquetfiles + parquets = os.listdir(download_location+'/{}/'.format(stream)) + for parquet in parquets: + df = pd.read_parquet(download_location+'/{}/{}'.format(stream, parquet)) + df.to_csv(download_location+'/{}.csv'.format(parquet[:-8]), index=None) + shutil.rmtree(download_location+'/{}'.format(stream)) + print("Conversion to csv done!") + + elif mode == 'nrt': + # download last 48 hours of available data from https://discomap.eea.europa.eu/map/fme/AirQualityUTDExport.htm + #Python sample for download of air quality up-to-date files + #The Pyton script shows a simple sample how the pre-processed CSV files can be downloaded. + #EEA takes no responsibility of the script and the code is provided 'as is', without warranty of any kind. + today = date.today().strftime('%Y%m%d') + os.makedirs('{}/EEA_AQ_eReporting/original_files/nrt/discomap/{}/'.format(dl_root,today), exist_ok=True) + + # Set download url (updated 02/05/2024) + ServiceUrl = "https://eeadmz1batchservice02.blob.core.windows.net/airquality-e-extract" + + inventory_url = ' https://eeadmz1batchservice02.blob.core.windows.net/airquality-e-extract/Inventory.csv' + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(inventory_url, timeout=max_time_per_dl) + if r.status_code == 200: + urllib.request.urlretrieve(inventory_url, '{}/EEA_AQ_eReporting/original_files/nrt/inventory_disco.csv'.format(dl_root)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(inventory_url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(inventory_url, n_tries, max_time_per_dl, errcode)) + + inventory = pd.read_csv( '{}/EEA_AQ_eReporting/original_files/nrt/inventory_disco.csv'.format(dl_root), header=0) + + # Countries to download + # Note: List is not complete + #countries = ['SE','DE','ES'] + + # Pollutant to be downloaded + #pollutants = ['C6H6','PM10','CO','NO2','SO2','O3','PM2.5'] + + for index, row in inventory.iterrows(): + country = row['country'] + pollutant = row['pollutant'].replace(' ', '') + + fileName = '{}/EEA_AQ_eReporting/original_files/nrt/discomap/{}/{}_{}.csv'.format(dl_root,today, country, pollutant) + downloadFile = '%s/%s_%s.csv' % (ServiceUrl, country, pollutant) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(downloadFile, timeout=max_time_per_dl) + if r.status_code == 200: + urllib.request.urlretrieve(downloadFile, fileName) + print("Downloaded {}".format(downloadFile)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(downloadFile)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(downloadFile, n_tries, max_time_per_dl, errcode)) + + # print('Downloading: %s' % downloadFile ) + # file = requests.get(downloadFile).content + # with open(fileName, 'wb') as output: + # output.write(file) + + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://discomap.eea.europa.eu/App/AQViewer/index.html?fqn=Airquality_Dissem.b2g.measurements' + download_location = '{}/EEA_AQ_eReporting/metadata/{}/network_provided/'.format(dl_root,version) + today = date.today() + + n_tries = 0 + errcode = 999 + metadata_new = {} + while (n_tries < n_max_tries) and (errcode != 200): + try: + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(baseurl) + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_element_located((By.XPATH, '//span[@class="nomobile"][text()="Download CSV"]/..'))) # wait till loaded + time.sleep(10) + + button = driver.find_element(By.XPATH, '//span[@class="nomobile"][text()="Download CSV"]/..') # find parent of span element "Download CSV" + button.click() #download + + while not os.path.exists(download_location+'DataExtract.csv.zip'): + time.sleep(1) + + if os.path.isfile(download_location+'DataExtract.csv.zip'): + print('metadata download successful') + + # unzip + with zipfile.ZipFile(download_location+'DataExtract.csv.zip', 'r') as zip_ref: + zip_ref.extractall(download_location) + + os.remove(download_location+'DataExtract.csv.zip') + + driver.close() + errcode = 200 + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + if n_tries == n_max_tries: + print('Failed downloading EEA_AQ_eReporting metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + print('done') + + """ + # create json from original metadata file ===================================================================================== + json_metadata = {} + with open('{}/EEA_AQ_eReporting/metadata/{}/network_provided/DataExtract.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['Air Quality Station EoI Code']+'_'+row['Sampling Point Id']+'_'+row['Process Id'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/EEA_AQ_eReporting/metadata/{}/processed/EEA_AQ_eReporting_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + """ + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+"DataExtract.csv", encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + print('hola') + for row in csv_filedata: + key = row['Air Quality Station EoI Code']+'_'+row['Sampling Point Id']+'_'+row['Process Id'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + print('hola2') + + with open('{}/EEA_AQ_eReporting/metadata/{}/network_provided/EEA_AQ_eReporting_META_{}.json'.format(dl_root,version, today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata_now, indent=4, ensure_ascii=False)) + + + # read standardised file to compare! + with open('{}/EEA_AQ_eReporting/metadata/{}/processed/EEA_AQ_eReporting_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/EEA_AQ_eReporting/metadata/{}/processed/EEA_AQ_eReporting_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + diff --git a/download_scripts/GHOST_standards.py b/download_scripts/GHOST_standards.py new file mode 100755 index 0000000000000000000000000000000000000000..f852daa938ea5f2c885e00eb6310c981e5151c2b --- /dev/null +++ b/download_scripts/GHOST_standards.py @@ -0,0 +1,5125 @@ +import numpy as np + +###--------------------------------------------------------------------------------------------------### +###MEASURED PARAMETER STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary with details pertaining to standardised measured parameters + +standard_parameters ={ +#GAS +'O3': {'long_parameter_name':'ozone', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':400.0, 'extreme_upper_monthly_median':120.0, 'aqs_code':['44201'], 'airbase_name':'Ozone (air)', 'airbase_code':'00007', 'miteco_code':'14', 'ebas_parameter_name':['ozone'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['O3'], 'castnet_parameter_name':'OZONE', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['06','42'], 'japan_nies_name':['OX','O3'], 'uk_air_name':['Ozone'], 'chemical_formula':'O3', 'bsc_parameter_name':'sconco3', 'identifiers':{'IUPAC_name':'ozone', 'CAS_number':'10028-15-6', 'PubChem_CID':'24823', 'InChIKey':'CBENFWSGALASAD-UHFFFAOYSA-N', 'WIGOS_name':'O3 (ozone)', 'WIGOS_number':'12164'}}, +'NO': {'long_parameter_name':'nitrogen monoxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1200.0, 'extreme_upper_monthly_median':250.0, 'aqs_code':['42601'], 'airbase_name':'Nitrogen monoxide (air)', 'airbase_code':'00038', 'miteco_code':'7', 'ebas_parameter_name':['nitrogen_monoxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['NO'], 'castnet_parameter_name':'NO', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['02'], 'japan_nies_name':['NO'], 'uk_air_name':['Nitric oxide'], 'chemical_formula':'NO', 'bsc_parameter_name':'sconcno', 'identifiers':{'IUPAC_name':'nitric oxide', 'CAS_number':'10102-43-9', 'PubChem_CID':'145068', 'InChIKey':'MWUXSHHQAYIFBG-UHFFFAOYSA-N', 'WIGOS_name':'NO (nitrogen monoxide)', 'WIGOS_number':'395'}}, +'NO2': {'long_parameter_name':'nitrogen dioxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':600.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['42602'], 'airbase_name':'Nitrogen dioxide (air)', 'airbase_code':'00008', 'miteco_code':'8', 'ebas_parameter_name':['nitrogen_dioxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['NO2'], 'castnet_parameter_name':'NO2_TRUE', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['03'], 'japan_nies_name':['NO2'], 'uk_air_name':['Nitrogen dioxide'], 'chemical_formula':'NO2', 'bsc_parameter_name':'sconcno2', 'identifiers':{'IUPAC_name':'nitrogen dioxide', 'CAS_number':'10102-44-0', 'PubChem_CID':'3032552', 'InChIKey':'JCXJVPUVTGWSNB-UHFFFAOYSA-N', 'WIGOS_name':'NO2 (nitrogen dioxide)', 'WIGOS_number':'396'}}, +'SO2': {'long_parameter_name':'sulphur dioxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':3000.0, 'extreme_upper_monthly_median':750.0, 'aqs_code':['42401'], 'airbase_name':'Sulphur dioxide (air)', 'airbase_code':'00001', 'miteco_code':'1', 'ebas_parameter_name':['sulphur_dioxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['SO2','Sulphur Dioxide'], 'castnet_parameter_name':{'hourly_gas':'SO2_GA','drychem':'WSO2'}, 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['01'], 'japan_nies_name':['SO2'], 'uk_air_name':['Sulphur dioxide','gaseous sulphur dioxide','a_SO2_g'], 'chemical_formula':'SO2', 'bsc_parameter_name':'sconcso2', 'identifiers':{'IUPAC_name':'sulfur dioxide', 'CAS_number':'7446-09-5', 'PubChem_CID':'1119', 'InChIKey':'RAHZWNYVWXNFOC-UHFFFAOYSA-N', 'WIGOS_name':'SO2', 'WIGOS_number':'430'}}, +'CO': {'long_parameter_name':'carbon monoxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':7500.0, 'aqs_code':['42101'], 'airbase_name':'Carbon monoxide (air)', 'airbase_code':'00010', 'miteco_code':'6', 'ebas_parameter_name':['carbon_monoxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['CO'], 'castnet_parameter_name':'CO', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['05'], 'japan_nies_name':['CO'], 'uk_air_name':['Carbon monoxide'], 'chemical_formula':'CO', 'bsc_parameter_name':'sconcco', 'identifiers':{'IUPAC_name':'carbon monoxide', 'CAS_number':'630-08-0', 'PubChem_CID':'281', 'InChIKey':'UGFAIRIUMAVXCW-UHFFFAOYSA-N', 'WIGOS_name':'CO', 'WIGOS_number':'284'}}, +'CH4': {'long_parameter_name':'methane', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['43201'], 'airbase_name':'Methane (air)', 'airbase_code':'00041', 'miteco_code':'', 'ebas_parameter_name':['methane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Methane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['08'], 'japan_nies_name':['CH4'], 'uk_air_name':[], 'chemical_formula':'CH4', 'bsc_parameter_name':'sconcch4', 'identifiers':{'IUPAC_name':'methane', 'CAS_number':'74-82-8', 'PubChem_CID':'297', 'InChIKey':'VNWKTOKETHGBQD-UHFFFAOYSA-N', 'WIGOS_name':'CH4 (methane)', 'WIGOS_number':'192'}}, +'ACETYLENE': {'long_parameter_name':'acetylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43126'], 'airbase_name':'Ethyne (Acetylene) (air)', 'airbase_code':'00432', 'miteco_code':'', 'ebas_parameter_name':['ethyne'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethyne'], 'chemical_formula':'C2H2', 'bsc_parameter_name':'sconcc2h2', 'identifiers':{'IUPAC_name':'acetylene', 'CAS_number':'74-86-2', 'PubChem_CID':'6326', 'InChIKey':'HSFWRNGVRCDJHI-UHFFFAOYSA-N', 'WIGOS_name':'C2H2 (ethyne, acetylene)', 'WIGOS_number':'434'}}, +'GLYOXAL': {'long_parameter_name':'glyoxal', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'ethanedial (air)', 'airbase_code':'00429', 'miteco_code':'', 'ebas_parameter_name':['ethanedial'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H2O2', 'bsc_parameter_name':'sconcglyox', 'identifiers':{'IUPAC_name':'oxaldehyde', 'CAS_number':'107-22-2', 'PubChem_CID':'7860', 'InChIKey':'LEQAOMBKQFMDFZ-UHFFFAOYSA-N', 'WIGOS_name':'C2H2O2 (glyoxal)', 'WIGOS_number':'12135'}}, +'ETHENE': {'long_parameter_name':'ethene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43203'], 'airbase_name':'Ethene (Ethylene) (air)', 'airbase_code':'00430', 'miteco_code':'', 'ebas_parameter_name':['ethene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Ethylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethene'], 'chemical_formula':'C2H4', 'bsc_parameter_name':'sconcc2h4', 'identifiers':{'IUPAC_name':'ethene', 'CAS_number':'74-85-1', 'PubChem_CID':'6325', 'InChIKey':'VGGSQFUCUMXWEO-UHFFFAOYSA-N', 'WIGOS_name':'C2H4 (ethene)', 'WIGOS_number':'436'}}, +'ACETALDEHYDE': {'long_parameter_name':'acetaldehyde', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['43503'], 'airbase_name':'ethanal (air)', 'airbase_code':'00427', 'miteco_code':'', 'ebas_parameter_name':['ethanal'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetaldehyde'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H4O', 'bsc_parameter_name':'sconcald2', 'identifiers':{'IUPAC_name':'acetaldehyde', 'CAS_number':'75-07-0', 'PubChem_CID':'177', 'InChIKey':'IKHGUXGNUITLKF-UHFFFAOYSA-N', 'WIGOS_name':'CH3CHO (acetaldehyde, ethanal)', 'WIGOS_number':'491'}}, +'ETHANE': {'long_parameter_name':'ethane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43202'], 'airbase_name':'Ethane (air)', 'airbase_code':'00428', 'miteco_code':'', 'ebas_parameter_name':['ethane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Ethane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethane'], 'chemical_formula':'C2H6', 'bsc_parameter_name':'sconcc2h6', 'identifiers':{'IUPAC_name':'ethane', 'CAS_number':'74-84-0', 'PubChem_CID':'6324', 'InChIKey':'OTMSDBZUPAUEDD-UHFFFAOYSA-N', 'WIGOS_name':'C2H6 (ethane)', 'WIGOS_number':'437'}}, +'ETHANOL': {'long_parameter_name':'ethanol', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ethanol'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H6O', 'bsc_parameter_name':'sconcetoh', 'identifiers':{'IUPAC_name':'ethanol', 'CAS_number':'64-17-5', 'PubChem_CID':'702', 'InChIKey':'LFQSCWFLJHTTHZ-UHFFFAOYSA-N', 'WIGOS_name':'CH3CH2OH (ethanol)', 'WIGOS_number':'490'}}, +'PROPENE': {'long_parameter_name':'propene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43205'], 'airbase_name':'Propene (air)', 'airbase_code':'00505', 'miteco_code':'', 'ebas_parameter_name':['propene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Propylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['propene'], 'chemical_formula':'C3H6', 'bsc_parameter_name':'sconcc3h6', 'identifiers':{'IUPAC_name':'prop-1-ene', 'CAS_number':'115-07-1', 'PubChem_CID':'8252', 'InChIKey':'QQONPFPTGQHPMA-UHFFFAOYSA-N', 'WIGOS_name':'C3H6 (propene)', 'WIGOS_number':'442'}}, +'PROPANE': {'long_parameter_name':'propane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43204'], 'airbase_name':'Propane (air)', 'airbase_code':'00503', 'miteco_code':'', 'ebas_parameter_name':['propane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Propane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['propane'], 'chemical_formula':'C3H8', 'bsc_parameter_name':'sconcc3h8', 'identifiers':{'IUPAC_name':'propane', 'CAS_number':'74-98-6', 'PubChem_CID':'6334', 'InChIKey':'ATUOYWHBWRKTHZ-UHFFFAOYSA-N', 'WIGOS_name':'C3H8 (propane)', 'WIGOS_number':'445'}}, +'1,3-BUTADIENE': {'long_parameter_name':'1,3-butadiene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43218'], 'airbase_name':'1.3 Butadiene (air)', 'airbase_code':'00024', 'miteco_code':'', 'ebas_parameter_name':['1-3-butadiene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,3-Butadiene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,3-butadiene'], 'chemical_formula':'C4H6', 'bsc_parameter_name':'sconcc4h6', 'identifiers':{'IUPAC_name':'buta-1,3-diene', 'CAS_number':'106-99-0', 'PubChem_CID':'7845', 'InChIKey':'KAKZBPTYRLMSJV-UHFFFAOYSA-N', 'WIGOS_name':'C4H6 (1,3-butadiene, butadiene)', 'WIGOS_number':'446'}}, +'1-BUTENE': {'long_parameter_name':'1-butene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43280'], 'airbase_name':'1-Butene (air)', 'airbase_code':'06005', 'miteco_code':'', 'ebas_parameter_name':['1-butene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1-Butene/Isobutene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1-butene'], 'chemical_formula':'C4H8', 'bsc_parameter_name':'sconcc4h8', 'identifiers':{'IUPAC_name':'but-1-ene', 'CAS_number':'106-98-9', 'PubChem_CID':'7844', 'InChIKey':'VXNZUUAINFGPBY-UHFFFAOYSA-N', 'WIGOS_name':'C4H8 (1-butene)', 'WIGOS_number':'449'}}, +'ISOBUTANE': {'long_parameter_name':'isobutane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43214'], 'airbase_name':'i-Butane (2-methylpropane) (air)', 'airbase_code':'00447', 'miteco_code':'', 'ebas_parameter_name':['2-methylpropane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Isobutane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['iso-butane'], 'chemical_formula':'C4H10', 'bsc_parameter_name':'sconcc4h10', 'identifiers':{'IUPAC_name':'2-methylpropane', 'CAS_number':'75-28-5', 'PubChem_CID':'6360', 'InChIKey':'NNPPMTNAJDCUHE-UHFFFAOYSA-N', 'WIGOS_name':'i-C4H10 (2-methylpropane, iso-butane)', 'WIGOS_number':'497'}}, +'ISOPRENE': {'long_parameter_name':'isoprene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43243'], 'airbase_name':'Isoprene (air)', 'airbase_code':'00451', 'miteco_code':'', 'ebas_parameter_name':['isoprene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Isoprene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['isoprene'], 'chemical_formula':'C5H8', 'bsc_parameter_name':'sconcisop', 'identifiers':{'IUPAC_name':'2-methylbuta-1,3-diene', 'CAS_number':'78-79-5', 'PubChem_CID':'6557', 'InChIKey':'RRHGJUQNOFWUDK-UHFFFAOYSA-N', 'WIGOS_name':'C5H8 (2-methyl-1,3-butadiene, isoprene)', 'WIGOS_number':'464'}}, +'N-PENTANE': {'long_parameter_name':'n-pentane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43220'], 'airbase_name':'n-Pentane (air)', 'airbase_code':'00486', 'miteco_code':'', 'ebas_parameter_name':['n-pentane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Pentane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-pentane'], 'chemical_formula':'C5H12', 'bsc_parameter_name':'sconcc5h12', 'identifiers':{'IUPAC_name':'pentane', 'CAS_number':'109-66-0', 'PubChem_CID':'8003', 'InChIKey':'OFBQJSOFQDEBGM-UHFFFAOYSA-N', 'WIGOS_name':'n-C5H12 (n-pentane)', 'WIGOS_number':'502'}}, +'BENZENE': {'long_parameter_name':'benzene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45201'], 'airbase_name':'Benzene (air)', 'airbase_code':'00020', 'miteco_code':'30', 'ebas_parameter_name':['benzene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Benzene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['benzene','BENZENE'], 'chemical_formula':'C6H6', 'bsc_parameter_name':'sconcc6h6', 'identifiers':{'IUPAC_name':'benzene', 'CAS_number':'71-43-2', 'PubChem_CID':'241', 'InChIKey':'UHOVQNZJYSORNB-UHFFFAOYSA-N', 'WIGOS_name':'C6H6 (benzene)', 'WIGOS_number':'476'}}, +'N-HEXANE': {'long_parameter_name':'n-hexane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43231'], 'airbase_name':'n-Hexane (air)', 'airbase_code':'00443', 'miteco_code':'', 'ebas_parameter_name':['n-hexane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Hexane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-hexane'], 'chemical_formula':'C6H14', 'bsc_parameter_name':'sconcc6h14', 'identifiers':{'IUPAC_name':'hexane', 'CAS_number':'110-54-3', 'PubChem_CID':'8058', 'InChIKey':'VLKZOEOYAKHREP-UHFFFAOYSA-N', 'WIGOS_name':'C6H14 (n-hexane)', 'WIGOS_number':'474'}}, +'TOLUENE': {'long_parameter_name':'toluene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45202'], 'airbase_name':'Toluene (air)', 'airbase_code':'00021', 'miteco_code':'20', 'ebas_parameter_name':['toluene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Toluene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['toluene'], 'chemical_formula':'C7H8', 'bsc_parameter_name':'sconcc7h8', 'identifiers':{'IUPAC_name':'toluene', 'CAS_number':'108-88-3', 'PubChem_CID':'1140', 'InChIKey':'YXFVVABEGXRONW-UHFFFAOYSA-N', 'WIGOS_name':'C7H8 (toluene)', 'WIGOS_number':'482'}}, +'XYLENE': {'long_parameter_name':'xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45102'], 'airbase_name':'Xylene (air)', 'airbase_code':'00078', 'miteco_code':'31', 'ebas_parameter_name':[''], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'MP-XYLENE': {'long_parameter_name':'mp-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45109'], 'airbase_name':'m,p-Xylene (air)', 'airbase_code':'00464', 'miteco_code':'', 'ebas_parameter_name':['m-p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['m and p-Xylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmpxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'M-XYLENE': {'long_parameter_name':'m-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45205'], 'airbase_name':'m-Xylene (air)', 'airbase_code':'00081', 'miteco_code':'', 'ebas_parameter_name':['m-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'7929', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'P-XYLENE': {'long_parameter_name':'p-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45206'], 'airbase_name':'p-Xylene (air)', 'airbase_code':'00080', 'miteco_code':'', 'ebas_parameter_name':['p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcpxyl', 'identifiers':{'IUPAC_name':'1,4-xylene', 'CAS_number':'106-42-3', 'PubChem_CID':'7809', 'InChIKey':'URLKBWYHVLBVBO-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'O-XYLENE': {'long_parameter_name':'o-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45204'], 'airbase_name':'o-Xylene (air)', 'airbase_code':'00482', 'miteco_code':'', 'ebas_parameter_name':['o-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcoxyl', 'identifiers':{'IUPAC_name':'1,3-xylene', 'CAS_number':'95-47-6', 'PubChem_CID':'7237', 'InChIKey':'CTQNGGLPUBDAKN-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'1,2,4-TRIMETHYLBENZENE':{'long_parameter_name':'1,2,4-trimethylbenzene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45208'], 'airbase_name':'1,2,4-Trimethylbenzene (air)', 'airbase_code':'06011', 'miteco_code':'', 'ebas_parameter_name':['1-2-4-trimethylbenzene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,2,4-Trimethylbenzene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,2,4-trimethylbenzene'], 'chemical_formula':'C9H12', 'bsc_parameter_name':'sconcc9h12', 'identifiers':{'IUPAC_name':'1,2,4-trimethylbenzene', 'CAS_number':'95-63-6', 'PubChem_CID':'7247', 'InChIKey':'GWHJZXXIDMPWGX-UHFFFAOYSA-N', 'WIGOS_name':'C9H12 (1,2,4-trimethylbenzene)', 'WIGOS_number':'487'}}, +'MONOTERPENES': {'long_parameter_name':'monoterpenes', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['monoterpenes'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C10H16', 'bsc_parameter_name':'sconcc10h16', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BENZO[a]PYRENE': {'long_parameter_name':'benzo[a]pyrene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.01, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':2.0, 'aqs_code':['17242'], 'airbase_name':'Benzo(a)pyrene (air+aerosol)', 'airbase_code':'06015', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Benzo(a)Pyrene (BaP)','Benzo(a)Pyrene','BaP'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'sconcbap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NMVOC': {'long_parameter_name':'total non-methane volatile organic compounds', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['43102'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconcnmvoc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'VOC': {'long_parameter_name':'total volatile organic compounds', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':70000.0, 'extreme_upper_monthly_median':10000.0, 'aqs_code':['43104'], 'airbase_name':'Total volatile organic compounds (air)', 'airbase_code':'00033', 'miteco_code':'', 'ebas_parameter_name':['voc_complete'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconcvoc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NMHC': {'long_parameter_name':'total non-methane hydrocarbons', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'Total non-methane hydrocarbons (air)', 'airbase_code':'00032', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['07'], 'japan_nies_name':['NMHC'], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconnmhc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'NMHC', 'WIGOS_number':'494'}}, +'HC': {'long_parameter_name':'total hydrocarbons', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':70000.0, 'extreme_upper_monthly_median':10000.0, 'aqs_code':['43101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['09'], 'japan_nies_name':['THC','THCP','THCM'], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconchc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NH3': {'long_parameter_name':'ammonia', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['42604'], 'airbase_name':'Ammonia (air)', 'airbase_code':'00035', 'miteco_code':'', 'ebas_parameter_name':['ammonia'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Ammonia','AMMONIA'], 'castnet_parameter_name':'NH3', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['gaseous ammonia','alpha_NH3_g','delta_NH3_g','DT_NH3_g'], 'chemical_formula':'NH3', 'bsc_parameter_name':'sconcnh3', 'identifiers':{'IUPAC_name':'azane', 'CAS_number':'7664-41-7', 'PubChem_CID':'222', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-N', 'WIGOS_name':'NH3 (Ammonia)', 'WIGOS_number':'390'}}, +'HNO3': {'long_parameter_name':'nitric acid', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['42305'], 'airbase_name':'Gaseous nitric acid (air)', 'airbase_code':'00050', 'miteco_code':'', 'ebas_parameter_name':['nitric_acid'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Nitric Acid','NITRIC ACID'], 'castnet_parameter_name':{'hourly_gas':'HNO3','drychem':'NHNO3'}, 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['gaseous nitric acid','a_HNO3_g'], 'chemical_formula':'HNO3', 'bsc_parameter_name':'sconchno3', 'identifiers':{'IUPAC_name':'nitric acid', 'CAS_number':'7697-37-2', 'PubChem_CID':'944', 'InChIKey':'GRYLNZFGIOXLOG-UHFFFAOYSA-N', 'WIGOS_name':'HNO3 (nitric acid)', 'WIGOS_number':'394'}}, +'PAN': {'long_parameter_name':'peroxyacetyl nitrate', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['44301'], 'airbase_name':'Peroxyacetyl nitrate (air)', 'airbase_code':'00034', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H3NO5', 'bsc_parameter_name':'sconcpan', 'identifiers':{'IUPAC_name':'nitro ethaneperoxoate', 'CAS_number':'2278-22-0', 'PubChem_CID':'16782', 'InChIKey':'VGQXTTSVLMQFHM-UHFFFAOYSA-N', 'WIGOS_name':'C2H3O5N (peroxyacetylnitrate, PAN)', 'WIGOS_number':'391'}}, +'HCHO': {'long_parameter_name':'formaldehyde', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':25.0, 'aqs_code':['43502'], 'airbase_name':'Formaldehyde (air)', 'airbase_code':'00025', 'miteco_code':'', 'ebas_parameter_name':['methanal'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Formaldehyde'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH2O', 'bsc_parameter_name':'sconchcho', 'identifiers':{'IUPAC_name':'formaldehyde', 'CAS_number':'50-00-0', 'PubChem_CID':'712', 'InChIKey':'WSFSSNUMVMOOMR-UHFFFAOYSA-N', 'WIGOS_name':'CH2O (methanal, formaldehyde)', 'WIGOS_number':'489'}}, +'HCl': {'long_parameter_name':'hydrochloric acid', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['42302'], 'airbase_name':'Hydrogen chloride (air)', 'airbase_code':'00039', 'miteco_code':'', 'ebas_parameter_name':['hydrochloric_acid'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['43'], 'japan_nies_name':['HCL'], 'uk_air_name':['gaseous hydrochloric acid','a_HCl_g'], 'chemical_formula':'HCl', 'bsc_parameter_name':'sconchcl', 'identifiers':{'IUPAC_name':'chlorane', 'CAS_number':'7647-01-0', 'PubChem_CID':'313', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-N', 'WIGOS_name':'HCl (hydrochloric acid)', 'WIGOS_number':'288'}}, +'HF': {'long_parameter_name':'hydrofluoric acid', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['42303'], 'airbase_name':'Hydrogen fluoride (air)', 'airbase_code':'00040', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['44'], 'japan_nies_name':['HF'], 'uk_air_name':[], 'chemical_formula':'HF', 'bsc_parameter_name':'sconchf', 'identifiers':{'IUPAC_name':'fluorane', 'CAS_number':'7664-39-3', 'PubChem_CID':'14917', 'InChIKey':'KRHYYFGTRYWZRS-UHFFFAOYSA-N', 'WIGOS_name':'HF (hydrofluoric acid)', 'WIGOS_number':'289'}}, +'H2S': {'long_parameter_name':'hydrogen sulphide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['42402'], 'airbase_name':'Hydrogen sulphide (air)', 'airbase_code':'00011', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['45'], 'japan_nies_name':['H2S'], 'uk_air_name':[], 'chemical_formula':'H2S', 'bsc_parameter_name':'sconch2s', 'identifiers':{'IUPAC_name':'sulfane', 'CAS_number':'7783-06-4', 'PubChem_CID':'402', 'InChIKey':'RWSOTUBLDIXVET-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-GEM': {'long_parameter_name':'gaseous elemental mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'Elemental Gaseous Mercury (air+aerosol)', 'airbase_code':'4013', 'miteco_code':'', 'ebas_parameter_name':['mercury_GEM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['elemental mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggem', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-GOM': {'long_parameter_name':'gaseous oxidised mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['42243'],'airbase_name':'reactive_mercury (air+aerosol)', 'airbase_code':'653', 'miteco_code':'', 'ebas_parameter_name':['mercury_GOM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['reactive mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggom', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-TGM': {'long_parameter_name':'total gaseous mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['42242'],'airbase_name':'Total gaseous mercury (air+aerosol)', 'airbase_code':'4813', 'miteco_code':'', 'ebas_parameter_name':['mercury_TGM','total_gaseous_mercury'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['total gaseous mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchgtgm', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +#PM +'Al': {'long_parameter_name':'total particulate aluminium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['12101','14101'], 'airbase_name':'aluminium (aerosol)', 'airbase_code':'00604', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Aluminum (Al)','Aluminum','Al'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Al'], 'chemical_formula':'Al', 'bsc_parameter_name':'sconcal', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'Al (Aluminium), TSP', 'WIGOS_number':'674'}}, +'As': {'long_parameter_name':'total particulate arsenic', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['12103','14103'], 'airbase_name':'Arsenic (aerosol)', 'airbase_code':'00018', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Arsenic (As)','Arsenic','As'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['As'], 'chemical_formula':'As', 'bsc_parameter_name':'sconcas', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'As (Arsenic), TSP', 'WIGOS_number':'678'}}, +'BaP': {'long_parameter_name':'total particulate benzo[a]pyrene', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Benzo(a)Pyrene (BaP)','Benzo(a)Pyrene','BaP'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'sconcbappm', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BC': {'long_parameter_name':'total particulate black carbon', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'black_carbon (aerosol)', 'airbase_code':'00391', 'miteco_code':'', 'ebas_parameter_name':['equivalent_black_carbon','equivalent_black_carbon_mass'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Black carbon', 'Black Carbon (880nm)'], 'chemical_formula':'C', 'bsc_parameter_name':'sconcbc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'C': {'long_parameter_name':'total particulate carbon', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['total_carbon','total_carbon_corrected'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['TC(corr)','TC'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'sconcc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Ca++': {'long_parameter_name':'total particulate calcium', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['12111','14111'], 'airbase_name':'calcium (aerosol)', 'airbase_code':'00629', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Calcium','Ca'], 'castnet_parameter_name':'CA', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ca', 'bsc_parameter_name':'sconcca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'Ca++ (calcium), TSP', 'WIGOS_number':'634'}}, +'Cd': {'long_parameter_name':'total particulate cadmium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['12110','14110'], 'airbase_name':'Cadmium (aerosol)', 'airbase_code':'00014', 'miteco_code':'', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Cadmium (Cd)','Cadmium','Cd'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Cd'], 'chemical_formula':'Cd', 'bsc_parameter_name':'sconccd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'Cd (Cadmium), TSP', 'WIGOS_number':'687'}}, +'Cl-': {'long_parameter_name':'total particulate chloride', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['12191','12203','13115'], 'airbase_name':'chloride (aerosol)', 'airbase_code':'00631', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Chloride','CHLORIDE','Cl-'], 'castnet_parameter_name':'CL', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cl', 'bsc_parameter_name':'sconccl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'Cl- (chloride), TSP', 'WIGOS_number':'617'}}, +'Co': {'long_parameter_name':'total particulate cobalt', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['12113','14113'], 'airbase_name':'Cobalt (aerosol)', 'airbase_code':'00064', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Cobalt (Co)','Cobalt','Co'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Co'], 'chemical_formula':'Co', 'bsc_parameter_name':'sconccobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'Co (Cobalt), TSP', 'WIGOS_number':'691'}}, +'Cr': {'long_parameter_name':'total particulate chromium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['12112','14112'], 'airbase_name':'Chromium (aerosol)', 'airbase_code':'00016', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Chromium (Cr)','Chromium','Cr'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Cr'], 'chemical_formula':'Cr', 'bsc_parameter_name':'sconccr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'Cr (Chromium), TSP', 'WIGOS_number':'690'}}, +'Cu': {'long_parameter_name':'total particulate copper', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':750.0, 'extreme_upper_monthly_median':150.0, 'aqs_code':['12114','14114'], 'airbase_name':'Copper (aerosol)', 'airbase_code':'00073', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Copper (Cu)','Copper','Cu'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Cu'], 'chemical_formula':'Cu', 'bsc_parameter_name':'sconccu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'Cu (Copper), TSP', 'WIGOS_number':'693'}}, +'DUST': {'long_parameter_name':'total particulate dust', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['21101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sconcdu', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dust mass concentration', 'WIGOS_number':'727'}}, +'EC': {'long_parameter_name':'total particulate elemental carbon', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'Elemental carbon (aerosol)', 'airbase_code':'00771', 'miteco_code':'', 'ebas_parameter_name':['elemental_carbon'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['EC(corr)','EC','EC_R','EC_T','EC(A)'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'sconcec', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Fe': {'long_parameter_name':'total particulate iron', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['12126','14126'], 'airbase_name':'Iron (aerosol)', 'airbase_code':'00065', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Iron (Fe)','Iron','Fe'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Fe'], 'chemical_formula':'Fe', 'bsc_parameter_name':'sconcfe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'Fe (Iron), TSP', 'WIGOS_number':'694'}}, +'Hg': {'long_parameter_name':'total particulate mercury', 'matrix':'pm', 'standard_units':'pg m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':3000.0, 'aqs_code':['12142','14142'], 'airbase_name':'Mercury (aerosol)', 'airbase_code':'00013', 'miteco_code':'', 'ebas_parameter_name':['mercury','mercury_PBM'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'Hg (Mercury), TSP', 'WIGOS_number':'703'}}, +'K+': {'long_parameter_name':'total particulate potassium', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['12180','14180'], 'airbase_name':'potassium (aerosol)', 'airbase_code':'00657', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Potassium','K'], 'castnet_parameter_name':'K', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'K', 'bsc_parameter_name':'sconck', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'K+ (potassium), TSP', 'WIGOS_number':'640'}}, +'Mg++': {'long_parameter_name':'total particulate magnesium', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['12140','14140'], 'airbase_name':'magnesium (aerosol)', 'airbase_code':'00659', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Magnesium','Mg'], 'castnet_parameter_name':'MG', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mg', 'bsc_parameter_name':'sconcmg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'Mg++ (magnesium), TSP', 'WIGOS_number':'637'}}, +'Mn': {'long_parameter_name':'total particulate manganese', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':['12132','14132'], 'airbase_name':'Manganese (aerosol)', 'airbase_code':'00017', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Manganese (Mn)','Mn','Manganese'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Mn'], 'chemical_formula':'Mn', 'bsc_parameter_name':'sconcmn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'Mn (Manganese), TSP', 'WIGOS_number':'702'}}, +'MSA': {'long_parameter_name':'total particulate methanesulfonic acid', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':75.0, 'extreme_upper_monthly_median':25.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['MSA'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'sconcmsa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Na+': {'long_parameter_name':'total particulate sodium', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['12184'], 'airbase_name':'sodium (aerosol)', 'airbase_code':'00668', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Sodium','Na+'], 'castnet_parameter_name':'NA', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Na', 'bsc_parameter_name':'sconcna', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'Na+ (sodium), TSP', 'WIGOS_number':'643'}}, +'NH4+': {'long_parameter_name':'total particulate ammonium', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['12301'], 'airbase_name':'Particulate ammonium (aerosol)', 'airbase_code':'00045', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Ammonium','AMMONIUM','NH4+','NH4'], 'castnet_parameter_name':'TNH4', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4', 'bsc_parameter_name':'sconcnh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'NH4+ (ammonium), TSP', 'WIGOS_number':'647'}}, +'NH4NO3': {'long_parameter_name':'total particulate ammonium nitrate', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'sconcnh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'NH4NO3 (ammonium nitrate), TSP', 'WIGOS_number':'648'}}, +'Ni': {'long_parameter_name':'total particulate nickel', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10000.0, 'extreme_upper_monthly_median':1000.0, 'aqs_code':['12136','14136'], 'airbase_name':'Nickel (aerosol)', 'airbase_code':'00015', 'miteco_code':'', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Nickel (Ni)','Nickel','Ni'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Ni'], 'chemical_formula':'Ni', 'bsc_parameter_name':'sconcni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'Ni (Nickel), TSP', 'WIGOS_number':'705'}}, +'NO3-': {'long_parameter_name':'total particulate nitrate', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':250.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['12306','14306'], 'airbase_name':'Particulate nitrate (aerosol)', 'airbase_code':'00046', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Nitrate','NITRATE','NO3'], 'castnet_parameter_name':['TNO3','WNO3'], 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NO3', 'bsc_parameter_name':'sconcno3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'NO3- (nitrate), TSP', 'WIGOS_number':'652'}}, +'OC': {'long_parameter_name':'total particulate organic carbon', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'Organic carbon (aerosol)', 'airbase_code':'00772', 'miteco_code':'', 'ebas_parameter_name':['organic_carbon','organic_carbon_corrected'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['OC(corr)','OC','OC_R','OC_T'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'sconcoc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Pb': {'long_parameter_name':'total particulate lead', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':60000.0, 'extreme_upper_monthly_median':15000.0, 'aqs_code':['12128','14128','14129'], 'airbase_name':'Lead (aerosol)', 'airbase_code':'00012', 'miteco_code':'', 'ebas_parameter_name':['lead'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Lead (Pb)','Lead','Pb'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Pb'], 'chemical_formula':'Pb', 'bsc_parameter_name':'sconcpb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'Pb (Lead), TSP', 'WIGOS_number':'698'}}, +'Se': {'long_parameter_name':'total particulate selenium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['12154','14154'], 'airbase_name':'Selenium (aerosol)', 'airbase_code':'00048', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Selenium (Se)','Selenium','Se'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Se'], 'chemical_formula':'Se', 'bsc_parameter_name':'sconcse', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'Se (Selenium), TSP', 'WIGOS_number':'710'}}, +'SO4--': {'long_parameter_name':'total particulate sulphate', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['12403','14403'], 'airbase_name':'Particulate sulphate (aerosol)', 'airbase_code':'00047', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Sulphate','SULPHATE','SO4'], 'castnet_parameter_name':['TSO4','NSO4'], 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'sconcso4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'SO4= (sulfate), TSP', 'WIGOS_number':'620'}}, +'SO4--_NSS': {'long_parameter_name':'total particulate sulphate: non-sea salt', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'sconcso4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_SS': {'long_parameter_name':'total particulate sulphate: sea salt', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'sconcso4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'V': {'long_parameter_name':'total particulate vanadium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['12164','14164'], 'airbase_name':'Vanadium (aerosol)', 'airbase_code':'00049', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Vanadium (V)','Vanadium','V'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['V'], 'chemical_formula':'V', 'bsc_parameter_name':'sconcv', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'V (Vanadium), TSP', 'WIGOS_number':'722'}}, +'Zn': {'long_parameter_name':'total particulate zinc', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['12167','14167'], 'airbase_name':'Zinc (aerosol)', 'airbase_code':'00063', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Zinc (Zn)','Zinc','Zn'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Zn'], 'chemical_formula':'Zn', 'bsc_parameter_name':'sconczn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'Zn (Zinc), TSP', 'WIGOS_number':'724'}}, +'AERO_ABS_COEFF_370nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 370nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco370', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_467nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 467nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco467', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_470nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 470nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco470', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_520nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 520nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_522nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 522nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco522', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_525nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 525nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_528nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 528nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco528', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_530nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 530nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_550nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 550nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_565nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 565nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco565', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_590nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 590nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco590', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_637nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 637nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco637', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_652nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 652nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_660nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 660nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_670nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 670nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco670', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_880nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 880nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'AERO_ABS_COEFF_950nm': {'long_parameter_name':'total particulate aerosol absorption coefficient at 950nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absco950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, TSP', 'WIGOS_number':'318'}}, +'ABSAE_370-880nm': {'long_parameter_name':'angstrom exponent between 370 and 880 nm for total particulate absorption', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-880nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae370-880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'ABSAE_370-950nm': {'long_parameter_name':'angstrom exponent between 370 and 950 nm for total particulate absorption', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-950nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae370-950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'ABSAE_467-652nm': {'long_parameter_name':'angstrom exponent between 467 and 652 nm for total particulate absorption', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-652nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae467-652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'ABSAE_467-660nm': {'long_parameter_name':'angstrom exponent between 467 and 660 nm for total particulate absorption', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-660nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae467-660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'AERO_LIGHT_BACKSCAT_COEFF_450nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 450nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_520nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 520nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_525nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 525nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_530nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 530nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_532nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 532nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_550nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 550nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_635nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 635nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_700nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 700nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_BACKSCAT_COEFF_850nm':{'long_parameter_name':'total particulate aerosol light backscattering coefficient at 850nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AERO_LIGHT_SCAT_COEFF_450nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 450nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_520nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 520nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_525nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 525nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_530nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 530nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_532nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 532nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_550nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 550nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_635nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 635nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_700nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 700nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'AERO_LIGHT_SCAT_COEFF_850nm': {'long_parameter_name':'total particulate aerosol light scattering coefficient at 850nm', 'matrix':'pm', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, TSP', 'WIGOS_number':'324'}}, +'SCATAE_450-635nm': {'long_parameter_name':'angstrom exponent between 450 and 635 nm for total particulate scattering', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-635nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsae450-635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'SCATAE_450-700nm': {'long_parameter_name':'angstrom exponent between 450 and 700 nm for total particulate scattering', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-700nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsae450-700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'BACKSCAT_FRAC_450nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 450nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_520nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 520nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_525nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 525nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_530nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 530nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_532nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 532nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_550nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 550nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_635nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 635nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_700nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 700nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BACKSCAT_FRAC_850nm': {'long_parameter_name':'total particulate aerosol light backscattering fraction at 850nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lbsf850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_525nm': {'long_parameter_name':'total particulate asymmetry factor at 525nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_550nm': {'long_parameter_name':'total particulate asymmetry factor at 550nm', 'matrix':'pm', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#PM10 +'PM10': {'long_parameter_name':'PM10 mass', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['81102','85101'], 'airbase_name':'Particulate matter < 10 µm (aerosol)', 'airbase_code':'00005', 'miteco_code':'10', 'ebas_parameter_name':['pm10_mass'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['PM10','PM2.5-10','MASS'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['10'], 'japan_nies_name':['SPM','SPMB','SPMP'], 'uk_air_name':['PM10 particulate matter (Hourly measured)','PM10 particulate matter (Hourly measured)','PM10 particulate matter (Daily measured)','Daily measured PM10 (uncorrected)','Daily measured PM10 (uncorrected)'], 'chemical_formula':'', 'bsc_parameter_name':'pm10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle mass concentration, PM10', 'WIGOS_number':'364'}}, +'PM10_Al': {'long_parameter_name':'PM10 aluminium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82101','85104'], 'airbase_name':'aluminium in PM10 (aerosol)', 'airbase_code':'05604', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Aluminum (Al)','Aluminum','Al'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'pm10al', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_As': {'long_parameter_name':'PM10 arsenic', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['82103','85103'], 'airbase_name':'Arsenic in PM10 (aerosol)', 'airbase_code':'05018', 'miteco_code':'17', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Arsenic (As)','Arsenic','As'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'pm10as', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'As (Arsenic), PM10', 'WIGOS_number':'677'}}, +'PM10_BaP': {'long_parameter_name':'PM10 benzo[a]pyrene', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['82242'], 'airbase_name':'Benzo(a)pyrene in PM10 (aerosol)', 'airbase_code':'05029', 'miteco_code':'27', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'pm10bap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BC': {'long_parameter_name':'PM10 black carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['85313'], 'airbase_name':'black_carbon in PM10 (aerosol)', 'airbase_code':'05391', 'miteco_code':'', 'ebas_parameter_name':['equivalent_black_carbon','equivalent_black_carbon_mass'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm10bc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_C': {'long_parameter_name':'PM10 carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82116'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['total_carbon','total_carbon_corrected'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['TC(corr)','TC'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Total Carbon-PM10'], 'chemical_formula':'C', 'bsc_parameter_name':'pm10c', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Total carbon, PM10', 'WIGOS_number':'626'}}, +'PM10_Ca++': {'long_parameter_name':'PM10 calcium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['82111','85111'], 'airbase_name':'calcium in PM10 (aerosol)', 'airbase_code':'05629', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Calcium','Ca'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Calcium aerosol - PM10'], 'chemical_formula':'Ca', 'bsc_parameter_name':'pm10ca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'Ca++ (calcium), PM10', 'WIGOS_number':'632'}}, +'PM10_Cd': {'long_parameter_name':'PM10 cadmium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['82110','85110'], 'airbase_name':'Cadmium in PM10 (aerosol)', 'airbase_code':'05014', 'miteco_code':'28', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Cadmium (Cd)','Cadmium','Cd'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cd', 'bsc_parameter_name':'pm10cd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'Cd (Cadmium), PM10', 'WIGOS_number':'684'}}, +'PM10_Cl-': {'long_parameter_name':'PM10 chloride', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82115','82203','85115'], 'airbase_name':'chloride in PM10 (aerosol)', 'airbase_code':'05631', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Chloride','CHLORIDE','Cl-'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Chloride aerosol - PM10'], 'chemical_formula':'Cl', 'bsc_parameter_name':'pm10cl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'Cl- (chloride), PM10', 'WIGOS_number':'615'}}, +'PM10_Co': {'long_parameter_name':'PM10 cobalt', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['82113','85113'], 'airbase_name':'Cobalt in PM10 (aerosol)', 'airbase_code':'05064', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Cobalt (Co)','Cobalt','Co'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Co', 'bsc_parameter_name':'pm10cobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Cr': {'long_parameter_name':'PM10 chromium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['82112','85112'], 'airbase_name':'Chromium in PM10 (aerosol)', 'airbase_code':'05016', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Chromium (Cr)','Chromium','Cr'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cr', 'bsc_parameter_name':'pm10cr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Cu': {'long_parameter_name':'PM10 copper', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':750.0, 'extreme_upper_monthly_median':150.0, 'aqs_code':['82114','85114'], 'airbase_name':'Copper in PM10 (aerosol)', 'airbase_code':'05073', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Copper (Cu)','Copper','Cu'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cu', 'bsc_parameter_name':'pm10cu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'Cu (Copper), PM10', 'WIGOS_number':'692'}}, +'PM10_DUST': {'long_parameter_name':'PM10 dust', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10du', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_EC': {'long_parameter_name':'PM10 elemental carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['82307','85357','85380'], 'airbase_name':'Elemental carbon in PM10 (aerosol)', 'airbase_code':'05771', 'miteco_code':'', 'ebas_parameter_name':['elemental_carbon'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['EC(corr)','EC','EC_R','EC_T','EC(A)'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Elemental Carbon by reflectance-PM10','Elemental Carbon by transmittance-PM10'], 'chemical_formula':'C', 'bsc_parameter_name':'pm10ec', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Elemental carbon, PM10', 'WIGOS_number':'623'}}, +'PM10_Fe': {'long_parameter_name':'PM10 iron', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82126','85126'], 'airbase_name':'Iron in PM10 (aerosol)', 'airbase_code':'05065', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Iron (Fe)','Iron','Fe'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Fe', 'bsc_parameter_name':'pm10fe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Hg': {'long_parameter_name':'PM10 mercury', 'matrix':'pm10', 'standard_units':'pg m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':3000.0, 'aqs_code':['82142','85142'], 'airbase_name':'Mercury in PM10 (aerosol)', 'airbase_code':'05013', 'miteco_code':'', 'ebas_parameter_name':['mercury','mercury_PBM'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'pm10hg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_K+': {'long_parameter_name':'PM10 potassium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['82180','85180','85303'], 'airbase_name':'potassium in PM10 (aerosol)', 'airbase_code':'05657', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Potassium','K'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Potassium aerosol - PM10'], 'chemical_formula':'K', 'bsc_parameter_name':'pm10k', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'K+ (potassium), PM10', 'WIGOS_number':'638'}}, +'PM10_Mg++': {'long_parameter_name':'PM10 magnesium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['82140','85140'], 'airbase_name':'magnesium in PM10 (aerosol)', 'airbase_code':'05659', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Magnesium','Mg'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Magnesium aerosol - PM10'], 'chemical_formula':'Mg', 'bsc_parameter_name':'pm10mg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'Mg++ (magnesium), PM10', 'WIGOS_number':'635'}}, +'PM10_Mn': {'long_parameter_name':'PM10 manganese', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':['82132','85132'], 'airbase_name':'Manganese in PM10 (aerosol)', 'airbase_code':'05017', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Manganese (Mn)','Mn','Manganese'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mn', 'bsc_parameter_name':'pm10mn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'Mn (Manganese), PM10', 'WIGOS_number':'701'}}, +'PM10_MSA': {'long_parameter_name':'PM10 methanesulfonic acid', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':75.0, 'extreme_upper_monthly_median':25.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['MSA'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'pm10msa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Na+': {'long_parameter_name':'PM10 sodium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82184','85184','85302'], 'airbase_name':'sodium in PM10 (aerosol)', 'airbase_code':'05668', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Sodium','Na+'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Sodium aerosol - PM10'], 'chemical_formula':'Na', 'bsc_parameter_name':'pm10na', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'Na+ (sodium), PM10', 'WIGOS_number':'641'}}, +'PM10_NH4+': {'long_parameter_name':'PM10 ammonium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82301','85301'], 'airbase_name':'Ammonium in PM10 (aerosol)', 'airbase_code':'05045', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Ammonium','AMMONIUM','NH4+','NH4'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Ammonium aerosol - PM10'], 'chemical_formula':'NH4', 'bsc_parameter_name':'pm10nh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'NH4+ (ammonium), PM10', 'WIGOS_number':'645'}}, +'PM10_NH4NO3': {'long_parameter_name':'PM10 ammonium nitrate', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'pm10nh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Ni': {'long_parameter_name':'PM10 nickel', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10000.0, 'extreme_upper_monthly_median':1000.0, 'aqs_code':['82136','85136'], 'airbase_name':'Nickel in PM10 (aerosol)', 'airbase_code':'05015', 'miteco_code':'62', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Nickel (Ni)','Nickel','Ni'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ni', 'bsc_parameter_name':'pm10ni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'Ni (Nickel), PM10', 'WIGOS_number':'704'}}, +'PM10_NO3-': {'long_parameter_name':'PM10 nitrate', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':250.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['82306','85306'], 'airbase_name':'Nitrate in PM10 (aerosol)', 'airbase_code':'05046', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Nitrate','NITRATE','NO3'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Particulate nitrate - PM10'], 'chemical_formula':'NO3', 'bsc_parameter_name':'pm10no3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'NO3- (nitrate), PM10', 'WIGOS_number':'650'}}, +'PM10_OC': {'long_parameter_name':'PM10 organic carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['82305','85355','85370'], 'airbase_name':'Organic carbon in PM10 (aerosol)', 'airbase_code':'05772', 'miteco_code':'', 'ebas_parameter_name':['organic_carbon','organic_carbon_corrected'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['OC(corr)','OC','OC_R','OC_T'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Organic Carbon by reflectance-PM10','Organic Carbon by transmittance-PM10'], 'chemical_formula':'C', 'bsc_parameter_name':'pm10oc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Carbonaceous-organic material, PM10', 'WIGOS_number':'670'}}, +'PM10_Pb': {'long_parameter_name':'PM10 lead', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':60000.0, 'extreme_upper_monthly_median':15000.0, 'aqs_code':['82128','85128','85129'], 'airbase_name':'Lead in PM10 (aerosol)', 'airbase_code':'05012', 'miteco_code':'19', 'ebas_parameter_name':['lead'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Lead (Pb)','Lead','Pb'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Pb', 'bsc_parameter_name':'pm10pb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'Pb (Lead), PM10', 'WIGOS_number':'697'}}, +'PM10_Se': {'long_parameter_name':'PM10 selenium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82154','85154'], 'airbase_name':'Selenium in PM10 (aerosol)', 'airbase_code':'05048', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Selenium (Se)','Selenium','Se'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Se', 'bsc_parameter_name':'pm10se', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_SO4--': {'long_parameter_name':'PM10 sulphate', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82403','85403'], 'airbase_name':'sulphate in PM10 (aerosol)', 'airbase_code':'05047', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Sulphate','SULPHATE','SO4'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Sulphate aerosol - PM10'], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm10so4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'SO4= (sulfate), PM10', 'WIGOS_number':'621'}}, +'PM10_SO4--_NSS': {'long_parameter_name':'PM10 sulphate : non-sea salt', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm10so4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_SO4--_SS': {'long_parameter_name':'PM10 sulphate : sea salt', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm10so4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_V': {'long_parameter_name':'PM10 vanadium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['82164','85164'], 'airbase_name':'Vanedium in PM10 (aerosol)', 'airbase_code':'05049', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Vanadium (V)','Vanadium','V'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'pm10v', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_Zn': {'long_parameter_name':'PM10 zinc', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82167','85167'], 'airbase_name':'Zinc in PM10 (aerosol)', 'airbase_code':'05063', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Zinc (Zn)','Zinc','Zn'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'pm10zn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_ABS_COEFF_370nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 370nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco370', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_467nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 467nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco467', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_470nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 470nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco470', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_520nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 520nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_522nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 522nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco522', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_525nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 525nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_528nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 528nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco528', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_530nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 530nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_550nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 550nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_565nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 565nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco565', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_590nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 590nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco590', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_637nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 637nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco637', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_652nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 652nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_660nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 660nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_670nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 670nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco670', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_880nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 880nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_AERO_ABS_COEFF_950nm': {'long_parameter_name':'PM10 aerosol absorption coefficient at 950nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absco950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM10', 'WIGOS_number':'317'}}, +'PM10_ABSAE_370-880nm': {'long_parameter_name':'angstrom exponent between 370 and 880 nm for PM10 absorption', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-880nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absae370-880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM10_ABSAE_370-950nm': {'long_parameter_name':'angstrom exponent between 370 and 950 nm for PM10 absorption', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-950nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absae370-950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM10_ABSAE_467-652nm': {'long_parameter_name':'angstrom exponent between 467 and 652 nm for PM10 absorption', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-652nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absae467-652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM10_ABSAE_467-660nm': {'long_parameter_name':'angstrom exponent between 467 and 660 nm for PM10 absorption', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-660nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10absae467-660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 450nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 520nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 525nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 530nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 532nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 550nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 635nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 700nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm':{'long_parameter_name':'PM10 aerosol light backscattering coefficient at 850nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_AERO_LIGHT_SCAT_COEFF_450nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 450nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_520nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 520nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_525nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 525nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_530nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 530nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_532nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 532nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_550nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 550nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_635nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 635nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_700nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 700nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_AERO_LIGHT_SCAT_COEFF_850nm': {'long_parameter_name':'PM10 aerosol light scattering coefficient at 850nm', 'matrix':'pm10', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM10', 'WIGOS_number':'323'}}, +'PM10_SCATAE_450-635nm': {'long_parameter_name':'angstrom exponent between 450 and 635 nm for PM10 scattering', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-635nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsae450-635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM10_SCATAE_450-700nm': {'long_parameter_name':'angstrom exponent between 450 and 700 nm for PM10 scattering', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-700nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lsae450-700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM10_BACKSCAT_FRAC_450nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 450nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_520nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 520nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_525nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 525nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_530nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 530nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_532nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 532nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_550nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 550nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_635nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 635nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_700nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 700nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BACKSCAT_FRAC_850nm': {'long_parameter_name':'PM10 aerosol light backscattering fraction at 850nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10lbsf850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_ASY_525nm': {'long_parameter_name':'PM10 asymmetry factor at 525nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10asy525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_ASY_550nm': {'long_parameter_name':'PM10 asymmetry factor at 550nm', 'matrix':'pm10', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm10asy550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#PM2.5 +'PM2.5': {'long_parameter_name':'PM2.5 mass', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['88101','88502'], 'airbase_name':'Particulate matter < 2.5 m (aerosol)', 'airbase_code':'06001', 'miteco_code':'9', 'ebas_parameter_name':['pm25_mass'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['PM2.5','MASS'], 'castnet_parameter_name':'FINE_MASS', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['12'], 'japan_nies_name':['PM25','PMFL','PMBH'], 'uk_air_name':['PM2.5 particulate matter (Hourly measured)','PM2.5 particulate matter (Hourly measured)','PM2.5 particulate matter (Daily measured)','Daily measured PM2.5 (uncorrected)','Daily measured PM2.5 (uncorrected)'], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle mass concentration, PM2.5', 'WIGOS_number':'366'}}, +'PM2.5_Al': {'long_parameter_name':'PM2.5 aluminium', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['84101','88104'], 'airbase_name':'aluminium in PM2.5 (aerosol)', 'airbase_code':'01604', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Aluminum (Al)','Aluminum','Al'], 'castnet_parameter_name':'AL', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'pm2p5al', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'Al (Aluminium), PM2.5', 'WIGOS_number':'673'}}, +'PM2.5_As': {'long_parameter_name':'PM2.5 arsenic', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['84103','88103'], 'airbase_name':'Arsenic in PM2.5 (aerosol)', 'airbase_code':'01018', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Arsenic (As)','Arsenic','As'], 'castnet_parameter_name':'ARSENIC', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'pm2p5as', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BaP': {'long_parameter_name':'PM2.5 benzo[a]pyrene', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'Benzo(a)pyrene in PM2.5 (aerosol)', 'airbase_code':'01029', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'pm2p5bap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BC': {'long_parameter_name':'PM2.5 black carbon', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['84313','88317'], 'airbase_name':'black_carbon in PM2.5 (aerosol)', 'airbase_code':'01391', 'miteco_code':'', 'ebas_parameter_name':['equivalent_black_carbon','equivalent_black_carbon_mass'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm2p5bc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_C': {'long_parameter_name':'PM2.5 carbon', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['84312','88312'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['total_carbon','total_carbon_corrected'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['TC(corr)','TC'], 'castnet_parameter_name':'TCTC', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['TC-PM2.5'], 'chemical_formula':'C', 'bsc_parameter_name':'pm2p5c', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Ca++': {'long_parameter_name':'PM2.5 calcium', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['84111','88111'], 'airbase_name':'calcium in PM2.5 (aerosol)', 'airbase_code':'01629', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Calcium','Ca'], 'castnet_parameter_name':'CA', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Calcium aerosol - PM2.5'], 'chemical_formula':'Ca', 'bsc_parameter_name':'pm2p5ca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'Ca++ (calcium), PM2.5', 'WIGOS_number':'633'}}, +'PM2.5_Cd': {'long_parameter_name':'PM2.5 cadmium', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['84110','88110'], 'airbase_name':'Cadmium in PM2.5 (aerosol)', 'airbase_code':'01014', 'miteco_code':'', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Cadmium (Cd)','Cadmium','Cd'], 'castnet_parameter_name':'CD', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cd', 'bsc_parameter_name':'pm2p5cd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'Cd (Cadmium), PM2.5', 'WIGOS_number':'685'}}, +'PM2.5_Cl-': {'long_parameter_name':'PM2.5 chloride', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['84115','84203','88115','88203'], 'airbase_name':'chloride in PM2.5 (aerosol)', 'airbase_code':'01631', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Chloride','CHLORIDE','Cl-'], 'castnet_parameter_name':'CL', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Chloride aerosol - PM2.5'], 'chemical_formula':'Cl', 'bsc_parameter_name':'pm2p5cl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'Cl- (chloride), PM2.5', 'WIGOS_number':'616'}}, +'PM2.5_Co': {'long_parameter_name':'PM2.5 cobalt', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['84113','88113'], 'airbase_name':'Cobalt in PM2.5 (aerosol)', 'airbase_code':'01064', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Cobalt (Co)','Cobalt','Co'], 'castnet_parameter_name':'CO', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Co', 'bsc_parameter_name':'pm2p5cobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Cr': {'long_parameter_name':'PM2.5 chromium', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['84112','88112'], 'airbase_name':'Chromium in PM2.5 (aerosol)', 'airbase_code':'01016', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Chromium (Cr)','Chromium','Cr'], 'castnet_parameter_name':'CR', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cr', 'bsc_parameter_name':'pm2p5cr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Cu': {'long_parameter_name':'PM2.5 copper', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':750.0, 'extreme_upper_monthly_median':150.0, 'aqs_code':['84114','88114'], 'airbase_name':'Copper in PM2.5 (aerosol)', 'airbase_code':'01073', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Copper (Cu)','Copper','Cu'], 'castnet_parameter_name':'CU', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cu', 'bsc_parameter_name':'pm2p5cu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_DUST': {'long_parameter_name':'PM2.5 dust', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5du', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_EC': {'long_parameter_name':'PM2.5 elemental carbon', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['84307','88307','88321','88357','88380','88381'], 'airbase_name':'Elemental carbon in PM2.5 (aerosol)', 'airbase_code':'01771', 'miteco_code':'', 'ebas_parameter_name':['elemental_carbon'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['EC(corr)','EC','EC_R','EC_T','EC(A)'], 'castnet_parameter_name':['EHTC','ECTC'], 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['EC-TOR-PM2.5','EC-TOT-PM2.5'], 'chemical_formula':'C', 'bsc_parameter_name':'pm2p5ec', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Elemental carbon, PM2.5', 'WIGOS_number':'625'}}, +'PM2.5_Fe': {'long_parameter_name':'PM2.5 iron', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['84126','88126'], 'airbase_name':'Iron in PM2.5 (aerosol)', 'airbase_code':'01065', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Iron (Fe)','Iron','Fe'], 'castnet_parameter_name':'FE', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Fe', 'bsc_parameter_name':'pm2p5fe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Hg': {'long_parameter_name':'PM2.5 mercury', 'matrix':'pm2.5', 'standard_units':'pg m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':3000.0, 'aqs_code':['84142','88142'], 'airbase_name':'Mercury in PM2.5 (aerosol)', 'airbase_code':'01013', 'miteco_code':'', 'ebas_parameter_name':['mercury','mercury_PBM'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'HG', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['mercury in PM2.5'], 'chemical_formula':'Hg', 'bsc_parameter_name':'pm2p5hg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_K+': {'long_parameter_name':'PM2.5 potassium', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['84180','88180','88303'], 'airbase_name':'potassium in PM2.5 (aerosol)', 'airbase_code':'01657', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Potassium','K'], 'castnet_parameter_name':'K', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Potassium aerosol - PM2.5'], 'chemical_formula':'K', 'bsc_parameter_name':'pm2p5k', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'K+ (potassium), PM2.5', 'WIGOS_number':'639'}}, +'PM2.5_Mg++': {'long_parameter_name':'PM2.5 magnesium', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':['84140','88140'], 'airbase_name':'magnesium in PM2.5 (aerosol)', 'airbase_code':'01659', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Magnesium','Mg'], 'castnet_parameter_name':'MG', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Magnesium aerosol - PM2.5'], 'chemical_formula':'Mg', 'bsc_parameter_name':'pm2p5mg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'Mg++ (magnesium), PM2.5', 'WIGOS_number':'636'}}, +'PM2.5_Mn': {'long_parameter_name':'PM2.5 manganese', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':['84132','88132'], 'airbase_name':'Manganese in PM2.5 (aerosol)', 'airbase_code':'01017', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Manganese (Mn)','Mn','Manganese'], 'castnet_parameter_name':'MN', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mn', 'bsc_parameter_name':'pm2p5mn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_MSA': {'long_parameter_name':'PM2.5 methanesulfonic acid', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':75.0, 'extreme_upper_monthly_median':25.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['MSA'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'pm2p5msa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Na+': {'long_parameter_name':'PM2.5 sodium', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['88184','88302'], 'airbase_name':'sodium in PM2.5 (aerosol)', 'airbase_code':'01668', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Sodium','Na+'], 'castnet_parameter_name':'NA', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Sodium aerosol - PM2.5'], 'chemical_formula':'Na', 'bsc_parameter_name':'pm2p5na', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'Na+ (sodium), PM2.5', 'WIGOS_number':'642'}}, +'PM2.5_NH4+': {'long_parameter_name':'PM2.5 ammonium', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['88301'], 'airbase_name':'Ammonium in PM2.5 (aerosol)', 'airbase_code':'01045', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Ammonium','AMMONIUM','NH4+','NH4'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Ammonium aerosol - PM2.5'], 'chemical_formula':'NH4', 'bsc_parameter_name':'pm2p5nh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_NH4NO3': {'long_parameter_name':'PM2.5 ammonium nitrate', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['88344'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'pm2p5nh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Ni': {'long_parameter_name':'PM2.5 nickel', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10000.0, 'extreme_upper_monthly_median':1000.0, 'aqs_code':['84136','88136'], 'airbase_name':'Nickel in PM2.5 (aerosol)', 'airbase_code':'01015', 'miteco_code':'', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Nickel (Ni)','Nickel','Ni'], 'castnet_parameter_name':'NI', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ni', 'bsc_parameter_name':'pm2p5ni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_NO3-': {'long_parameter_name':'PM2.5 nitrate', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':250.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':['82356','84306','88306'], 'airbase_name':'Nitrate in PM2.5 (aerosol)', 'airbase_code':'01046', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Nitrate','NITRATE','NO3'], 'castnet_parameter_name':'NO3', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Nitrate aerosol - PM2.5','Particulate nitrate - PM2.5'], 'chemical_formula':'NO3', 'bsc_parameter_name':'pm2p5no3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'NO3- (nitrate), PM2.5', 'WIGOS_number':'651'}}, +'PM2.5_OC': {'long_parameter_name':'PM2.5 organic carbon', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['84305','88305','88320','88355','88370', '88382'], 'airbase_name':'Organic carbon in PM2.5 (aerosol)', 'airbase_code':'01772', 'miteco_code':'', 'ebas_parameter_name':['organic_carbon','organic_carbon_corrected'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['OC(corr)','OC','OC_R','OC_T'], 'castnet_parameter_name':['OHTC','OCTC'], 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['OC-TOR-PM2.5','OC-TOT-PM2.5','Organic Carbon - PM2.5'], 'chemical_formula':'C', 'bsc_parameter_name':'pm2p5oc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Carbonaceous-organic material, fine', 'WIGOS_number':'671'}}, +'PM2.5_Pb': {'long_parameter_name':'PM2.5 lead', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':60000.0, 'extreme_upper_monthly_median':15000.0, 'aqs_code':['84128','88128'], 'airbase_name':'Lead in PM2.5 (aerosol)', 'airbase_code':'01012', 'miteco_code':'', 'ebas_parameter_name':['lead'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Lead (Pb)','Lead','Pb'], 'castnet_parameter_name':'PB', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Pb', 'bsc_parameter_name':'pm2p5pb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_Se': {'long_parameter_name':'PM2.5 selenium', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['84154','88154'], 'airbase_name':'Selenium in PM2.5 (aerosol)', 'airbase_code':'01048', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Selenium (Se)','Selenium','Se'], 'castnet_parameter_name':'SE', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Se', 'bsc_parameter_name':'pm2p5se', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_SO4--': {'long_parameter_name':'PM2.5 sulphate', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':['82453','84403','88403'], 'airbase_name':'sulphate in PM2.5 (aerosol)', 'airbase_code':'01047', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Sulphate','SULPHATE','SO4'], 'castnet_parameter_name':'SO4', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Sulphate aerosol - PM2.5'], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm2p5so4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'SO4= (sulfate), PM2.5', 'WIGOS_number':'622'}}, +'PM2.5_SO4--_NSS': {'long_parameter_name':'PM2.5 sulphate : non-sea salt', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm2p5so4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_SO4--_SS': {'long_parameter_name':'PM2.5 sulphate : sea salt', 'matrix':'pm2.5', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm2p5so4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_V': {'long_parameter_name':'PM2.5 vanadium', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['84164','88164'], 'airbase_name':'Vanedium in PM2.5 (aerosol)', 'airbase_code':'01049', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Vanadium (V)','Vanadium','V'], 'castnet_parameter_name':'VA', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'pm2p5v', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'V (Vanadium), PM2.5', 'WIGOS_number':'721'}}, +'PM2.5_Zn': {'long_parameter_name':'PM2.5 zinc', 'matrix':'pm2.5', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['84167','88167'], 'airbase_name':'Zinc in PM2.5 (aerosol)', 'airbase_code':'01063', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/m3'], 'naps_code':['Zinc (Zn)','Zinc','Zn'], 'castnet_parameter_name':'ZN', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'pm2p5zn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'Zn (Zinc), PM2.5', 'WIGOS_number':'723'}}, +'PM2.5_AERO_ABS_COEFF_370nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 370nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco370', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_467nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 467nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco467', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_470nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 470nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco470', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_520nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 520nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_522nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 522nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco522', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_525nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 525nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_528nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 528nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco528', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_530nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 530nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_550nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 550nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_565nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 565nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco565', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_590nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 590nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco590', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_637nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 637nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco637', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_652nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 652nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_660nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 660nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_670nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 670nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco670', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_880nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 880nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_ABS_COEFF_950nm': {'long_parameter_name':'PM2.5 aerosol absorption coefficient at 950nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absco950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_ABSAE_370-880nm': {'long_parameter_name':'angstrom exponent between 370 and 880 nm for PM2.5 absorption', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-880nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absae370-880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM2.5_ABSAE_370-950nm': {'long_parameter_name':'angstrom exponent between 370 and 950 nm for PM2.5 absorption', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-950nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absae370-950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM2.5_ABSAE_467-652nm': {'long_parameter_name':'angstrom exponent between 467 and 652 nm for PM2.5 absorption', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-652nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absae467-652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM2.5_ABSAE_467-660nm': {'long_parameter_name':'angstrom exponent between 467 and 660 nm for PM2.5 absorption', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-660nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5absae467-660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 450nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 520nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 525nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 530nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 532nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 550nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 635nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 700nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm':{'long_parameter_name':'PM2.5 aerosol light backscattering coefficient at 850nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_450nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 450nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_520nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 520nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_525nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 525nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_530nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 530nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_532nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 532nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_550nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 550nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_635nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 635nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_700nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 700nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_AERO_LIGHT_SCAT_COEFF_850nm': {'long_parameter_name':'PM2.5 aerosol light scattering coefficient at 850nm', 'matrix':'pm2.5', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm25', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_SCATAE_450-635nm': {'long_parameter_name':'angstrom exponent between 450 and 635 nm for PM2.5 scattering', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-635nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsae450-635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM2.5_SCATAE_450-700nm': {'long_parameter_name':'angstrom exponent between 450 and 700 nm for PM2.5 scattering', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-700nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lsae450-700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM2.5_BACKSCAT_FRAC_450nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 450nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_520nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 520nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_525nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 525nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_530nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 530nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_532nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 532nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_550nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 550nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_635nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 635nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_700nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 700nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_BACKSCAT_FRAC_850nm': {'long_parameter_name':'PM2.5 aerosol light backscattering fraction at 850nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5lbsf850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_ASY_525nm': {'long_parameter_name':'PM2.5 asymmetry factor at 525nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5asy525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM2.5_ASY_550nm': {'long_parameter_name':'PM2.5 asymmetry factor at 550nm', 'matrix':'pm2.5', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm2p5asy550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#PM1 +'PM1': {'long_parameter_name':'PM1 mass', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['87111'], 'airbase_name':'Particulate matter < 1 µm (aerosol)', 'airbase_code':'06002', 'miteco_code':'', 'ebas_parameter_name':['pm1_mass'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle mass concentration, PM1', 'WIGOS_number':'365'}}, +'PM1_Al': {'long_parameter_name':'PM1 aluminium', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'pm1al', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_As': {'long_parameter_name':'PM1 arsenic', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'pm1as', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BaP': {'long_parameter_name':'PM1 benzo[a]pyrene', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'pm1bap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BC': {'long_parameter_name':'PM1 black carbon', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['equivalent_black_carbon','equivalent_black_carbon_mass'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm1bc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_C': {'long_parameter_name':'PM1 carbon', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['total_carbon','total_carbon_corrected'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm1c', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Ca++': {'long_parameter_name':'PM1 calcium', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ca', 'bsc_parameter_name':'pm1ca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Cd': {'long_parameter_name':'PM1 cadmium', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cd', 'bsc_parameter_name':'pm1cd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'Cd (Cadmium), PM1', 'WIGOS_number':'683'}}, +'PM1_Cl-': {'long_parameter_name':'PM1 chloride', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cl', 'bsc_parameter_name':'pm1cl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'Cl- (chloride), PM1', 'WIGOS_number':'614'}}, +'PM1_Co': {'long_parameter_name':'PM1 cobalt', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Co', 'bsc_parameter_name':'pm1cobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Cr': {'long_parameter_name':'PM1 chromium', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cr', 'bsc_parameter_name':'pm1cr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Cu': {'long_parameter_name':'PM1 copper', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':750.0, 'extreme_upper_monthly_median':150.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cu', 'bsc_parameter_name':'pm1cu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_DUST': {'long_parameter_name':'PM1 dust', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1du', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_EC': {'long_parameter_name':'PM1 elemental carbon', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['elemental_carbon'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm1ec', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Elemental carbon, PM1', 'WIGOS_number':'624'}}, +'PM1_Fe': {'long_parameter_name':'PM1 iron', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Fe', 'bsc_parameter_name':'pm1fe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Hg': {'long_parameter_name':'PM1 mercury', 'matrix':'pm1', 'standard_units':'pg m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':3000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['mercury','mercury_PBM'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'pm1hg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_K+': {'long_parameter_name':'PM1 potassium', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'K', 'bsc_parameter_name':'pm1k', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Mg++': {'long_parameter_name':'PM1 magnesium', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':10.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mg', 'bsc_parameter_name':'pm1mg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Mn': {'long_parameter_name':'PM1 manganese', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mn', 'bsc_parameter_name':'pm1mn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_MSA': {'long_parameter_name':'PM1 methanesulfonic acid', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':75.0, 'extreme_upper_monthly_median':25.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'pm1msa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Na+': {'long_parameter_name':'PM1 sodium', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Na', 'bsc_parameter_name':'pm1na', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_NH4+': {'long_parameter_name':'PM1 ammonium', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Ammonium aerosol - PM1'], 'chemical_formula':'NH4', 'bsc_parameter_name':'pm1nh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_NH4NO3': {'long_parameter_name':'PM1 ammonium nitrate', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'pm1nh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'NH4NO3 (ammonium nitrate), PM1', 'WIGOS_number':'649'}}, +'PM1_Ni': {'long_parameter_name':'PM1 nickel', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10000.0, 'extreme_upper_monthly_median':1000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ni', 'bsc_parameter_name':'pm1ni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_NO3-': {'long_parameter_name':'PM1 nitrate', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':250.0, 'extreme_upper_monthly_median':75.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Nitrate aerosol - PM1'], 'chemical_formula':'NO3', 'bsc_parameter_name':'pm1no3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_OC': {'long_parameter_name':'PM1 organic carbon', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['organic_carbon','organic_carbon_corrected'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Organic Carbon - PM1'], 'chemical_formula':'C', 'bsc_parameter_name':'pm1oc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Pb': {'long_parameter_name':'PM1 lead', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':60000.0, 'extreme_upper_monthly_median':15000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['lead'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Pb', 'bsc_parameter_name':'pm1pb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Se': {'long_parameter_name':'PM1 selenium', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Se', 'bsc_parameter_name':'pm1se', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_SO4--': {'long_parameter_name':'PM1 sulphate', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Sulphate aerosol - PM1'], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm1so4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_SO4--_NSS': {'long_parameter_name':'PM1 sulphate : non-sea salt', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm1so4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_SO4--_SS': {'long_parameter_name':'PM1 sulphate : sea salt', 'matrix':'pm1', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':150.0, 'extreme_upper_monthly_median':30.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'pm1so4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_V': {'long_parameter_name':'PM1 vanadium', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'pm1v', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_Zn': {'long_parameter_name':'PM1 zinc', 'matrix':'pm1', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'pm1zn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_ABS_COEFF_370nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 370nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco370', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_467nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 467nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco467', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_470nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 470nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco470', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_520nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 520nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_522nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 522nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco522', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_525nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 525nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_528nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 528nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco528', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_530nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 530nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_550nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 550nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_565nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 565nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco565', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_590nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 590nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco590', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_637nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 637nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco637', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_652nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 652nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_660nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 660nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_670nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 670nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco670', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_880nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 880nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_AERO_ABS_COEFF_950nm': {'long_parameter_name':'PM1 aerosol absorption coefficient at 950nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_absorption_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absco950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light absorption coefficient, PM1', 'WIGOS_number':'316'}}, +'PM1_ABSAE_370-880nm': {'long_parameter_name':'angstrom exponent between 370 and 880 nm for PM1 absorption', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-880nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absae370-880', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM1_ABSAE_370-950nm': {'long_parameter_name':'angstrom exponent between 370 and 950 nm for PM1 absorption', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 370-950nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absae370-950', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM1_ABSAE_467-652nm': {'long_parameter_name':'angstrom exponent between 467 and 652 nm for PM1 absorption', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-652nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absae467-652', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM1_ABSAE_467-660nm': {'long_parameter_name':'angstrom exponent between 467 and 660 nm for PM1 absorption', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 467-660nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.6, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1absae467-660', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light absorption', 'WIGOS_number':'12149'}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 450nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 520nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 525nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 530nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 532nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 550nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 635nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 700nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm':{'long_parameter_name':'PM1 aerosol light backscattering coefficient at 850nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-5.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_backscattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_AERO_LIGHT_SCAT_COEFF_450nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 450nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_520nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 520nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_525nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 525nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_530nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 530nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_532nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 532nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_550nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 550nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_635nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 635nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_700nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 700nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_AERO_LIGHT_SCAT_COEFF_850nm': {'long_parameter_name':'PM1 aerosol light scattering coefficient at 850nm', 'matrix':'pm1', 'standard_units':'Mm-1', 'axis_label':'coefficient', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-10.0, 'extreme_upper_limit':5000.0, 'extreme_upper_monthly_median':500.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_light_scattering_coefficient'], 'ebas_matrix':'pm1', 'ebas_priority_units':['/Mm'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsco850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle light scattering coefficient, PM1', 'WIGOS_number':'322'}}, +'PM1_SCATAE_450-635nm': {'long_parameter_name':'angstrom exponent between 450 and 635 nm for PM1 scattering', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-635nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsae450-635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM1_SCATAE_450-700nm': {'long_parameter_name':'angstrom exponent between 450 and 700 nm for PM1 scattering', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'angstrom exponent 450-700nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':-2.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lsae450-700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for particle light scattering', 'WIGOS_number':'12148'}}, +'PM1_BACKSCAT_FRAC_450nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 450nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf450', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_520nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 520nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf520', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_525nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 525nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_530nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 530nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf530', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_532nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 532nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf532', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_550nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 550nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_635nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 635nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf635', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_700nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 700nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf700', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_BACKSCAT_FRAC_850nm': {'long_parameter_name':'PM1 aerosol light backscattering fraction at 850nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.5, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1lbsf850', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_ASY_525nm': {'long_parameter_name':'PM1 asymmetry factor at 525nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1asy525', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM1_ASY_550nm': {'long_parameter_name':'PM1 asymmetry factor at 550nm', 'matrix':'pm1', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pm1asy550', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#PRECIP +'Al_PREC': {'long_parameter_name':'aluminium in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':2000.0, 'aqs_code':['65342'], 'airbase_name':'aluminium (precip)', 'airbase_code':'00605', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'precal', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'As_PREC': {'long_parameter_name':'arsenic in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65339'], 'airbase_name':'Arsenic (precip)', 'airbase_code':'02018', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'precas', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BaP_PREC': {'long_parameter_name':'benzo[a]pyrene in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':'', 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'Benzo(a)pyrene (precip)', 'airbase_code':'00029', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'precbap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Ca++_PREC': {'long_parameter_name':'calcium in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65314'], 'airbase_name':'calcium (precip)', 'airbase_code':'00630', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ca', 'bsc_parameter_name':'precca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cd_PREC': {'long_parameter_name':'cadmium in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65332'], 'airbase_name':'Cadmium (precip)', 'airbase_code':'02014', 'miteco_code':'', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cd', 'bsc_parameter_name':'preccd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cl-_PREC': {'long_parameter_name':'chloride in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65316'], 'airbase_name':'chloride (precip)', 'airbase_code':'00632', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cl', 'bsc_parameter_name':'preccl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Co_PREC': {'long_parameter_name':'cobalt in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65113'], 'airbase_name':'Cobalt (precip)', 'airbase_code':'02064', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Co', 'bsc_parameter_name':'preccobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cr_PREC': {'long_parameter_name':'chromium in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65112'], 'airbase_name':'Chromium (precip)', 'airbase_code':'02016', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cr', 'bsc_parameter_name':'preccr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cu_PREC': {'long_parameter_name':'copper in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65333'], 'airbase_name':'Copper (precip)', 'airbase_code':'02073', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cu', 'bsc_parameter_name':'preccu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Fe_PREC': {'long_parameter_name':'iron in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':5.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':2000.0, 'aqs_code':['65334'], 'airbase_name':'Iron (precip)', 'airbase_code':'02065', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Fe', 'bsc_parameter_name':'precfe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg_PREC': {'long_parameter_name':'mercury in precipitaton', 'matrix':'precip', 'standard_units':'ng l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65329'], 'airbase_name':'Mercury (precip)', 'airbase_code':'02013', 'miteco_code':'', 'ebas_parameter_name':['mercury'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'prechg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'K+_PREC': {'long_parameter_name':'potassium in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65312'], 'airbase_name':'potassium (precip)', 'airbase_code':'00658', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'K', 'bsc_parameter_name':'preck', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Mg++_PREC': {'long_parameter_name':'magnesium in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65313'], 'airbase_name':'magnesium (precip)', 'airbase_code':'00660', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mg', 'bsc_parameter_name':'precmg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Mn_PREC': {'long_parameter_name':'manganese in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65335'], 'airbase_name':'Manganese (precip)', 'airbase_code':'02017', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mn', 'bsc_parameter_name':'precmn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'MSA_PREC': {'long_parameter_name':'methanesulfonic acid in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'precmsa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Na+_PREC': {'long_parameter_name':'sodium in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65311'], 'airbase_name':'sodium (precip)', 'airbase_code':'00669', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Na', 'bsc_parameter_name':'precna', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NH4+_PREC': {'long_parameter_name':'ammonium in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65318'], 'airbase_name':'ammonium (precip)', 'airbase_code':'00664', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4', 'bsc_parameter_name':'precnh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NH4NO3_PREC': {'long_parameter_name':'ammonium nitrate in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'precnh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Ni_PREC': {'long_parameter_name':'nickel in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65336'], 'airbase_name':'Nickel (precip)', 'airbase_code':'02015', 'miteco_code':'', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ni', 'bsc_parameter_name':'precni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NO3-_PREC': {'long_parameter_name':'nitrate in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['65321'], 'airbase_name':'nitrate (precip)', 'airbase_code':'00666', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NO3', 'bsc_parameter_name':'precno3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Pb_PREC': {'long_parameter_name':'lead in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65337'], 'airbase_name':'Lead (precip)', 'airbase_code':'02012', 'miteco_code':'', 'ebas_parameter_name':['lead'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Pb', 'bsc_parameter_name':'precpb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Se_PREC': {'long_parameter_name':'selenium in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Se', 'bsc_parameter_name':'precse', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_PREC': {'long_parameter_name':'sulphate in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65322'], 'airbase_name':'sulphate (precip)', 'airbase_code':'00719', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'precso4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_NSS_PREC':{'long_parameter_name':'sulphate: non-sea salt in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'sulphate_corrected (precip)', 'airbase_code':'00720', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'precso4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_SS_PREC': {'long_parameter_name':'sulphate: sea salt in precipitaton', 'matrix':'precip', 'standard_units':'mg l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'precso4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'V_PREC': {'long_parameter_name':'vanadium in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65164'], 'airbase_name':'vanadium (precip)', 'airbase_code':'00728', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'precv', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Zn_PREC': {'long_parameter_name':'zinc in precipitaton', 'matrix':'precip', 'standard_units':'ug l-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['65338'], 'airbase_name':'Zinc (precip)', 'airbase_code':'02063', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'precip', 'ebas_priority_units':['/m3','/l'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'preczn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +#WETDEP +'Al_WETDEP': {'long_parameter_name':'aluminium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'wetal', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'As_WETDEP': {'long_parameter_name':'arsenic wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'wetas', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BaP_PREC': {'long_parameter_name':'benzo[a]pyrene wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':'', 'extreme_lower_limit':'', 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'wetbap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Ca++_WETDEP': {'long_parameter_name':'calcium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ca', 'bsc_parameter_name':'wetca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cd_WETDEP': {'long_parameter_name':'cadmium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['cadmium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cd', 'bsc_parameter_name':'wetcd', 'identifiers':{'IUPAC_name':'cadmium', 'CAS_number':'7440-43-9', 'PubChem_CID':'23973', 'InChIKey':'BDOSMKKIYDKNTQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cl-_WETDEP': {'long_parameter_name':'chloride wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['chloride'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cl', 'bsc_parameter_name':'wetcl', 'identifiers':{'IUPAC_name':'chloride', 'CAS_number':'16887-00-6', 'PubChem_CID':'312', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-M', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Co_WETDEP': {'long_parameter_name':'cobalt wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Co', 'bsc_parameter_name':'wetcobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cr_WETDEP': {'long_parameter_name':'chromium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cr', 'bsc_parameter_name':'wetcr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Cu_WETDEP': {'long_parameter_name':'copper wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Cu', 'bsc_parameter_name':'wetcu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Fe_WETDEP': {'long_parameter_name':'iron wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Fe', 'bsc_parameter_name':'wetfe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg_WETDEP': {'long_parameter_name':'mercury wet deposition flux', 'matrix':'wetdep', 'standard_units':'pg m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['mercury'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'wethg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'K+_WETDEP': {'long_parameter_name':'potassium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['potassium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'K', 'bsc_parameter_name':'wetk', 'identifiers':{'IUPAC_name':'potassium(1+)', 'CAS_number':'24203-36-9', 'PubChem_CID':'813', 'InChIKey':'NPYPAHLBTDXSSS-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Mg++_WETDEP': {'long_parameter_name':'magnesium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['magnesium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mg', 'bsc_parameter_name':'wetmg', 'identifiers':{'IUPAC_name':'magnesium(2+)', 'CAS_number':'22537-22-0', 'PubChem_CID':'888', 'InChIKey':'JLVVSXFLKOJNIY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Mn_WETDEP': {'long_parameter_name':'manganese wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['manganese'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Mn', 'bsc_parameter_name':'wetmn', 'identifiers':{'IUPAC_name':'manganese', 'CAS_number':'7439-96-5', 'PubChem_CID':'23930', 'InChIKey':'PWHULOQIROXLJO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'MSA_WETDEP': {'long_parameter_name':'methanesulfonic acid wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['methanesulfonic_acid'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'CH4O3S', 'bsc_parameter_name':'wetmsa', 'identifiers':{'IUPAC_name':'methanesulfonic acid', 'CAS_number':'75-75-2', 'PubChem_CID':'6395', 'InChIKey':'AFVFQIVMOAPDHO-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Na+_WETDEP': {'long_parameter_name':'sodium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sodium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Na', 'bsc_parameter_name':'wetna', 'identifiers':{'IUPAC_name':'sodium(1+)', 'CAS_number':'17341-25-2', 'PubChem_CID':'923', 'InChIKey':'FKNQFGJONOIPTF-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NH4+_WETDEP': {'long_parameter_name':'ammonium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4', 'bsc_parameter_name':'wetnh4', 'identifiers':{'IUPAC_name':'azanium', 'CAS_number':'14798-03-9', 'PubChem_CID':'223', 'InChIKey':'QGZKDVFQNNGYKY-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NH4NO3_WETDEP': {'long_parameter_name':'ammonium nitrate wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ammonium_nitrate'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NH4NO3', 'bsc_parameter_name':'wetnh4no3', 'identifiers':{'IUPAC_name':'azanium;nitrate', 'CAS_number':'6484-52-2', 'PubChem_CID':'22985', 'InChIKey':'DVARTQFDIMZBAA-UHFFFAOYSA-O', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Ni_WETDEP': {'long_parameter_name':'nickel wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['nickel'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Ni', 'bsc_parameter_name':'wetni', 'identifiers':{'IUPAC_name':'nickel', 'CAS_number':'7440-02-0', 'PubChem_CID':'935', 'InChIKey':'PXHVJJICTQNCMI-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'NO3-_WETDEP': {'long_parameter_name':'nitrate wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['nitrate'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'NO3', 'bsc_parameter_name':'wetno3', 'identifiers':{'IUPAC_name':'nitrate', 'CAS_number':'14797-55-8', 'PubChem_CID':'943', 'InChIKey':'NHNBFGGVMKEFGY-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Pb_WETDEP': {'long_parameter_name':'lead wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['lead'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Pb', 'bsc_parameter_name':'wetpb', 'identifiers':{'IUPAC_name':'lead', 'CAS_number':'7439-92-1', 'PubChem_CID':'5352425', 'InChIKey':'WABPQHHGFIMREM-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Se_WETDEP': {'long_parameter_name':'selenium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['selenium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Se', 'bsc_parameter_name':'wetse', 'identifiers':{'IUPAC_name':'selenium', 'CAS_number':'7782-49-2', 'PubChem_CID':'6326970', 'InChIKey':'BUGBHKTXTAQXES-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_WETDEP': {'long_parameter_name':'sulphate wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_total'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'wetso4', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_NSS_WETDEP':{'long_parameter_name':'sulphate: non-sea salt wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_corrected'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'wetso4nss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SO4--_SS_WETDEP': {'long_parameter_name':'sulphate: sea salt wet deposition flux', 'matrix':'wetdep', 'standard_units':'ug m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['sulphate_seasalt'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'SO4', 'bsc_parameter_name':'wetso4ss', 'identifiers':{'IUPAC_name':'sulfate', 'CAS_number':'14808-79-8', 'PubChem_CID':'1117', 'InChIKey':'QAOWNCQODCNURD-UHFFFAOYSA-L', 'WIGOS_name':'', 'WIGOS_number':''}}, +'V_WETDEP': {'long_parameter_name':'vanadium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'wetv', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Zn_WETDEP': {'long_parameter_name':'zinc wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'wetzn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +#METEO +'WND_DIR_10M': {'long_parameter_name':'10m wind direction', 'matrix':'meteo', 'standard_units':'angular degrees', 'axis_label':'direction', 'minimum_resolution':15.0, 'extreme_lower_limit':1.0, 'extreme_upper_limit':360.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['61102', '61104'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'direction_angle', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'dir10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind direction at specified distance from reference surface', 'WIGOS_number':'12005'}}, +'WND_SPD_10M': {'long_parameter_name':'10m wind speed', 'matrix':'meteo', 'standard_units':'m s-1', 'axis_label':'speed', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['61101', '61103'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'speed', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'spd10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind speed at specified distance from reference surface', 'WIGOS_number':'12006'}}, +'TEMP_2M': {'long_parameter_name':'2m air temperature', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-658.85, 'extreme_upper_limit':891.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'TEMP_2M', 'noaa_isd_parameter_name':'air_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'t2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Air temperature (at specified distance from reference surface)', 'WIGOS_number':'224'}}, +'RH_2M': {'long_parameter_name':'average relative humidity', 'matrix':'meteo', 'standard_units':'unitless', 'axis_label':'humidity (%)', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62201'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'avg_rh', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rh2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Relative humidity (with respect to water)', 'WIGOS_number':'12249'}}, +'SST': {'long_parameter_name':'sea surface temperature', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':223.15, 'extreme_upper_limit':723.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'sst', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sst', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'DEW_PT_2M': {'long_parameter_name':'2m dew point', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-708.85, 'extreme_upper_limit':641.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62103'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'dpoint_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'td2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dew-point temperature (at specified distance from reference surface)', 'WIGOS_number':'225'}}, +'PRES_2M': {'long_parameter_name':'2m atmospheric pressure', 'matrix':'meteo', 'standard_units':'hPa', 'axis_label':'pressure', 'minimum_resolution':10.0, 'extreme_lower_limit':450.0, 'extreme_upper_limit':10900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['64101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'station_p', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pshltr', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Atmospheric pressure', 'WIGOS_number':'216'}}, +'SLP': {'long_parameter_name':'sea level pressure', 'matrix':'meteo', 'standard_units':'hPa', 'axis_label':'pressure', 'minimum_resolution':10.0, 'extreme_lower_limit':8600.0, 'extreme_upper_limit':10900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'sea_level_pressure', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'slp', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PREC_ACCUM': {'long_parameter_name':'liquid precipitation accumulation', 'matrix':'meteo', 'standard_units':'mm', 'axis_label':'accumulation', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':9998.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['65102'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'prec_depth', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'acprec', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SNOW_ACCUM': {'long_parameter_name':'snow accumulation', 'matrix':'meteo', 'standard_units':'cm', 'axis_label':'accumulation', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1200.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'snow_acc', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'acsnow', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SNOW_DEPTH': {'long_parameter_name':'snow depth', 'matrix':'meteo', 'standard_units':'cm', 'axis_label':'depth', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1200.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'si', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'si', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'CEILING_HEIGHT':{'long_parameter_name':'the height above ground level of the lowest cloud or obscuring phenomena layer aloft with 5/8 or more summation total sky cover.', 'matrix':'meteo', 'standard_units':'m', 'axis_label':'height', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':22000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'ceiling', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'cldbot', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Cloud base height', 'WIGOS_number':'531'}}, +'VIS_DIST': {'long_parameter_name':'visibility distance', 'matrix':'meteo', 'standard_units':'m', 'axis_label':'distance', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':160000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'distance', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vdist', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Visibility', 'WIGOS_number':'230'}}, +'CLOUD_CVG_FRAC':{'long_parameter_name':'cloud coverage fraction, taken as maximum cloud coverage across cloud layers', 'matrix':'meteo', 'standard_units':'unitless', 'axis_label':'coverage (%)', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'cloud_frac', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'cfracmax', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Cloud amount', 'WIGOS_number':'179'}}, +#TOTAL AOD +'AOD_380nm': {'long_parameter_name':'aerosol optical depth at 380nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_380nm'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od380aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_440nm': {'long_parameter_name':'aerosol optical depth at 440nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_440nm'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od440aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_500nm': {'long_parameter_name':'aerosol optical depth at 500nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Total_AOD_500nm[tau_a]'], 'aeronet_matrix':['oneill'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od500aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_500nm_COARSE': {'long_parameter_name':'coarse mode aerosol optical depth at 500nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Coarse_Mode_AOD_500nm[tau_c]'], 'aeronet_matrix':['oneill'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od500aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AOD_500nm_FINE': {'long_parameter_name':'fine mode aerosol optical depth at 500nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Fine_Mode_AOD_500nm[tau_f]'], 'aeronet_matrix':['oneill'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od500aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'FINE_MODE_FRAC_500nm':{'long_parameter_name':'fine mode aerosol optical depth fraction at 500nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'fraction', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['FineModeFraction_500nm[eta]'], 'aeronet_matrix':['oneill'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'fm500frac', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'AOD_550nm': {'long_parameter_name':'aerosol optical depth at 550nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od550aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_675nm': {'long_parameter_name':'aerosol optical depth at 675nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_675nm'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_870nm': {'long_parameter_name':'aerosol optical depth at 870nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_870nm'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AOD_1020nm': {'long_parameter_name':'aerosol optical depth at 1020nm', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'aerosol optical depth', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['aerosol_optical_depth'], 'ebas_matrix':'aerosol', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_1020nm'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'od1020aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'AE_440-870nm': {'long_parameter_name':'angstrom exponent between 440 and 870nm for aerosol optical depth', 'matrix':'aod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-870nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['440-870_Angstrom_Exponent'], 'aeronet_matrix':['directsun'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'ae440-870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol optical depth', 'WIGOS_number':'12150'}}, +#EXTINCTION AOD +'EXTAOD_440nm': {'long_parameter_name':'extinction aerosol optical depth at 440nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Total[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod440aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'EXTAOD_440nm_COARSE': {'long_parameter_name':'extinction coarse mode aerosol optical depth at 440nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Coarse[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod440aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_440nm_FINE': {'long_parameter_name':'extinction fine mode aerosol optical depth at 440nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Fine[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod440aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_550nm': {'long_parameter_name':'extinction aerosol optical depth at 550nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod550aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'EXTAOD_675nm': {'long_parameter_name':'extinction aerosol optical depth at 675nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Total[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'EXTAOD_675nm_COARSE': {'long_parameter_name':'extinction coarse mode aerosol optical depth at 675nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Coarse[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod675aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_675nm_FINE': {'long_parameter_name':'extinction fine mode aerosol optical depth at 675nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Fine[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod675aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_870nm': {'long_parameter_name':'extinction aerosol optical depth at 870nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Total[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'EXTAOD_870nm_COARSE': {'long_parameter_name':'extinction coarse mode aerosol optical depth at 870nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Coarse[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod870aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_870nm_FINE': {'long_parameter_name':'extinction fine mode aerosol optical depth at 870nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Fine[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod870aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_1020nm': {'long_parameter_name':'extinction aerosol optical depth at 1020nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Total[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod1020aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol optical depth, TSP', 'WIGOS_number':'325'}}, +'EXTAOD_1020nm_COARSE': {'long_parameter_name':'extinction coarse mode aerosol optical depth at 1020nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Coarse[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod1020aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAOD_1020nm_FINE': {'long_parameter_name':'extinction fine mode aerosol optical depth at 1020nm', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'extinction AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['AOD_Extinction-Fine[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extod1020aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'EXTAE_440-675nm': {'long_parameter_name':'angstrom exponent between 440nm and 675nm for extinction aerosol optical depth', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-675nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extae440-675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol optical depth', 'WIGOS_number':'12150'}}, +'EXTAE_440-870nm': {'long_parameter_name':'angstrom exponent between 440nm and 870nm for extinction aerosol optical depth', 'matrix':'extaod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-870nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Extinction_Angstrom_Exponent_440-870nm-Total'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'extae440-870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol optical depth', 'WIGOS_number':'12150'}}, +#ABSORPTION AOD +'ABSAOD_440nm': {'long_parameter_name':'absorption aerosol optical depth at 440nm', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Absorption_AOD[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod440aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol Absorption Optical Depth', 'WIGOS_number':'314'}}, +'ABSAOD_550nm': {'long_parameter_name':'absorption aerosol optical depth at 550nm', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod550aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol Absorption Optical Depth', 'WIGOS_number':'314'}}, +'ABSAOD_675nm': {'long_parameter_name':'absorption aerosol optical depth at 675nm', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Absorption_AOD[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol Absorption Optical Depth', 'WIGOS_number':'314'}}, +'ABSAOD_870nm': {'long_parameter_name':'absorption aerosol optical depth at 870nm', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Absorption_AOD[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol Absorption Optical Depth', 'WIGOS_number':'314'}}, +'ABSAOD_1020nm': {'long_parameter_name':'absorption aerosol optical depth at 1020nm', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Absorption_AOD[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod1020aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Aerosol Absorption Optical Depth', 'WIGOS_number':'314'}}, +'ABSAE_440-675nm':{'long_parameter_name':'angstrom exponent between 440nm and 675nm for absorption aerosol optical depth', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-675nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae440-675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol absorption optical depth', 'WIGOS_number':'12151'}}, +'ABSAE_440-870nm':{'long_parameter_name':'angstrom exponent between 440nm and 870nm for absorption aerosol optical depth', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-870nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':4.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Absorption_Angstrom_Exponent_440-870nm'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae440-870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol absorption optical depth', 'WIGOS_number':'12151'}}, +'ABSAE_675-870nm':{'long_parameter_name':'angstrom exponent between 675nm and 870nm for absorption aerosol optical depth', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 675-870nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae675-870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Ångström exponent for aerosol absorption optical depth', 'WIGOS_number':'12151'}}, +'ABSWDAE': {'long_parameter_name':'wavelength dependence of the absorption aerosol optical depth angstrom exponent', 'matrix':'absaod', 'standard_units':'unitless', 'axis_label':'wavelength dependence', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'abswdaeaero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#ABSORPTION AOD - BLACK CARBON +'BC_ABSAOD_440nm': {'long_parameter_name':'black carbon absorption aerosol optical depth at 440nm', 'matrix':'absaod-bc', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':[''], 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod440bc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BC_ABSAE_440-870nm':{'long_parameter_name':'angstrom exponent between 440nm and 870nm for black carbon absorption aerosol optical depth', 'matrix':'absaod-bc', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-870nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':[''], 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absae440-870bc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#ABSORPTION AOD - BROWN CARBON +'BrC_ABSAOD_440nm':{'long_parameter_name':'brown carbon absorption aerosol optical depth at 440nm', 'matrix':'absaod-brc', 'standard_units':'unitless', 'axis_label':'absorption AOD', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'absod440brc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#SCATTERING AOD +'SCATAE_440-675nm':{'long_parameter_name':'angstrom exponent between 440nm and 675nm for scattering aerosol optical depth', 'matrix':'scataod', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-675nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'lsae440-675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#SSA +'SSA_440nm': {'long_parameter_name':'single scattering albedo at 440nm', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'single scattering albedo', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Single_Scattering_Albedo[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sca440aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle single scattering albedo', 'WIGOS_number':'12146'}}, +'SSA_550nm': {'long_parameter_name':'single scattering albedo at 550nm', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'single scattering albedo', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sca550aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle single scattering albedo', 'WIGOS_number':'12146'}}, +'SSA_675nm': {'long_parameter_name':'single scattering albedo at 675nm', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'single scattering albedo', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Single_Scattering_Albedo[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sca675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle single scattering albedo', 'WIGOS_number':'12146'}}, +'SSA_870nm': {'long_parameter_name':'single scattering albedo at 870nm', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'single scattering albedo', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Single_Scattering_Albedo[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sca870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle single scattering albedo', 'WIGOS_number':'12146'}}, +'SSA_1020nm': {'long_parameter_name':'single scattering albedo at 1020nm', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'single scattering albedo', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Single_Scattering_Albedo[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sca1020aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle single scattering albedo', 'WIGOS_number':'12146'}}, +'SSAAE_440-675nm':{'long_parameter_name':'angstrom exponent between 440nm and 675nm for single scattering albedo', 'matrix':'ssa', 'standard_units':'unitless', 'axis_label':'angstrom exponent 440-675nm', 'minimum_resolution':np.NaN, 'extreme_lower_limit':np.NaN, 'extreme_upper_limit':np.NaN, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'scaae440-675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#ASYMMETRY/SPHERICITY FACTORS +'ASY_440nm': {'long_parameter_name':'asymmetry factor at 440nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Total[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy440aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_440nm_COARSE': {'long_parameter_name':'coarse mode asymmetry factor at 440nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Coarse[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy440aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_440nm_FINE': {'long_parameter_name':'fine mode asymmetry factor at 440nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Fine[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy440aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_675nm': {'long_parameter_name':'asymmetry factor at 675nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Total[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy675aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_675nm_COARSE': {'long_parameter_name':'coarse mode asymmetry factor at 675nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Coarse[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy675aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_675nm_FINE': {'long_parameter_name':'fine mode asymmetry factor at 675nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Fine[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy675aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_870nm': {'long_parameter_name':'asymmetry factor at 870nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Total[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy870aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_870nm_COARSE': {'long_parameter_name':'coarse mode asymmetry factor at 870nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Coarse[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy870aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_870nm_FINE': {'long_parameter_name':'fine mode asymmetry factor at 870nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Fine[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy870aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_1020nm': {'long_parameter_name':'asymmetry factor at 1020nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Total[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy1020aero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_1020nm_COARSE':{'long_parameter_name':'coarse mode asymmetry factor at 1020nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Coarse[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy1020aerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'ASY_1020nm_FINE': {'long_parameter_name':'fine mode asymmetry factor at 1020nm', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'asymmetry factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Asymmetry_Factor-Fine[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'asy1020aerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'SPH': {'long_parameter_name':'sphericity factor', 'matrix':'asy', 'standard_units':'unitless', 'axis_label':'sphericity factor', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Sphericity_Factor(%)'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sphaero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#REFRACTIVE INDICES +'RIN_REAL_440nm': {'long_parameter_name':'real part of the refractive index at 440nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':1.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Real_Part[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinreal440', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_REAL_675nm': {'long_parameter_name':'real part of the refractive index at 675nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':1.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Real_Part[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinreal675', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_REAL_870nm': {'long_parameter_name':'real part of the refractive index at 870nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':1.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Real_Part[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinreal870', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_REAL_1020nm':{'long_parameter_name':'real part of the refractive index at 1020nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':1.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Real_Part[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinreal1020', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_IMAG_440nm': {'long_parameter_name':'imaginary part of the refractive index at 440nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.1, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Imaginary_Part[440nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinimag440', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_IMAG_675nm': {'long_parameter_name':'imaginary part of the refractive index at 675nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.1, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Imaginary_Part[675nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinimag675', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_IMAG_870nm': {'long_parameter_name':'imaginary part of the refractive index at 870nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.1, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Imaginary_Part[870nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinimag870', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'RIN_IMAG_1020nm':{'long_parameter_name':'imaginary part of the refractive index at 1020nm', 'matrix':'rin', 'standard_units':'unitless', 'axis_label':'refractive index', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':0.1, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['Refractive_Index-Imaginary_Part[1020nm]'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rinimag1020', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#TOTAL VOLUME CONCENTRATION +'VCONC': {'long_parameter_name':'normalised total volume concentration (dV(r)/dln(r))', 'matrix':'vconc', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['VolC-T'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaero', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'VCONC_COARSE':{'long_parameter_name':'normalised total coarse mode volume concentration (dV(r)/dln(r))', 'matrix':'vconc', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['VolC-C'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerocoarse', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'VCONC_FINE': {'long_parameter_name':'normalised total fine mode volume concentration (dV(r)/dln(r))', 'matrix':'vconc', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['VolC-F'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerofine', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +#SIZE DISTRIBUTION +'VCONC_BIN1': {'long_parameter_name':'normalised volume concentration at 0.05um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.050000'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin1', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN2': {'long_parameter_name':'normalised volume concentration at 0.065604um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.065604'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN3': {'long_parameter_name':'normalised volume concentration at 0.086077um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.086077'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin3', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN4': {'long_parameter_name':'normalised volume concentration at 0.086077um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.112939'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin4', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN5': {'long_parameter_name':'normalised volume concentration at 0.148184um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.148184'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin5', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN6': {'long_parameter_name':'normalised volume concentration at 0.194429um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.194429'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin6', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN7': {'long_parameter_name':'normalised volume concentration at 0.255105um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.255105'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin7', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN8': {'long_parameter_name':'normalised volume concentration at 0.334716um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.334716'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin8', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN9': {'long_parameter_name':'normalised volume concentration at 0.439173um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.439173'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin9', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN10':{'long_parameter_name':'normalised volume concentration at 0.576227um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.576227'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN11':{'long_parameter_name':'normalised volume concentration at 0.756052um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.756052'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin11', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN12':{'long_parameter_name':'normalised volume concentration at 0.991996um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['0.991996'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin12', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN13':{'long_parameter_name':'normalised volume concentration at 1.301571um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['1.301571'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin13', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN14':{'long_parameter_name':'normalised volume concentration at 1.707757um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['1.707757'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin14', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN15':{'long_parameter_name':'normalised volume concentration at 2.240702um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['2.240702'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin15', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN16':{'long_parameter_name':'normalised volume concentration at 2.939966um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['2.939966'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin16', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN17':{'long_parameter_name':'normalised volume concentration at 3.857452um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['3.857452'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin17', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN18':{'long_parameter_name':'normalised volume concentration at 5.061260um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['5.061260'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin18', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN19':{'long_parameter_name':'normalised volume concentration at 6.640745um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['6.640745'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin19', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN20':{'long_parameter_name':'normalised volume concentration at 8.713145um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['8.713145'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin20', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN21':{'long_parameter_name':'normalised volume concentration at 11.432287um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['11.432287'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin21', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}}, +'VCONC_BIN22':{'long_parameter_name':'normalised volume concentration at 15.00um (dV(r)/dln(r))', 'matrix':'size', 'standard_units':'um3 um-2', 'axis_label':'volume concentration', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':['15.000000'], 'aeronet_matrix':['almucantar'], 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'vconcaerobin22', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle volume size distribution', 'WIGOS_number':'12153'}} +} + +###--------------------------------------------------------------------------------------------------### +###NETWORK STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary with details pertaining to standardised networks. +#information regarding the hierarchy of preferred data levels is detailed, by data network, and returns the ranking of a specific data level for data of a specific network. +#Data with a data level of a high defined ranking, is preferentially selected over data with a low data level ranking, when there is data duplication. + +standard_networks = { +'AERONET_v3_lev1.5':{'file_storage_type':'all_per_day', 'external_metadata_files':['AERONET_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'2.0':3, '1.5':2, '1.0':1}}, +'AERONET_v3_lev2.0':{'file_storage_type':'all_per_day', 'external_metadata_files':['AERONET_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'2.0':3, '1.5':2, '1.0':1}}, +'BJMEMC': {'file_storage_type':'all_per_day', 'external_metadata_files':['BJMEMC_META_YYYYMMDD.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'CANADA_NAPS': {'file_storage_type':'all_per_year', 'external_metadata_files':['CANADA_NAPS_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'CAPMoN': {'file_storage_type':'all_per_year', 'external_metadata_files':[], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'3.0':2,'2.0':1}}, +'CHILE_SINCA': {'file_storage_type':'site_per_multiyear', 'external_metadata_files':['CHILE_SINCA_META.txt'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'CNEMC': {'file_storage_type':'all_per_day', 'external_metadata_files':['CNEMC_META_YYYY.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'EANET': {'file_storage_type':'site_per_year', 'external_metadata_files':[], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'EBAS': {'file_storage_type':'site_per_multiyear', 'external_metadata_files':['EBAS_META_MANUAL.csv'], 'metadata_data_join_variable_name':'reference', 'data_level_hierarchy':{'2.0':4, '1.5':3, '1.0':2, '0.0':1}}, +'EEA_AIRBASE': {'file_storage_type':'site_per_year', 'external_metadata_files':[], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'EEA_AQ_eReporting':{'file_storage_type':'site_per_year', 'external_metadata_files':['EEA_AQ_eReporting_META.csv','EEA_AQ_eReporting_AIDE_D.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'E1a':2,'E2a':1}}, +'JAPAN_NIES': {'file_storage_type':'all_per_year', 'external_metadata_files':['JAPAN_NIES_META_YYYY.txt'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'MEXICO_CDMX': {'file_storage_type':'all_per_year', 'external_metadata_files':['MEXICO_CDMX_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'MITECO': {'file_storage_type':'all_per_year', 'external_metadata_files':[], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'official':2, 'unofficial':1}}, +'NOAA_ISD': {'file_storage_type':'site_per_year', 'external_metadata_files':['isd-history.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'variable':1}}, +'SEARCH': {'file_storage_type':'all_per_year', 'external_metadata_files':[], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'UK_AIR': {'file_storage_type':'all_per_year', 'external_metadata_files':['UK_AIR_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'US_EPA_AirNow_DOS':{'file_storage_type':'site_per_year', 'external_metadata_files':['US_EPA_AirNow_DOS_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'US_EPA_AQS': {'file_storage_type':'all_per_year', 'external_metadata_files':['aqs_monitors.csv','aqs_sites.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'US_EPA_CASTNET': {'file_storage_type':'all_per_year', 'external_metadata_files':['CASTNET_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'variable':1}}, +'US_NADP_AMNet': {'file_storage_type':'all', 'external_metadata_files':['US_NADP_AMNet_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'US_NADP_AMoN': {'file_storage_type':'all', 'external_metadata_files':['US_NADP_AMoN_META.csv'], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'WMO_WDCGG': {'file_storage_type':'site_per_multiyear', 'external_metadata_files':[''], 'metadata_data_join_variable_name':'', 'data_level_hierarchy':{'none':1}}, +'GHOST': {}, +'GHOST-PUBLIC': {} +} + +###--------------------------------------------------------------------------------------------------### +###TEMPORAL RESOLUTION STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary multiple variables associated with standard temporal resolution output codes + +standard_temporal_resolutions = { +'H': {'temporal_resolution_datetime_frequency':'H', 'temporal_resolution_path':'hourly', 'descriptive_temporal_resolution':'hours'}, +'3H': {'temporal_resolution_datetime_frequency':'3H', 'temporal_resolution_path':'3hourly', 'descriptive_temporal_resolution':'hours'}, +'6H': {'temporal_resolution_datetime_frequency':'6H', 'temporal_resolution_path':'6hourly', 'descriptive_temporal_resolution':'hours'}, +'D': {'temporal_resolution_datetime_frequency':'D', 'temporal_resolution_path':'daily', 'descriptive_temporal_resolution':'days'}, +'M': {'temporal_resolution_datetime_frequency':'MS', 'temporal_resolution_path':'monthly', 'descriptive_temporal_resolution':'months'}, +'HI': {'temporal_resolution_datetime_frequency':'H', 'temporal_resolution_path':'hourly_instantaneous', 'descriptive_temporal_resolution':'hours'}, +'3HI':{'temporal_resolution_datetime_frequency':'3H', 'temporal_resolution_path':'3hourly_instantaneous', 'descriptive_temporal_resolution':'hours'}, +'6HI':{'temporal_resolution_datetime_frequency':'6H', 'temporal_resolution_path':'6hourly_instantaneous', 'descriptive_temporal_resolution':'hours'} +} + +###--------------------------------------------------------------------------------------------------### +###DATA VARIABLE STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary with details pertaining to standardised data variables. +#These data variables include time, the measured parameter variable, as well as variables which inform of the quality of each separate measurement. + +def get_standard_data(parameter_details): + + standard_data = { + #TIME + 'time': {'value':[], 'standard_name':'time', 'long_name':'time', 'units':'minutes since 0001-01-01 00:00:00', 'data_type':np.uint32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Integer time in minutes since 0001-01-01 00:00 UTC. Time given refers to the start of the time window the measurement is representative of (temporal resolution).'}, + + #MEASUREMENT VALUES + parameter_details['bsc_parameter_name']: {'value':[], 'standard_name':parameter_details['long_parameter_name'], 'long_name':parameter_details['long_parameter_name'], 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Measured value of surface {} for the stated temporal resolution.'.format(parameter_details['long_parameter_name'])}, + + #PARAMETERS INFORMING QUALITY OF MEASUREMENT + 'temporal_resolution': {'value':[], 'standard_name':'temporal resolution', 'long_name':'temporal measurement resolution', 'units':'minutes', 'data_type':np.uint16, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Temporal resolution that a specific measurement is representative of. Reported as an integer string (in minutes). If measured resolution is instantaneous, the given integer is 1.'}, + 'reported_lower_limit_of_detection_per_measurement':{'value':[], 'standard_name':'reported lower limit of detection per measurement', 'long_name':'reported lower limit of detection per measurement', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Reported lower limit of detection of measurement methodology, for a specific measurement, in {}.'.format(parameter_details['standard_units'])}, + 'reported_upper_limit_of_detection_per_measurement':{'value':[], 'standard_name':'reported upper limit of detection per measurement', 'long_name':'reported upper limit of detection per measurement', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Reported upper limit of detection of measurement methodology, for a specific measurement, in {}.'.format(parameter_details['standard_units'])}, + 'reported_uncertainty_per_measurement': {'value':[], 'standard_name':'reported measurement uncertainty per measurement', 'long_name':'reported measurement uncertainty per measurement', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Reported measurement uncertainty (±) of methodology, for a specific measurement. In principal this refers to the inherent uncertainty on every measurement as a function of the quadratic addition of the accuracy and precision metrics (at the same confidence interval), but is often reported incosistently e.g. being solely determined from random errors (i.e. just the measurement precision). This is given in absolute terms in {}.'.format(parameter_details['standard_units'])}, + 'derived_uncertainty_per_measurement': {'value':[], 'standard_name':'derived measurement uncertainty per measurement', 'long_name':'derived measurement uncertainty per measurement', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Derived measurement uncertainty (±) of methodology, for a specific measurement. This is calculated through the quadratic addition of reported (or if not available, documented) accuracy and precision metrics. This is given in absolute terms in {}.'.format(parameter_details['standard_units'])}, + 'day_night_code': {'value':[], 'standard_name':'day/night code', 'long_name':'day/night code per measurement', 'units':'unitless', 'data_type':np.uint8, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Binary indication if measurement was made during the day or night. Day=0, Night=1. The classification is made by calculating the solar elevation angle for a latitude/longitude/measurement height at a mid-measurement window timestamp. If the solar elevation angle is > 0, it is classed as daytime, otherwise it is nightime. Classification is 255 if cannot be made.'}, + 'weekday_weekend_code': {'value':[], 'standard_name':'weekday/weekend code', 'long_name':'weekday/weekend code per measurement', 'units':'unitless', 'data_type':np.uint8, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Binary indication if measurement was made during the weekday or weekend. Weekday=0, Weekend=1. The classification is made by evaluating if the local-time of a mid-measurement window timestamp falls on a weekday or on the weekend. Classification is 255 if cannot be made.'}, + 'season_code': {'value':[], 'standard_name':'season code', 'long_name':'season code per measurement', 'units':'unitless', 'data_type':np.uint8, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Code decreeing if measurement was made during the Spring, Summer, Autumn or Winter Seasons. Spring=0, Summer=1, Autumn=2, Winter=3. The classification is made by evaluating which season the local-time of a mid-measurement window timestamp falls in.'}, + 'flag': {'value':[], 'standard_name':'flags', 'long_name':'data reporter provided standardised flags', 'units':'unitless', 'data_type':object, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'List of associated data flag codes per measurement, indicating the data quality of a specific measurement, provided by the data reporter. Fill value code of 255.'}, + 'qa': {'value':[], 'standard_name':'qa', 'long_name':'qa standardised data flags', 'units':'unitless', 'data_type':object, 'string_format':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'List of derived quality assurance flag codes per measurement, informing on the quality associated with each observation, determined by multiple scientific quality control/assurance checks. Fill value code of 255.'}, + } + + return standard_data + +###--------------------------------------------------------------------------------------------------### +###METADATA VARIABLE STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary with details pertaining to standardised metadata variables. +#These metadata variables refers to information which provides qualitative information about measurements, typically across large swathes of time. + +def get_standard_metadata(parameter_details): + + standard_metadata = { + #VERSION OF GHOST + 'GHOST_version':{'value':[], 'standard_name':'GHOST version', 'long_name':'GHOST version', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Version of GHOST.'}, + + #NETWORK STATION REFERENCE + 'station_reference':{'value':[], 'standard_name':'station reference', 'long_name':'station reference identifier', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'reference ID for station.'}, + + #NETWORK PROVIDED STATION INFORMATION + 'WIGOS_station_identifier': {'value':[], 'standard_name':'WIGOS station identifier', 'long_name':'WIGOS station identifier', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'WIGOS station identifier (WSI).'}, + 'station_timezone': {'value':[], 'standard_name':'station timezone', 'long_name':'station timezone', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of the local timezone that the measuring station is located in. This is automatically generated using Timezone Finder Python package (taking longitude and latitude as inputs).'}, + 'latitude': {'value':[], 'standard_name':'latitude', 'long_name':'latitude', 'units':'decimal degrees North', 'data_type':np.float64, 'string_format':np.NaN, 'metadata_type':'STATION POSITION', 'identifiers':{'WIGOS_name':''}, 'description':'Geodetic latitude of measuring instrument, in decimal degrees North, following the stated horizontal datum.'}, + 'longitude': {'value':[], 'standard_name':'longitude', 'long_name':'longitude', 'units':'decimal degrees East', 'data_type':np.float64, 'string_format':np.NaN, 'metadata_type':'STATION POSITION', 'identifiers':{'WIGOS_name':''}, 'description':'Geodetic longitude of measuring instrument, in decimal degrees East, following the stated horizontal datum.'}, + 'altitude': {'value':[], 'standard_name':'altitude', 'long_name':'altitude relative to mean sea level', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION POSITION', 'identifiers':{'WIGOS_name':''}, 'description':'Altitude of the ground level at the station, relative to the stated vertical datum, in metres.'}, + 'sampling_height': {'value':[], 'standard_name':'sampling height', 'long_name':'sampling height relative to ground', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION POSITION', 'identifiers':{'WIGOS_name':''}, 'description':'Height above the ground of the inlet/instrument/sampler, in metres.'}, + 'measurement_altitude': {'value':[], 'standard_name':'measurement altitude', 'long_name':'measurement altitude relative to mean sea level', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION POSITION', 'identifiers':{'WIGOS_name':''}, 'description':'Altitude of the inlet/instrument/sampler, relative to the stated vertical datum, in metres.'}, + 'ellipsoid': {'value':[], 'standard_name':'ellipsoid', 'long_name':'ellipsoid', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':'CoordinateReferenceSystem'}, 'description':'The ellipsoidal model of the earth used as a basis for 2D and 3D geographic coordinate systems.'}, + 'horizontal_datum': {'value':[], 'standard_name':'horizontal datum', 'long_name':'horizontal datum', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':'CoordinateReferenceSystem'}, 'description':"Name of the horizontal datum used in defining geodetic latitudes and longitudes on the Earth's surface. The datum is set when positioning an ellipsoid model of the Earth to an anchor point. If not explicitely stated then this is assumed to be 'World Geodetic System 1984'."}, + 'vertical_datum': {'value':[], 'standard_name':'vertical datum', 'long_name':'vertical datum', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':'CoordinateReferenceSystem'}, 'description':"Name of the vertical datum used to define vertical elevation on the Earth. The datum is a surface of zero elevation to which other heights can be reference against. If not explicitely stated then this is assumed to be 'tidal - mean sea level'."}, + 'projection': {'value':[], 'standard_name':'projection', 'long_name':'projection', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':"Name of the projected coordinate system of the original provided station position x, y coordinates. If the original coordinates are not projected, then this is set as 'geographic'."}, + 'distance_to_building': {'value':[], 'standard_name':'distance to building', 'long_name':'distance to the nearest building', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Distance to the nearest building of the inlet/instrument/sampler, in metres.'}, + 'distance_to_kerb': {'value':[], 'standard_name':'distance to kerb', 'long_name':'distance to the street kerb', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Distance to the street kerb of the inlet/instrument/sampler, in metres.'}, + 'distance_to_junction': {'value':[], 'standard_name':'distance to junction', 'long_name':'distance to the nearest road junction', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Distance to the nearest road junction of the inlet/instrument/sampler, in metres.'}, + 'distance_to_source': {'value':[], 'standard_name':'distance to source', 'long_name':'distance to the main emission source', 'units':'km', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Distance to the main emission source (see variable: "main_emission_source") of the inlet/instrument/sampler, in kilometres.'}, + 'street_width': {'value':[], 'standard_name':'street width', 'long_name':'width of the street', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Width of the street where measurements are being made (if applicable), in metres.'}, + 'street_type': {'value':[], 'standard_name':'street type', 'long_name':'type of street', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Type of street where measurements are being made (if applicable).'}, + 'daytime_traffic_speed': {'value':[], 'standard_name':'daytime traffic speed', 'long_name':'average daytime speed of passing traffic', 'units':'km hr-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Average daytime speed of the passing traffic where measurements are being made (if applicable), in kilometres per hour.'}, + 'daily_passing_vehicles': {'value':[], 'standard_name':'daily passing vehicles', 'long_name':'average daily number of passing vehicles', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Average number of vehicles passing daily.'}, + 'data_level': {'value':[], 'standard_name':'data level', 'long_name':'data level', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Data level of data reported. This varies per network. If data level is variable per measurement, and not static per reported file, then this is set as "variable". If there is no reported data level this is set as "none"'}, + 'climatology': {'value':[], 'standard_name':'climatology', 'long_name':'climatology', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of the climatology of which the observations pertain to.'}, + 'station_name': {'value':[], 'standard_name':'station name', 'long_name':'station name', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of station where the measurement was conducted.'}, + 'city': {'value':[], 'standard_name':'city', 'long_name':'city', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of the city the station is located in.'}, + 'country': {'value':[], 'standard_name':'country', 'long_name':'country', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':'TerritoryName'}, 'description':'Name of the country the station is located in.'}, + 'administrative_country_division_1':{'value':[], 'standard_name':'administrative country division 1', 'long_name':'administrative country division 1', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of the first (i.e. largest) country administrative division in which the station lies, e.g. countries within soverign state, state, province, county etc. These are defined for the purposes of managing of land and the affairs of people. This is automatically generated using Reverse Geocoder Python package (taking longitude and latitude as inputs).'}, + 'administrative_country_division_2':{'value':[], 'standard_name':'administrative country division 2', 'long_name':'administrative country division 2', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Name of the second (i.e. second largest) country administrative division in which the station lies, e.g. countries within soverign state, state, province, county etc. These are defined for the purposes of managing of land and the affairs of people. This is automatically generated using Reverse Geocoder Python package (taking longitude and latitude as inputs).'}, + 'population': {'value':[], 'standard_name':'population', 'long_name':'population', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Population size of the nearest urban settlement.'}, + 'representative_radius': {'value':[], 'standard_name':'representative_radius', 'long_name':'representative_radius', 'units':'km', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'Representativeness'}, 'description':'Radius of representativity of the measurements made (i.e. for what distance scale around the sampling point would the measurements be very similar?), given in kilometres. A quantitative version of the "measurement_scale" classification.'}, + 'network': {'value':[], 'standard_name':'network', 'long_name':'data network', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'The name of the network which reports data for the specific station in question.'}, + 'associated_networks': {'value':[], 'standard_name':'other associated networks', 'long_name':'other associated networks', 'units':'unitless', 'data_type':object, 'string_format':'long', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'String pair of associated network name and station reference. Format: network1:station_reference1;network2:station_reference2'}, + + #NETWORK PROVIDED STANDARDISED CLASSIFICATIONS + 'area_classification': {'value':[], 'standard_name':'area classification', 'long_name':'standardised network provided area classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, describing type of area a measurement station is situated in.'}, + 'station_classification':{'value':[], 'standard_name':'station classification', 'long_name':'standardised network provided station classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, categorising the type of air measured by a station.'}, + 'main_emission_source': {'value':[], 'standard_name':'main emission source', 'long_name':'standardised network provided main emission source', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, describing the main emission source influencing air measured at a station.'}, + 'land_use': {'value':[], 'standard_name':'land use', 'long_name':'standardised network provided land use type', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, describing the dominant land use in the area of the reporting station.'}, + 'terrain': {'value':[], 'standard_name':'terrain', 'long_name':'standardised network provided terrain type', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, describing the dominant terrain in the area of the reporting station.'}, + 'measurement_scale': {'value':[], 'standard_name':'measurement scale', 'long_name':'standardised network provided measurement scale', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'STATION CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised network provided classification, a denotation of the geographic scope of the air quality measurements made.'}, + + #GLOBALLY GRIDDED CLASSIFICATIONS + 'ESDAC_Iwahashi_landform_classification': {'value':[], 'standard_name':'ESDAC Iwahashi landform classification', 'long_name':'ESDAC Iwahashi landform classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'European Soil Data Centre (ESDAC) Iwahashi landform classification. The classification presents relief classes which are classified using an unsupervised nested-means algorithms and a three part geometric signature. Slope gradient, surface texture and local convexity are calculated based on the SRTM30 digital elevation model, within a given window size and classified according to the inherent data set properties. This is a dynamic landform classification method. Native resolution of 0.0083 x 0.0083 degrees. A correction for coastal sites is made: if the native class is "water", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'ESDAC_modal_Iwahashi_landform_classification_5km': {'value':[], 'standard_name':'ESDAC modal Iwahashi landform classification 5km', 'long_name':'ESDAC modal Iwahashi landform classification in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal European Soil Data Centre (ESDAC) Iwahashi landform classification in radius of 5km around station location.'}, + 'ESDAC_modal_Iwahashi_landform_classification_25km':{'value':[], 'standard_name':'ESDAC modal Iwahashi landform classification 25km', 'long_name':'ESDAC modal Iwahashi landform classification in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal European Soil Data Centre (ESDAC) Iwahashi landform classification in radius of 25km around station location.'}, + 'ESDAC_Meybeck_landform_classification': {'value':[], 'standard_name':'ESDAC Meybeck landform classification', 'long_name':'ESDAC Meybeck landform classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'European Soil Data Centre (ESDAC) Meybeck landform classification. The classification presents relief classes which are calculated based on the relief roughness. Roughness and elevation are classified based on a digital elevation model according to static thresholds, with a given window size. This is a static landform classification method. Native resolution of 0.0083 x 0.0083 degrees. A correction for coastal sites is made: if the native class is "water", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'ESDAC_modal_Meybeck_landform_classification_5km': {'value':[], 'standard_name':'ESDAC modal Meybeck landform classification 5km', 'long_name':'ESDAC modal Meybeck landform classification in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal European Soil Data Centre (ESDAC) Meybeck landform classification in radius of 5km around station location.'}, + 'ESDAC_modal_Meybeck_landform_classification_25km': {'value':[], 'standard_name':'ESDAC modal Meybeck landform classification 25km', 'long_name':'ESDAC modal Meybeck landform classification in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal European Soil Data Centre (ESDAC) Meybeck landform classification in radius of 25km around station location.'}, + 'GHSL_settlement_model_classification': {'value':[], 'standard_name':'GHSL settlement model classification', 'long_name':'GHSL settlement model classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) settlement model classification (technical label: GHS_SMOD_POPMT_GLOBE_R2019A). The classification delineates and classify settlement typologies via a logic of population size, population and built-up area densities as a refinement of the ‘degree of urbanization’ method described by EUROSTAT. The classification is derived by using the GHS_POP_MT_GLOBE_R2019A and GHS_BUILT_LDSMT_GLOBE_R2018A products. The GHS Settlement Model grid is an improvement of the GHS Settlement Grid (R2016A) introducing a more detailed classification of settlements in two levels, also called ‘refined degree of urbanization’. The Settlement Model is provided at detailed level (Second Level - L2). The First Level, as a porting of the Degree of Urbanization adopted by EUROSTAT can be obtained aggregating L2. Native resolution of 1.0 x 1.0 kilometres.'}, + 'GHSL_modal_settlement_model_classification_5km': {'value':[], 'standard_name':'GHSL modal settlement model classification 5km', 'long_name':'GHSL modal settlement model classification in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal Global Human Settlement Layer (GHSL) settlement model classification in radius of 5km around station location.'}, + 'GHSL_modal_settlement_model_classification_25km': {'value':[], 'standard_name':'GHSL modal settlement model classification 25km', 'long_name':'GHSL modal settlement model classification in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Modal Global Human Settlement Layer (GHSL) settlement model classification in radius of 25km around station location.'}, + 'Joly-Peuch_classification_code': {'value':[], 'standard_name':'Joly-Peuch classification code', 'long_name':'Joly-Peuch classification code', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Joly-Peuch European classification code (range of 1-10) designed to objectively stratify stations between those displaying rural and urban signatures (most rural == 1, most urban == 10). This classification is objectively made per species. The species that this is done for are: O3, NO2, SO2, CO, PM10, PM2.5. See reference here: https://www.sciencedirect.com/science/article/abs/pii/S1352231011012088'}, + 'Koppen-Geiger_classification': {'value':[], 'standard_name':'Koppen-Geiger classification', 'long_name':'Koppen-Geiger classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'ClimateZone'}, 'description':'Koppen-Geiger classification, classifying the global climates into 5 main groups (30 total groups with subcategories). Native resolution of 0.0083 x 0.0083 degrees. A correction for coastal sites is made: if the native class is "water", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water". See citation: Beck, H.E., N.E. Zimmermann, T.R. McVicar, N. Vergopolan, A. Berg, E.F. Wood: Present and future Köppen-Geiger climate classification maps at 1-km resolution, Nature Scientific Data, 2018.'}, + 'Koppen-Geiger_modal_classification_5km': {'value':[], 'standard_name':'Koppen-Geiger modal classification 5km', 'long_name':'Koppen-Geiger classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'ClimateZone'}, 'description':'Modal Koppen-Geiger classification in radius of 5km around station location.'}, + 'Koppen-Geiger_modal_classification_25km': {'value':[], 'standard_name':'Koppen-Geiger modal classification 25km', 'long_name':'Koppen-Geiger classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'ClimateZone'}, 'description':'Modal Koppen-Geiger classification in radius of 25km around station location.'}, + 'MODIS_MCD12C1_v6_IGBP_land_use': {'value':[], 'standard_name':'MODIS MCD12C1 v6 IGBP land use', 'long_name':'MODIS MCD12C1 v6 IGBP land use', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverIGBP'}, 'description':'Majority land use class from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the International Geosphere-Biosphere Programme (IGBP) classification. Native resolution of 0.05 x 0.05 degrees. See dataset user guide here: https://lpdaac.usgs.gov/documents/101/MCD12_User_Guide_V6.pd. A correction for coastal sites is made: if the native class is "water bodies", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'MODIS_MCD12C1_v6_modal_IGBP_land_use_5km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 IGBP modal land use 5km', 'long_name':'MODIS MCD12C1 v6 IGBP modal land use in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverIGBP'}, 'description':'Modal land use in radius of 5km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the International Geosphere-Biosphere Programme (IGBP) classification.'}, + 'MODIS_MCD12C1_v6_modal_IGBP_land_use_25km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 IGBP modal land use 25km', 'long_name':'MODIS MCD12C1 v6 IGBP modal land use in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverIGBP'}, 'description':'Modal land use in radius of 25km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the International Geosphere-Biosphere Programme (IGBP) classification.'}, + 'MODIS_MCD12C1_v6_UMD_land_use': {'value':[], 'standard_name':'MODIS MCD12C1 v6 UMD land use', 'long_name':'MODIS MCD12C1 v6 UMD land use', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverUMD'}, 'description':'Majority land use class from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the University of Maryland (UMD) classification. Native resolution of 0.05 x 0.05 degrees. See dataset user guide here: https://lpdaac.usgs.gov/documents/101/MCD12_User_Guide_V6.pd. A correction for coastal sites is made: if the native class is "water bodies", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'MODIS_MCD12C1_v6_modal_UMD_land_use_5km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 UMD modal land use 5km', 'long_name':'MODIS MCD12C1 v6 UMD modal land use in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverUMD'}, 'description':'Modal land use in radius of 5km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the University of Maryland (UMD) classification.'}, + 'MODIS_MCD12C1_v6_modal_UMD_land_use_25km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 UMD modal land use 25km', 'long_name':'MODIS MCD12C1 v6 UMD modal land use in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverUMD'}, 'description':'Modal land use in radius of 25km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6, using the University of Maryland (UMD) classification.'}, + 'MODIS_MCD12C1_v6_LAI': {'value':[], 'standard_name':'MODIS MCD12C1 v6 LAI', 'long_name':'MODIS MCD12C1 v6 Leaf Area Index', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverLAI'}, 'description':'Majority Leaf Area Index class from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6. Native resolution of 0.05 x 0.05 degrees. See dataset user guide here: https://lpdaac.usgs.gov/documents/101/MCD12_User_Guide_V6.pd. A correction for coastal sites is made: if the native class is "water bodies", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'MODIS_MCD12C1_v6_modal_LAI_5km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 LAI modal 5km', 'long_name':'MODIS MCD12C1 v6 modal Leaf Area Index in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverLAI'}, 'description':'Modal Leaf Area Index in radius of 5km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6.'}, + 'MODIS_MCD12C1_v6_modal_LAI_25km': {'value':[], 'standard_name':'MODIS MCD12C1 v6 LAI modal 25km', 'long_name':'MODIS MCD12C1 v6 modal Leaf Area Index in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'SurfaceCoverLAI'}, 'description':'Modal Leaf Area Index in radius of 25km around the station location from the Moderate Resolution Imaging Spectroradiometer (MODIS) Land Cover Climate Modeling Grid (CMG) MCD12C1 version 6.'}, + 'WMO_region': {'value':[], 'standard_name':'WMO region', 'long_name':'WMO region code', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':'WMORegion'}, 'description':'World Meteorological Organization (WMO) region of station. The available regions are: Africa, Asia, South America, "Northern America, Central America and the Caribbean", South-West Pacific, Europe and Antarctica.'}, + 'WWF_TEOW_terrestrial_ecoregion': {'value':[], 'standard_name':'WWF TEOW terrestrial ecoregion', 'long_name':'WWF TEOW terrestrial ecoregion', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Terrestrial Ecoregions of the World (TEOW) World Wildlife Foundation (WWF) classification. There are 825 terrestrial ecoregions. Ecoregions are relatively large units of land containing distinct assemblages of natural communities and species, with boundaries that approximate the original extent of natural communities prior to major land-use change. See citation: Olson, D. M., Dinerstein, E., Wikramanayake, E. D., Burgess, N. D., Powell, G. V. N., Underwood, E. C., DAmico, J. A., Itoua, I., Strand, H. E., Morrison, J. C., Loucks, C. J., Allnutt, T. F., Ricketts, T. H., Kura, Y., Lamoreux, J. F., Wettengel, W. W., Hedao, P., Kassem, K. R. 2001. Terrestrial ecoregions of the world: a new map of life on Earth. Bioscience 51(11):933-938.'}, + 'WWF_TEOW_biogeographical_realm': {'value':[], 'standard_name':'WWF TEOW biogeographical realm', 'long_name':'WWF TEOW biogeographical realm', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Terrestrial Ecoregions of the World (TEOW) World Wildlife Foundation (WWF) classification. There are 8 biogeographical realms. See citation: Olson, D. M., Dinerstein, E., Wikramanayake, E. D., Burgess, N. D., Powell, G. V. N., Underwood, E. C., DAmico, J. A., Itoua, I., Strand, H. E., Morrison, J. C., Loucks, C. J., Allnutt, T. F., Ricketts, T. H., Kura, Y., Lamoreux, J. F., Wettengel, W. W., Hedao, P., Kassem, K. R. 2001. Terrestrial ecoregions of the world: a new map of life on Earth. Bioscience 51(11):933-938.'}, + 'WWF_TEOW_biome': {'value':[], 'standard_name':'WWF TEOW biome', 'long_name':'WWF TEOW biome', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Terrestrial Ecoregions of the World (TEOW) World Wildlife Foundation (WWF) classification. There are 14 biomes. See citation: Olson, D. M., Dinerstein, E., Wikramanayake, E. D., Burgess, N. D., Powell, G. V. N., Underwood, E. C., DAmico, J. A., Itoua, I., Strand, H. E., Morrison, J. C., Loucks, C. J., Allnutt, T. F., Ricketts, T. H., Kura, Y., Lamoreux, J. F., Wettengel, W. W., Hedao, P., Kassem, K. R. 2001. Terrestrial ecoregions of the world: a new map of life on Earth. Bioscience 51(11):933-938.'}, + 'UMBC_anthrome_classification': {'value':[], 'standard_name':'UMBC anthrome classification', 'long_name':'UMBC anthrome classification', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'University of Maryland Baltimore County (UMBC) anthrome classification, describing the anthropogenic land use (for the year 2000). There are 20 distinct classifications. Native resolution of 0.0833 x 0.0833 degrees. A correction for coastal sites is made: if the native anthrome class is "water", then the modal classification of the neighbouring grid boxes is used instead (lowest code kept preferentially in case of a tie). If the site is truly an "ocean" site, all the surrounding gridcells will be water also, and therefore the class will be maintained as "water".'}, + 'UMBC_modal_anthrome_classification_5km': {'value':[], 'standard_name':'UMBC modal anthrome classification 5km', 'long_name':'UMBC modal anthrome classification in 5km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'University of Maryland Baltimore County (UMBC) modal anthrome classification in radius of 5km around station location.'}, + 'UMBC_modal_anthrome_classification_25km': {'value':[], 'standard_name':'UMBC modal anthrome classification 25km', 'long_name':'UMBC modal anthrome classification in 25km radius', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'University of Maryland Baltimore County (UMBC) modal anthrome classification in radius of 25km around station location.'}, + + #GLOBALLY GRIDDED PRODUCTS + 'EDGAR_v4.3.2_annual_average_BC_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average BC emissions', 'long_name':'EDGAR v4.3.2 annual average black carbon emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average BC emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_CO_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average CO emissions', 'long_name':'EDGAR v4.3.2 annual average carbon monoxide emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average CO emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_NH3_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average NH3 emissions', 'long_name':'EDGAR v4.3.2 annual average ammonia emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average NH3 emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_NMVOC_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average NMVOC emissions', 'long_name':'EDGAR v4.3.2 annual average non-methane volatile organic compound emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average NMVOC emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_NOx_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average NOx emissions', 'long_name':'EDGAR v4.3.2 annual average emissions of nitrogen oxides', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average NOx emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_OC_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average OC emissions', 'long_name':'EDGAR v4.3.2 annual average organic carbon emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average OC emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_PM10_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average PM10 emissions', 'long_name':'EDGAR v4.3.2 annual average PM10 emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average PM10 emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_biogenic_PM2.5_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average biogenic PM2.5 emissions', 'long_name':'EDGAR v4.3.2 annual average biogenic PM2.5 emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average biogenic PM2.5 emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_fossilfuel_PM2.5_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average fossil fuel PM2.5 emissions', 'long_name':'EDGAR v4.3.2 annual average fossil fuel PM2.5 emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average fossil fuel PM2.5 emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'EDGAR_v4.3.2_annual_average_SO2_emissions': {'value':[], 'standard_name':'EDGAR v4.3.2 annual average SO2 emissions', 'long_name':'EDGAR v4.3.2 annual average sulphur dioxide emissions', 'units':'kg m-2 s-1', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'EDGAR v4.3.2 annual average SO2 emissions, in kilograms per squared metre per second. Native resolution of 0.1 x 0.1 degrees.'}, + 'ASTER_v3_altitude': {'value':[], 'standard_name':'ASTER v3 altitude', 'long_name':'ASTER v3 altitude, relative to EGM96 geoid datum', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Altitude from ASTER v3 digital elevation model, relative to EGM96 geoid vertical datum, in metres. The dataset was generated using 1,880,306 Level-1A scenes (taken from the NASA TERRA spacecraft) acquired between March 1, 2000 and November 30, 2013. The ASTER GDEM was created by stacking all individual cloud-masked scene DEMs and non-cloud-masked scene DEMs, then applying various algorithms to remove abnormal data. A statistical approach is not always effective for anomaly removal in areas with a limited number of images. Several existing reference DEMs were used to replace residual anomalies caused by the insufficient number of stacked scenes. In addition to ASTER GDEM, the ASTER Global Water Body Database (ASTWBD) was generated as a by-product to correct elevation values of water body surfaces like sea, rivers, and lakes. The ASTWBD was applied to GDEM to provide proper elevation values for water body surfaces. The sea and lake have a flattened elevation value. The river has a stepped-down elevation value from the upper stream to the lower stream. Native resolution of 1 arc second ~= 30m at the equator.'}, + 'ETOPO1_altitude': {'value':[], 'standard_name':'ETOPO1 altitude', 'long_name':'ETOPO1 altitude, relative to sea level datum', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Altitude from ETOPO1 digital elevation model, relative to sea level vertical datum, in metres. Over Antarctica and Greenland the elevation given is on top of the ice sheets. Native resolution of 1 arc minute. A correction for coastal sites is made: if the derived altitude is <= -5 m, the maximum altitude of the neighbouring grid boxes will be used instead. If all neighbouring grid boxes have altitudes <= -5 m, the original value will be retained.'}, + 'ETOPO1_max_altitude_difference_5km': {'value':[], 'standard_name':'ETOPO1 max altitude difference 5km', 'long_name':'ETOPO1 maximum altitude difference between the ETOPO1_altitude and all ETOPO1 altitudes in 5km radius', 'units':'m', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Altitude difference between the ETOPO1_altitude, and the minimum ETOPO1 altitude in a radius of 5km around the station location, in metres.'}, + 'GHSL_built_up_area_density': {'value':[], 'standard_name':'GHSL built up area density', 'long_name':'GHSL built up area density', 'units':'%', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) built up area density (technical label: GHS_BUILT_LDSMT_GLOBE_R2018A), in units of built-up area percent per gridcell (0-100). The product is a multitemporal information layer on built-up presence as derived from Landsat image collections (GLS1975, GLS1990, GLS2000, and ad-hoc Landsat 8 collection 2013/2014). Native resolution of 0.25 x 0.25 kilometres.'}, + 'GHSL_average_built_up_area_density_5km': {'value':[], 'standard_name':'GHSL average built up area density 5km', 'long_name':'GHSL average built up area density in 5km radius', 'units':'%', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) average built up area density in a radius of 5km around the station location.'}, + 'GHSL_average_built_up_area_density_25km': {'value':[], 'standard_name':'GHSL average built up area density 25km', 'long_name':'GHSL average built up area density in 25km radius', 'units':'%', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) average built up area density in a radius of 25km around the station location.'}, + 'GHSL_max_built_up_area_density_5km': {'value':[], 'standard_name':'GHSL max built up area density 5km', 'long_name':'GHSL max built up area density in 5km radius', 'units':'%', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) max built up area density in a radius of 5km around the station location.'}, + 'GHSL_max_built_up_area_density_25km': {'value':[], 'standard_name':'GHSL max built up area density 25km', 'long_name':'GHSL max built up area density in 25km radius', 'units':'%', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) max built up area density in a radius of 25km around the station location.'}, + 'GHSL_population_density': {'value':[], 'standard_name':'GHSL population density', 'long_name':'GHSL population density', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) population density (technical label: GHS_POP_MT_GLOBE_R2019A), in populus per squared kilometre. It depicts the distribution of population, expressed as the number of people per cell. Residential population estimates for target years 1975, 1990, 2000 and 2015 provided by CIESIN GPWv4.10 were disaggregated from census or administrative units to grid cells, informed by the distribution and density of built-up as mapped in the GHSL global layer per corresponding epoch. Native resolution of 0.25 x 0.25 kilometres.'}, + 'GHSL_average_population_density_5km': {'value':[], 'standard_name':'GHSL average population density 5km', 'long_name':'GHSL average population density in 5km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) average population density in a radius of 5km around the station location.'}, + 'GHSL_average_population_density_25km': {'value':[], 'standard_name':'GHSL average population density 25km', 'long_name':'GHSL average population density in 25km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) average population density in a radius of 25km around the station location.'}, + 'GHSL_max_population_density_5km': {'value':[], 'standard_name':'GHSL max population density 5km', 'long_name':'GHSL max population density in 5km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) max population density in a radius of 5km around the station location.'}, + 'GHSL_max_population_density_25km': {'value':[], 'standard_name':'GHSL max population density 25km', 'long_name':'GHSL max population density in 25km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Global Human Settlement Layer (GHSL) max population density in a radius of 25km around the station location.'}, + 'GPW_population_density': {'value':[], 'standard_name':'GPW population density', 'long_name':'GPW population density', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Gridded Population of the World (GPW) population density, in populus per squared kilometre, from either version 3 and 4 of the provided gridded datasets, dependent on the data year: v3 (1990-2000), v4 (2000-2015). Native resolution of 0.04166 x 0.04166 for v3 data; native resolution of 0.0083 x 0.0083 degrees for v4 data.'}, + 'GPW_average_population_density_5km': {'value':[], 'standard_name':'GPW average population density 5km', 'long_name':'GPW average population density in 5km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Gridded Population of the World (GPW) average population density in a radius of 5km around the station location.'}, + 'GPW_average_population_density_25km': {'value':[], 'standard_name':'GPW average population density 25km', 'long_name':'GPW average population density in 25km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Gridded Population of the World (GPW) average population density in a radius of 25km around the station location.'}, + 'GPW_max_population_density_5km': {'value':[], 'standard_name':'GPW max population density 5km', 'long_name':'GPW average population density in 5km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Gridded Population of the World (GPW) maximum population density in a radius of 5km around the station location.'}, + 'GPW_max_population_density_25km': {'value':[], 'standard_name':'GPW max population density 25km', 'long_name':'GPW average population density in 25km radius', 'units':'xx km–2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Gridded Population of the World (GPW) maximum population density in a radius of 25km around the station location.'}, + 'NOAA-DMSP-OLS_v4_nighttime_stable_lights': {'value':[], 'standard_name':'NOAA-DMSP-OLS v4 nighttime stable lights', 'long_name':'NOAA DMSP-OLS version 4 nighttime stable lights', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'National Oceanic and Atmospheric Administration (NOAA), Defense Meteorological Satellite Program - Operational Linescane System (DMSP-OLS) version 4 nighttime stable lights. Native resolution of 0.0083 x 0.0083 degrees. The values represent a brightness index ranging from 0 to 63. The sensor saturates at a value of 63.'}, + 'NOAA-DMSP-OLS_v4_average_nighttime_stable_lights_5km': {'value':[], 'standard_name':'NOAA-DMSP-OLS v4 average nighttime stable lights 5km', 'long_name':'NOAA DMSP-OLS version 4 average nighttime stable lights in 5km radius', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'National Oceanic and Atmospheric Administration (NOAA), Defense Meteorological Satellite Program - Operational Linescane System (DMSP-OLS) version 4 average nighttime stable lights in 5km radius around the station location. The values represent a brightness index ranging from 0 to 63. The sensor saturates at a value of 63.'}, + 'NOAA-DMSP-OLS_v4_average_nighttime_stable_lights_25km': {'value':[], 'standard_name':'NOAA-DMSP-OLS v4 average nighttime stable lights 25km', 'long_name':'NOAA DMSP-OLS version 4 average nighttime stable lights in 25km radius', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'National Oceanic and Atmospheric Administration (NOAA), Defense Meteorological Satellite Program - Operational Linescane System (DMSP-OLS) version 4 average nighttime stable lights in 25km radius around the station location. The values represent a brightness index ranging from 0 to 63. The sensor saturates at a value of 63.'}, + 'NOAA-DMSP-OLS_v4_max_nighttime_stable_lights_5km': {'value':[], 'standard_name':'NOAA-DMSP-OLS v4 max nighttime stable lights 5km', 'long_name':'NOAA DMSP-OLS version 4 maximum nighttime stable lights in 5km radius', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'National Oceanic and Atmospheric Administration (NOAA), Defense Meteorological Satellite Program - Operational Linescane System (DMSP-OLS) version 4 maximum nighttime stable lights in 5km radius around the station location. The values represent a brightness index ranging from 0 to 63. The sensor saturates at a value of 63.'}, + 'NOAA-DMSP-OLS_v4_max_nighttime_stable_lights_25km': {'value':[], 'standard_name':'NOAA-DMSP-OLS v4 max nighttime stable lights 25km', 'long_name':'NOAA DMSP-OLS version 4 maximum nighttime stable lights in 25km radius', 'units':'unitless', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'National Oceanic and Atmospheric Administration (NOAA), Defense Meteorological Satellite Program - Operational Linescane System (DMSP-OLS) version 4 maximum nighttime stable lights in 25km radius around the station location. The values represent a brightness index ranging from 0 to 63. The sensor saturates at a value of 63.'}, + 'OMI_level3_column_annual_average_NO2': {'value':[], 'standard_name':'OMI level3 column annual average NO2', 'long_name':'OMI level3 column annual average nitrogen dioxide', 'units':'xx cm-2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'AURA Ozone monitoring instrument (OMI) level3 column annual average NO2, in molecules per squared centimetres. Native resolution of 0.25 x 0.25 degrees.'}, + 'OMI_level3_column_cloud_screened_annual_average_NO2': {'value':[], 'standard_name':'OMI level3 column cloud screened annual average NO2', 'long_name':'OMI level3 column cloud screened annual average nitrogen dioxide', 'units':'xx cm-2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'AURA Ozone monitoring instrument (OMI) level3 column cloud screened (where cloud fraction is less than 30 percent) annual average NO2, in molecules per squared centimetres. Native resolution of 0.25 x 0.25 degrees.'}, + 'OMI_level3_tropospheric_column_annual_average_NO2': {'value':[], 'standard_name':'OMI level3 tropospheric column annual average NO2', 'long_name':'OMI level3 tropospheric column annual average nitrogen dioxide', 'units':'xx cm-2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'AURA Ozone monitoring instrument (OMI) level3 tropospheric column annual average NO2, in molecules per squared centimetres. Native resolution of 0.25 x 0.25 degrees.'}, + 'OMI_level3_tropospheric_column_cloud_screened_annual_average_NO2':{'value':[], 'standard_name':'OMI level3 tropospheric column cloud screened annual average NO2', 'long_name':'OMI level3 tropospheric column cloud screened annual average nitrogen dioxide', 'units':'xx cm-2', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'AURA Ozone monitoring instrument (OMI) level3 tropospheric column cloud screened (where cloud fraction is less than 30 percent) annual average NO2, in molecules per squared centimetres. Native resolution of 0.25 x 0.25 degrees.'}, + 'GSFC_coastline_proximity': {'value':[], 'standard_name':'GSFC coastline proximity', 'long_name':'GSFC proximity to the coastline', 'units':'km', 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'GLOBALLY GRIDDED CLASSIFICATIONS', 'identifiers':{'WIGOS_name':''}, 'description':'Proximity to the coastline provided by the NASA Goddard Space Flight Center (GSFC) Ocean Color Group, in kilometres, produced using the Generic Mapping Tools package. Native resolution of 0.01 x 0.01 degrees. Negative distances represent locations over land (including land-locked bodies of water), while positive distances represent locations over the ocean. There is an uncertainty of up to 1 km in the computed distance at any given point.'}, + + #MEASUREMENT INFORMATION + 'primary_sampling_type': {'value':[], 'standard_name':'primary sampling type', 'long_name':'standardised primary sampling type', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':'SamplingStrategy'}, 'description':'Standardised primary sampling type.'}, + 'primary_sampling_instrument_name': {'value':[], 'standard_name':'primary sampling instrument name', 'long_name':'standardised primary sampling instrument name', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised name of the primary sampling instrument (if no specific instrument is used, or known, this is the standardised primary sampling type).'}, + 'primary_sampling_instrument_documented_flow_rate': {'value':[], 'standard_name':'primary sampling instrument documented flow rate', 'long_name':'primary sampling instrument documented sampling flow rate', 'units':'l min-1', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Volume (litres) of fluid which passes to the primary sampling instrument, per unit time (minutes), as given in instrumental manual/documentation. Can be a range: e.g. 1.0-3.0.'}, + 'primary_sampling_instrument_reported_flow_rate': {'value':[], 'standard_name':'primary sampling instrument reported flow rate', 'long_name':'primary sampling instrument reported sampling flow rate', 'units':'l min-1', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Volume (litres) of fluid which passes to the primary sampling instrument, per unit time (minutes), as given in metadata. Can be a range: e.g. 1.0-3.0.'}, + 'primary_sampling_process_details': {'value':[], 'standard_name':'primary sampling process details', 'long_name':'primary sampling process details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Miscellaneous details regarding assumptions made in the standardisation of the primary sampling type/instrument.'}, + 'primary_sampling_instrument_manual_name': {'value':[], 'standard_name':'primary sampling instrument manual name', 'long_name':'primary sampling instrument manual name', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Path to the location in the esarchive of the manual for the specific primary sampling instrument.'}, + 'primary_sampling_further_details': {'value':[], 'standard_name':'primary sampling further details', 'long_name':'primary sampling further details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Further associated details regarding the specifics of the primary sampling instrument/type.'}, + 'sample_preparation_types': {'value':[], 'standard_name':'sample preparation types', 'long_name':'standardised sample preparation types', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':'SampleTreatment'}, 'description':'Standardised sample preparation types utilised in the measurement process. Multiple types are separated by ";".'}, + 'sample_preparation_techniques': {'value':[], 'standard_name':'sample preparation techniques', 'long_name':'standardised specific preparation techniques', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised sample preparation techniques utilised in the measurement process. Multiple names are separated by ";".'}, + 'sample_preparation_process_details': {'value':[], 'standard_name':'sample preparation process details', 'long_name':'sample preparation process details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Miscellaneous details regarding assumptions made in the standardisation of the sample preparation types/techniques. Multiple details specific to different types are separated by ";".'}, + 'sample_preparation_further_details': {'value':[], 'standard_name':'sample preparation further details', 'long_name':'sample preparation further details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Further associated details regarding the specifics of the sample preparation types/techniques. Multiple details specific to different types are separated by ";".'}, + 'measurement_methodology': {'value':[], 'standard_name':'measurement methodology', 'long_name':'standardised measurement methodology', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':'ObservingMethodAtmosphere'}, 'description':'Standardised name of the measurement methodology.'}, + 'measuring_instrument_name': {'value':[], 'standard_name':'measuring instrument name', 'long_name':'standardised measuring instrument name', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Standardised name of the measuring instrument.'}, + 'measuring_instrument_sampling_type': {'value':[], 'standard_name':'measuring instrument sampling type', 'long_name':'standardised sampling type of the measuring instrument', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':'SamplingStrategy'}, 'description':'Standardised name of the measuring instrument sampling type.'}, + 'measuring_instrument_documented_flow_rate': {'value':[], 'standard_name':'measuring instrument documented flow rate', 'long_name':'measuring instrument documented flow rate', 'units':'l min-1', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Volume (litres) of fluid which passes to the measuring instrument, per unit time (minutes), as given in instrumental manual/documentation. Can be a range: e.g. 1.0-3.0.'}, + 'measuring_instrument_reported_flow_rate': {'value':[], 'standard_name':'measuring instrument reported flow rate', 'long_name':'measuring instrument reported flow rate', 'units':'l min-1', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Volume (litres) of fluid which passes to the measuring instrument, per unit time (minutes), as given in metadata. Can be a range: e.g. 1.0-3.0.'}, + 'measuring_instrument_process_details': {'value':[], 'standard_name':'measuring instrument process details', 'long_name':'measuring instrument process details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Miscellaneous details regarding assumptions made in the standardisation of the measurement methodology/instrument.'}, + 'measuring_instrument_manual_name': {'value':[], 'standard_name':'measuring instrument manual name', 'long_name':'measuring instrument manual name', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Path to the location in the esarchive of the manual for the specific measuring instrument.'}, + 'measuring_instrument_further_details': {'value':[], 'standard_name':'measuring instrument further details', 'long_name':'measuring instrument further details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Further associated details regarding the specifics of the measurement methodology/instrument.'}, + 'measuring_instrument_reported_units': {'value':[], 'standard_name':'measuring instrument reported units', 'long_name':'measuring instrument reported measurement units', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Units that the measured parameter are natively reported in.'}, + 'measuring_instrument_reported_lower_limit_of_detection': {'value':[], 'standard_name':'measuring instrument reported lower limit of detection', 'long_name':'measuring instrument reported lower limit of detection', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Lower limit of detection of measurement methodology, as given in metadata.'}, + 'measuring_instrument_documented_lower_limit_of_detection':{'value':[], 'standard_name':'measuring instrument documented lower limit of detection', 'long_name':'measuring instrument documented lower limit of detection', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Lower limit of detection of measurement methodology, as given in the instrumental manual/documentation.'}, + 'measuring_instrument_reported_upper_limit_of_detection': {'value':[], 'standard_name':'measuring instrument reported upper limit of detection', 'long_name':'measuring instrument reported upper limit of detection', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Upper limit of detection of measurement methodology, as given in metadata.'}, + 'measuring_instrument_documented_upper_limit_of_detection':{'value':[], 'standard_name':'measuring instrument documented upper limit of detection', 'long_name':'measuring instrument documented upper limit of detection', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Upper limit of detection of measurement methodology, as given in the instrumental manual/documentation.'}, + 'measuring_instrument_reported_uncertainty': {'value':[], 'standard_name':'measuring instrument reported measurement uncertainty', 'long_name':'measuring instrument reported measurement uncertainty', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement uncertainty (±), as given in metadata. In principal this refers to the inherent uncertainty on every measurement as a function of the quadratic addition of the accuracy and precision metrics (at the same confidence interval), but is often reported incosistently e.g. being solely determined from random errors (i.e. just the measurement precision). It can be given in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_documented_uncertainty': {'value':[], 'standard_name':'measuring instrument documented measurement uncertainty', 'long_name':'measuring instrument documented measurement uncertainty', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement uncertainty (±), as given in the instrumental manual/documentation. In principal this refers to the inherent uncertainty on every measurement as a function of the quadratic addition of the accuracy and precision metrics (at the same confidence interval), but is often reported incosistently e.g. being solely determined from random errors (i.e. just the measurement precision). This can be given in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_reported_accuracy': {'value':[], 'standard_name':'measuring instrument reported measurement accuracy', 'long_name':'measuring instrument reported measurement accuracy', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement accuracy (±), as given in metadata. Accuracy describes the difference between the measurement and the actual value of the part that is measured. It includes: Bias (a measure of the difference between the true value and the observed value of a part -- If the “true” value is unknown, it can be calculated by averaging several measurements with the most accurate measuring equipment available) and Linearity (a measure of how the size of the part affects the bias of a measurement system -- It is the difference in the observed bias values through the expected range of measurement). This can be given as in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_documented_accuracy': {'value':[], 'standard_name':'measuring instrument documented measurement accuracy', 'long_name':'measuring instrument documented measurement accuracy', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement accuracy (±), as given in the instrumental manual/documentation. Accuracy describes the difference between the measurement and the actual value of the part that is measured. It includes: Bias (a measure of the difference between the true value and the observed value of a part -- If the “true” value is unknown, it can be calculated by averaging several measurements with the most accurate measuring equipment available) and Linearity (a measure of how the size of the part affects the bias of a measurement system -- It is the difference in the observed bias values through the expected range of measurement). This can be given as in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_reported_precision': {'value':[], 'standard_name':'measuring instrument reported measurement precision', 'long_name':'measuring instrument reported measurement precision', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement precision (±), as given in metadata. Precision describes the variation you see when you measure the same part repeatedly with the same device. It includes the following two types of variation: Repeatability (variation due to the measuring device -- it is the variation observed when the same operator measures the same part repeatedly with the same device) and Reproducibility (variation due to the operators and the interaction between operator and part -- It is the variation of the bias observed when different operators measure the same parts using the same device). This can be given as in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_documented_precision': {'value':[], 'standard_name':'measuring instrument documented measurement precision', 'long_name':'measuring instrument documented measurement precision', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement precision (±), as given in instrumental manual/documentation. Precision describes the variation you see when you measure the same part repeatedly with the same device. It includes the following two types of variation: Repeatability (variation due to the measuring device -- it is the variation observed when the same operator measures the same part repeatedly with the same device) and Reproducibility (variation due to the operators and the interaction between operator and part -- It is the variation of the bias observed when different operators measure the same parts using the same device). This can be given as in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%); or a percentage quantity after a fixed limit (i.e. 0.5%>=50).'}, + 'measuring_instrument_reported_zero_drift': {'value':[], 'standard_name':'measuring instrument reported zero drift', 'long_name':'measuring instrument reported zero drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Zero drift of measuring instrument per unit of time, as given in metadata. Zero drift (or baseline drift) refers to the shifting of the whole calibration by the same amount caused by slippage or due to undue warming up of the electronic circuits. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_documented_zero_drift': {'value':[], 'standard_name':'measuring instrument documented zero drift', 'long_name':'measuring instrument documented zero drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Zero drift of measuring instrument per unit of time, as given in instrumental manual/documentation. Zero drift (or baseline drift) refers to the shifting of the whole calibration by the same amount caused by slippage or due to undue warming up of the electronic circuits. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_reported_span_drift': {'value':[], 'standard_name':'measuring instrument reported span drift', 'long_name':'measuring instrument reported span drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Span drift of measuring instrument per unit of time, as given in metadata. Span drift (or sensitivity drift) refers to when there is proportional change in the indication of an instrument all along the upward scale, hence higher calibrations end up being shifted more than lower calibrations. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_documented_span_drift': {'value':[], 'standard_name':'measuring instrument documented span drift', 'long_name':'measuring instrument documented span drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Span drift of measuring instrument per unit of time, as given in instrumental manual/documentation. Span drift (or sensitivity drift) refers to when there is proportional change in the indication of an instrument all along the upward scale, hence higher calibrations end up being shifted more than lower calibrations. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_reported_zonal_drift': {'value':[], 'standard_name':'measuring instrument reported zonal drift', 'long_name':'measuring instrument reported zonal drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Zonal drift of measuring instrument per unit of time, as given in metadata. Zonal drift refers to when drift occurs only over a portion of the full scale or span of an instrument, while the remaining portion of the scale remains unaffected. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_documented_zonal_drift': {'value':[], 'standard_name':'measuring instrument documented zonal drift', 'long_name':'measuring instrument documented zonal drift', 'units':parameter_details['standard_units'], 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Zonal drift of measuring instrument per unit of time, as given in instrumental manual/documentation. Zonal drift refers to when drift occurs only over a portion of the full scale or span of an instrument, while the remaining portion of the scale remains unaffected. It is reported as the maximum possible drift per unit of time in absolute terms; as a percentage; the greater of either an absolute value or percentage (i.e. 25.0/0.5%/day); or a percentage quantity after a fixed limit (i.e. 0.5%>=50/day).'}, + 'measuring_instrument_reported_measurement_resolution': {'value':[], 'standard_name':'measuring instrument reported measurement resolution', 'long_name':'measuring instrument reported measurement resolution', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement resolution, as given in metadata. The measurement resolution is defined as the smallest change or increment in the measured quantity that the instrument can detect. However it is often reported inconsistently, often being simply the number of digits an instrument can display, which does not relate to the actual physical resolution of the instrument.'}, + 'measuring_instrument_documented_measurement_resolution': {'value':[], 'standard_name':'measuring instrument documented measurement resolution', 'long_name':'measuring instrument documented measurement resolution', 'units':parameter_details['standard_units'], 'data_type':np.float32, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Measurement resolution, as given in instrumental manual/documentation. The measurement resolution is defined as the smallest change or increment in the measured quantity that the instrument can detect. However it is often reported inconsistently, often being simply the number of digits an instrument can display, which does not relate to the actual physical resolution of the instrument.'}, + 'measuring_instrument_reported_absorption_cross_section': {'value':[], 'standard_name':'measuring instrument reported absorption cross section', 'long_name':'measuring instrument reported absorption cross section', 'units':'cm2', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Assumed molecule cross-section for parameter being measured (in cm2/molecule), as given in metadata. This field is only used for parameters being measured using optical methods, where a molecule cross section is assumed for processing the measurement values. Physically it is the effective area of the molecule that photon needs to traverse in order to be absorbed. The larger the absorption cross section, the easier it is to photoexcite the molecule. Can be a range: e.g. 1e-15-1.5e-15.'}, + 'measuring_instrument_documented_absorption_cross_section':{'value':[], 'standard_name':'measuring instrument documented absorption cross section', 'long_name':'measuring instrument documented absorption cross section', 'units':'cm2', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Assumed molecule cross-section for parameter being measured (in cm2/molecule), as given in instrumental manual/documentation. This field is only used for parameters being measured using optical methods, where a molecule cross section is assumed for processing the measurement values. Physically it is the effective area of the molecule that photon needs to traverse in order to be absorbed. The larger the absorption cross section, the easier it is to photoexcite the molecule. Can be a range: e.g. 1e-15-1.5e-15.'}, + 'measuring_instrument_inlet_information': {'value':[], 'standard_name':'measuring instrument inlet information', 'long_name':'measuring instrument measurement inlet information', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Description of sampling inlet of the measuring instrument.'}, + 'measuring_instrument_calibration_scale': {'value':[], 'standard_name':'measuring instrument calibration scale', 'long_name':'measuring instrument calibration scale name', 'units':'unitless', 'data_type':object, 'string_format':'upper_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'Name of calibration scale used for the calibration of the measuring instrument.'}, + 'network_provided_volume_standard_temperature': {'value':[], 'standard_name':'network provided volume standard temperature', 'long_name':'network provided volume standard temperature', 'units':'K', 'data_type':np.float64, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'The temperature (in Kelvin) associated with the volume of the sampled gas (which varies with temperature and pressure). This volume is typically normalised in-instrument to a standard temperature and pressure. These standard values typically follow network/continental/global standards (e.g. European Union) for the measured component. If no in-instrument normalisation is done then the reported temperature should be reported as the internal temperature of the instrument (i.e. the measurement conditions). If no numbers are reported explicitly per measurement, then the sample gas temperature is assumed to be the known network standard temperature for the measured component.'}, + 'network_provided_volume_standard_pressure': {'value':[], 'standard_name':'network provided volume standard pressure', 'long_name':'network provided volume standard pressure', 'units':'hPa', 'data_type':np.float64, 'string_format':np.NaN, 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'The pressure (in hPa) associated with the volume of the sampled gas (which varies with temperature and pressure). This volume is typically normalised in-instrument to a standard temperature and pressure. These standard values typically follow network/continental/global standards (e.g. European Union) for the measured component. If no in-instrument normalisation is done then the reported pressure should be reported as the internal pressure of the instrument (i.e. the measurement conditions). If no numbers are reported explicitly per measurement, then the sample gas pressure is assumed to be the known network standard pressure for the measured component.'}, + 'retrieval_algorithm': {'value':[], 'standard_name':'retrieval algorithm', 'long_name':'retrieval algorithm', 'units':'unitless', 'data_type':object, 'string_format':'lower_short', 'metadata_type':'MEASUREMENT PROCESS INFORMATION', 'identifiers':{'WIGOS_name':''}, 'description':'The name of the retrieval algorithm. Remote sensing algorithms are used to retrieve the aerosol optical properties (as aerosol optical depths or single scattering albedo among others) using remote-sensing radiances for multiple wavelengths from ground stations or on satellite platforms. Each algorithm is particularly designed considering the characteristics of the sensor and other ancillary information.'}, + + #CONTACT INFORMATION + 'principal_investigator_name': {'value':[], 'standard_name':'principal investigator name', 'long_name':'principal investigator name', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Full name of the principal scientific investigator for the specific reported data.'}, + 'principal_investigator_institution': {'value':[], 'standard_name':'principal investigator institution', 'long_name':'principal investigator institution', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Institution of the principal scientific investigator for the specific reported data.'}, + 'principal_investigator_email_address':{'value':[], 'standard_name':'principal investigator email address', 'long_name':'principal investigator email address', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Email address of the principal scientific investigator for the specific reported data.'}, + 'contact_name': {'value':[], 'standard_name':'contact name', 'long_name':'contact name', 'units':'unitless', 'data_type':object, 'string_format':'title_short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Full name of the principal data contact for the specific reported data.'}, + 'contact_institution': {'value':[], 'standard_name':'contact institution', 'long_name':'contact institution', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':'ProgramAffiliation'}, 'description':'Institution of the principal data contact for the specific reported data.'}, + 'contact_email_address': {'value':[], 'standard_name':'contact email address', 'long_name':'contact email address', 'units':'unitless', 'data_type':object, 'string_format':'short', 'metadata_type':'STATION MISCELLANEOUS', 'identifiers':{'WIGOS_name':''}, 'description':'Email address of the principal data contact for the specific reported data.'}, + + #TIMESTAMPS + 'meta_update_stamp': {'value':[], 'standard_name':'metdata update timestamp', 'long_name':'metdata update timestamp', 'units':'unitless', 'data_type':np.uint32, 'string_format':np.NaN, 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Time stamp of metadata updates in integer minutes from 0001-01-01 00:00 UTC.'}, + 'data_download_stamp':{'value':[], 'standard_name':'data download timestamp', 'long_name':'data download timestamp', 'units':'unitless', 'data_type':np.uint32, 'string_format':np.NaN, 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Time stamp of date/time of data download in integer minutes from 0001-01-01 00:00 UTC.'}, + 'data_revision_stamp':{'value':[], 'standard_name':'data revision timestamp', 'long_name':'data revision timestamp', 'units':'unitless', 'data_type':np.uint32, 'string_format':np.NaN, 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Time stamp of date/time of the last data revision in integer minutes from 0001-01-01 00:00 UTC.'}, + + #FURTHER DETAIL + 'network_sampling_details': {'value':[], 'standard_name':'network sampling details', 'long_name':'network sampling details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Extra details provided by the reporting network about the sampling methods employed.'}, + 'network_uncertainty_details': {'value':[], 'standard_name':'network uncertainty details', 'long_name':'network uncertainty details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Extra details provided by the reporting network about the uncertainties involved with the measurement methods employed.'}, + 'network_maintenance_details': {'value':[], 'standard_name':'network maintenance details', 'long_name':'network maintenance details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Extra details provided by the reporting network about the operational maintenance done at the station.'}, + 'network_qa_details': {'value':[], 'standard_name':'network qa details', 'long_name':'network qa details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Extra details provided by the reporting network about the in-network quality assurance of measurements.'}, + 'network_miscellaneous_details':{'value':[], 'standard_name':'network miscellaneous details', 'long_name':'network miscellaneous details', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Extra miscellaneous details provided by the reporting network.'}, + + #DATA LICENCE + 'data_licence':{'value':[], 'standard_name':'data licence', 'long_name':'data licence', 'units':'unitless', 'data_type':object, 'string_format':'long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':'DataPolicy'}, 'description':'Information pertaining to the data licence governing the redistribution/publication of the ingested network data.'}, + + #WARNINGS + 'process_warnings':{'value':[], 'standard_name':'process warnings', 'long_name':'process warnings', 'units':'unitless', 'data_type':object, 'string_format':'lower_long', 'metadata_type':np.NaN, 'identifiers':{'WIGOS_name':''}, 'description':'Warnings accumulated through GHOST processing regarding the data that should be considered.'} + } + + return standard_metadata + +###--------------------------------------------------------------------------------------------------### +###DATA REPORTER PROVIDED DATA FLAG STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary associating standardised data reporter provided data flag names with unique data flag codes + +#These standardised data flags refer specifically to information/or lack of information provided by the data provider to fill the 'flag' field, +#and not to post-processing/quality control of observations (given separately by the ‘qa’ field). + +standard_data_flag_name_to_data_flag_code = { + +#Basic Data Flags +#----------------------------------------------------- +'Valid Data': 0, + +'Preliminary Data': 1, + +'Missing Data': 2, + +'Invalid Data - Unspecified': 3, + +'Un-Flagged Data': 4, +#----------------------------------------------------- + + +#Estimated Data Flags +#----------------------------------------------------- +'Estimated Data - Unspecified': 10, + +'Estimated Data - Measured Negative Value': 11, + +'Estimated Data - No Value Detected': 12, + +'Estimated Data - Value Below Detection Limit': 13, + +'Estimated Data - Value Above Detection Limit': 14, + +'Estimated Data - Value Substituted from Secondary Monitor': 15, + +'Estimated Data - Multiple Parameters Aggregated': 16, +#----------------------------------------------------- + + +#Extreme/Irregular Data Flags +#----------------------------------------------------- +'Extreme/Irregular Data - Unspecified': 20, + +'Data Does Not Meet Internal Network Quality Control Criteria': 21, + +'High Variability of Data': 22, + +'Irregular Data Manually Screened and Accepted': 23, + +'Irregular Data Manually Screened and Rejected': 24, + +'Negative Value': 25, + +'No Value Detected': 26, + +'Reconstructed/Recalculated Data': 27, + +'Value Close to Detection Limit': 28, + +'Value Below Acceptable Range': 29, + +'Value Above Acceptable Range': 30, + +'Value Below Detection Limit': 31, + +'Value Above Detection Limit': 32, + +#----------------------------------------------------- + + +#Measurement Issue Data Flags +#----------------------------------------------------- +'Measurement Issue - Unspecified': 40, + +'Chemical Issue': 41, + +'Erroneous Sampling Operation': 42, + +'Extreme Internal Instrument Meteorological Conditions': 43, + +'Extreme Ambient Laboratory Meteorological Conditions': 44, + +'Extreme External Meteorological Conditions': 45, + +'Extreme Sample Transport Conditions': 46, + +'Invalid Flow Rate': 47, + +'Human Error': 48, + +'Matrix Effect': 49, + +'Mechanical Issue/Non-Operational Equipment': 50, + +'No Technician': 51, + +'Operational Maintenance Check Issue': 52, + +'Physical Issue With Filter': 53, + +'Power Failure': 54, + +'Sample Diluted for Analysis': 55, + +'Unmeasured Key Meteorological Parameter': 56, + +'Sample Not Analysed': 57, + +#----------------------------------------------------- + + +#Operational Maintenance Data Flags +#----------------------------------------------------- +'Operational Maintenance - Unspecified': 60, + +'Calibration': 61, + +'Accuracy Check': 62, + +'Blank Check': 63, + +'Detection Limits Check': 64, + +'Precision Check': 65, + +'Retention Time Check': 66, + +'Span Check': 67, + +'Zero Check': 68, + +'Instrumental Inspection': 69, + +'Instrumental Repair': 70, + +'Quality Control Audit': 71, +#----------------------------------------------------- + + +#Data Formatting/Processing Issue Data Flags +#----------------------------------------------------- +'Data Formatting/Processing Issue': 80, + +'Corrected Data Formatting/Processing Issue': 81, +#----------------------------------------------------- + + +#Aggregation/Representation Flags +#----------------------------------------------------- +'Aggregation/Representation Issue - Unspecified': 90, + +'Data Window Completeness < 90%': 91, + +'Data Window Completeness < 75%': 92, + +'Data Window Completeness < 66%': 93, + +'Data Window Completeness < 50%': 94, + +'Data Window Completeness < 25%': 95, + +'>= 75% of Measurements in Window Below Detection Limit': 96, + +'>= 50% of Measurements in Window Below Detection Limit': 97, +#----------------------------------------------------- + + +# Weather Condition Flags +#----------------------------------------------------- +'No Significant Weather': 100, + +'Precipitation - Unspecified Intensity': 101, + +'Precipitation - Light': 102, + +'Precipitation - Moderate': 103, + +'Precipitation - Heavy': 104, + +'Drizzle - Unspecified Intensity': 105, + +'Drizzle - Light': 106, + +'Drizzle - Moderate': 107, + +'Drizzle - Heavy': 108, + +'Freezing Drizzle - Unspecified Intensity': 109, + +'Freezing Drizzle - Light': 110, + +'Freezing Drizzle - Moderate': 111, + +'Freezing Drizzle - Heavy': 112, + +'Rain - Unspecified Intensity': 113, + +'Rain - Light': 114, + +'Rain - Moderate': 115, + +'Rain - Heavy': 116, + +'Rain Shower/s - Unspecified Intensity': 117, + +'Rain Shower/s - Light': 118, + +'Rain Shower/s - Moderate': 119, + +'Rain Shower/s - Heavy': 120, + +'Freezing Rain - Unspecified Intensity': 121, + +'Freezing Rain - Light': 122, + +'Freezing Rain - Moderate': 123, + +'Freezing Rain - Heavy': 124, + +'Freezing Rain Shower/s - Unspecified Intensity': 125, + +'Freezing Rain Shower/s - Light': 126, + +'Freezing Rain Shower/s - Moderate': 127, + +'Freezing Rain Shower/s - Heavy': 128, + +'Snow - Unspecified Intensity': 129, + +'Snow - Light': 130, + +'Snow - Moderate': 131, + +'Snow - Heavy': 132, + +'Snow Shower/s - Unspecified Intensity': 133, + +'Snow Shower/s - Light': 134, + +'Snow Shower/s - Moderate': 135, + +'Snow Shower/s - Heavy': 136, + +'Hail - Unspecified Intensity': 137, + +'Hail - Light': 138, + +'Hail - Moderate': 139, + +'Hail - Heavy': 140, + +'Hail Shower/s - Unspecified Intensity': 141, + +'Hail Shower/s - Light': 142, + +'Hail Shower/s - Moderate': 143, + +'Hail Shower/s - Heavy': 144, + +'Ice Pellets - Unspecified Intensity': 145, + +'Ice Pellets - Light': 146, + +'Ice Pellets - Moderate': 147, + +'Ice Pellets - Heavy': 148, + +'Ice Pellets Shower/s - Unspecified Intensity': 149, + +'Ice Pellets Shower/s - Light': 150, + +'Ice Pellets Shower/s - Moderate': 151, + +'Ice Pellets Shower/s - Heavy': 152, + +'Snow Pellets - Unspecified Intensity': 153, + +'Snow Pellets - Light': 154, + +'Snow Pellets - Moderate': 155, + +'Snow Pellets - Heavy': 156, + +'Snow Pellets Shower/s - Unspecified Intensity': 157, + +'Snow Pellets Shower/s - Light': 158, + +'Snow Pellets Shower/s - Moderate': 159, + +'Snow Pellets Shower/s - Heavy': 160, + +'Snow Grains - Unspecified Intensity': 161, + +'Snow Grains - Light': 162, + +'Snow Grains - Moderate': 163, + +'Snow Grains - Heavy': 164, + +'Diamond Dust - Unspecified Intensity': 165, + +'Diamond Dust - Light': 166, + +'Diamond Dust - Moderate': 167, + +'Diamond Dust - Heavy': 168, + +'Glaze': 169, + +'Rime': 170, + +'Thunderstorm': 171, + +'Funnel Cloud/s': 172, + +'Squalls': 173, + +'Tropical Cyclone (Cyclone/Hurricane/Typhoon)': 174, + +'Duststorm': 175, + +'Sandstorm': 176, + +'Dust/Sand Whirls': 177, + +'High Winds': 178, +#----------------------------------------------------- + + +# Atmospheric Obscuration/Local Area Contamination Flags +#----------------------------------------------------- + +'No Atmospheric Obscuration': 180, + +'Atmospheric Obscuration - Unknown': 181, + +'Dust': 182, + +'Blowing Dust': 183, + +'Drifting Dust': 184, + +'Sand': 185, + +'Blowing Sand': 186, + +'Drifting Sand': 187, + +'Blowing Snow': 188, + +'Drifting Snow': 189, + +'Fog': 190, + +'Freezing Fog': 191, + +'Ground Fog': 192, + +'Ice Fog': 193, + +'Haze': 194, + +'Mist': 195, + +'Sea Spray': 196, + +'Smoke': 197, + +'Volcanic Ash': 198, + +'No Local Contamination': 199, + +'Local Contamination - Unspecified': 200, + +'Agricultural Contamination': 201, + +'Bird-Dropping Contamination': 202, + +'Construction Contamination': 203, + +'Industrial Contamination': 204, + +'Insect Contamination': 205, + +'Internal Laboratory/Instrument Contamination': 206, + +'Pollen/Leaf Contamination': 207, + +'Traffic Contamination': 208, +#----------------------------------------------------- + + +#Exceptional Event Data Flags +#----------------------------------------------------- +'Exceptional Event - Unspecified': 210, + +#Natural Events +#--------------------------- + +'Seismic Activity': 211, + +'Stratospheric Ozone Intrusion': 212, + +'Volcanic Eruptions': 213, + +'Wildfire': 214, + +#Anthropogenically Induced Events +#--------------------------- +'Chemical Spill/Industrial Accident': 220, + +'Cleanup After a Major Disaster': 221, + +'Demolition': 222, + +'Fireworks': 223, + +'Infrequent Large Gathering': 224, + +'Terrorist Act': 225, +#----------------------------------------------------- + + +# Meteorological Measurement Flags +#----------------------------------------------------- + +'Visibility Distance Unlimited': 230, + +'Ceiling Height Unlimited': 231 +#----------------------------------------------------- + +} + +#Define dictionary associating standardised simplified data reporter provided data flag names with unique data flag codes + +#These simplified data flags refer specifically to information/or lack of information provided by the data provider to fill the 'flag_simple' field. +#The template for these flags is taken from WaterML2, see http://codes.wmo.int/wmdr/_WaterML2_0 + +standard_simple_data_flag_name_to_simple_data_flag_code = { +#The data is an estimate only, not a direct measurement. +'estimate': 0, +#The data has been examined and represents a reliable measurement. +'good':1, +#The data is missing. +'missing':2, +#The data should be considered as low quality and may have been rejected. +'poor':3, +#The data should be treated as suspect. +'suspect':4, +#The data has not been checked by any qualitative or quantitative method. +'unchecked':5 + +} + +###--------------------------------------------------------------------------------------------------### +###QUALITY ASSURANCE FLAGS STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#Define dictionary associating standardised quality assurance (QA) flag names with unique QA flag codes + +standard_QA_name_to_QA_code = { + +#Most Common QA Flags +#----------------------------------------------------- +#Missing Measurement +#Measurement is missing (i.e. NaN). +'Missing Measurement': 0, + +#Infinite Value +#Value is infinite -- happens when data values are outside of the range that the float32 data type can handle (-3.4E+38 to +3.4E+38). +'Infinite Value': 1, + +#Negative Measurement +#Measurement is negative in absolute terms. +'Negative Measurement': 2, + +#Zero Measurement +#Have measurement equal to zero. +'Zero Measurement': 3, + +#Not Maximum Data Quality Level +#Measurement is not of highest data quality level available from data provider +'Not Maximum Data Quality Level': 4, + +#Preliminary Data +#Measurement has been flagged by data provider to be preliminary in nature (i.e. pending review) +'Preliminary Data': 5, + +#Invalid Data Provider Flags - GHOST Decreed +#Measurements are associated with data quality flags given by the data provider which have been decreed by the GHOST project architects to suggest the measurements are associated with substantial uncertainty/bias +'Invalid Data Provider Flags - GHOST Decreed': 6, + +#Invalid Data Provider Flags - Network Decreed +#Measurements are associated with data quality flags given by the data provider which have been decreed by the reporting network to suggest the measurements are associated with substantial uncertainty/bias +'Invalid Data Provider Flags - Network Decreed': 7, + +#No Valid Data to Average +#After screening by key QA flags, no valid data remains to average in temporal window +'No Valid Data to Average': 8, + +#----------------------------------------------------- + + +#Measurement Process Flags +#----------------------------------------------------- +#Methodology Not Mapped +#The measurement methodology used has not yet been mapped to standardised dictionaries of measurement methodologies. +'Methodology Not Mapped': 10, + +#Assumed Primary Sampling +#A level of assumption has been made in determining the primary sampling type. +'Assumed Primary Sampling': 11, + +#Assumed Sample Preparation +#A level of assumption has been made in determining the sample preparation. +'Assumed Sample Preparation': 12, + +#Assumed Measurement Methodology +#A level of assumption has been made in determining the measurement methodology. +'Assumed Measurement Methodology': 13, + +#Unknown Primary Sampling Type +#The specific name of the primary sampling type is unknown. +'Unknown Primary Sampling Type': 14, + +#Unknown Primary Sampling Instrument +#The specific name of the primary sampling instrument is unknown. +'Unknown Primary Sampling Instrument': 15, + +#Unknown Sample Preparation Type +#The specific name of the sample preparation type is unknown. +'Unknown Sample Preparation Type': 16, + +#Unknown Sample Preparation Technique +#The specific name of the sample preparation technique is unknown. +'Unknown Sample Preparation Technique': 17, + +#Unknown Measurement Method +#The specific name of the measurement method is unknown. +'Unknown Measurement Method': 18, + +#Unknown Measuring Instrument +#The specific name of measuring instrument is unknown. +'Unknown Measuring Instrument': 19, + +#Erroneous Primary Sampling +#The primary sampling is not appropriate to prepare the specific parameter for subsequent measurement. +'Erroneous Primary Sampling': 20, + +#Erroneous Sample Preparation +#The sample preparation is not appropriate to prepare the specific parameter for subsequent measurement. +'Erroneous Sample Preparation': 21, + +#Erroneous Measurement Method +#The measurement methodology used is not known to be able to measure the specific parameter. Only do check when known (or have assumed method). +'Erroneous Measurement Methodology': 22, + +#Invalid QA Measurement Method +#The specific measurement methodology has been decreed not to conform to QA standards as the method is not sufficiently proven/ subject to substantial biases/uncertainty. Only do check when known (or have assumed method). +'Invalid QA Measurement Methodology': 23, + +#Corrected Parameter +#The measurements for a specific parameter have been corrected, or are of significantly higher quality than other types of measurements +'Corrected Parameter': 24, +#----------------------------------------------------- + + +#Sample Gas Volume Flags +#----------------------------------------------------- +#Sample Gas Volume - Network Standard +#The volume of the sampled gas (which varies with temperature and pressure) is assumed to be for a known standard network defined temperature and pressure for a component. This happens when no sample gas temperature/pressure are reported explicitly per measurement. +'Sample Gas Volume - Network Standard': 30, + +#Sample Gas Volume - Unknown +#The volume of the sampled gas (which varies with temperature and pressure) is unknown. This happens when no sample gas temperature/pressure are reported explicitly per measurement AND there is no known standard network defined temperature and pressure for a component. +'Sample Gas Volume - Unknown': 31, + +#Unit Conversion - Network Standard Sample Gas Volume Assumption +#Unit conversion has been done assuming the volume of the sampled gas (which varies with temperature and pressure) is for a known standard network defined temperature and pressure for a component. +'Unit Conversion - Network Standard Sample Gas Volume Assumption': 32, + +#Unit Conversion - Educated Guess Sample Gas Volume Assumption +#Unit conversion has been done making an educated guess at the sampled gas temperature/pressure measurements are associated with. +'Unit Conversion - Educated Guess Sample Gas Volume Assumption': 33, +#----------------------------------------------------- + + +#Positional Metadata Doubt +#----------------------------------------------------- +#Station Position Doubt - DEM Decreed +#There exists significant doubt about the accuracy of the station position, as when cross-referencing the reported station altitude with the altitude from the ASTER v3 DEM (30 metre resolution) the absolute difference returned is >= 50 metres. +'Station Position Doubt - DEM Decreed': 40, + +#Station Position Doubt - Manually Decreed +#There exists significant doubt about the accuracy of the station position, determined from empirical/word of mouth evidence +'Station Position Doubt - Manually Decreed': 41, +#----------------------------------------------------- + + +#Data Product Flags +#----------------------------------------------------- +#Data Product +#Data is a product that has been calculated from multiple components +'Data Product': 45, + +#Insufficient Data to Calculate Data Product +#There is insufficient valid data required to calculate data product +'Insufficient Data to Calculate Data Product': 46, +#----------------------------------------------------- + + +#Local Condition Flags +#----------------------------------------------------- +#Local Precipitation +#There is some form of precipitation present at the measuring location at the time of measurement, reported by the data providers +'Local Precipitation': 50, + +#Local Extreme Weather +#There is some form of extreme weather (heavy precipitation, funnel clouds, squalls, tropical cyclones, duststorm, sandstorm, dust/sand whirls, high winds) present at the measuring location at the time of measurement, reported by the data providers +'Local Extreme Weather': 51, + +#Local Atmospheric Obscuration +#There is some form of atmospheric obscuration present at the measuring location at the time of measurement, reported by the data providers +'Local Atmospheric Obscuration': 52, + +#Local Contamination +#There is some form of local contamination present at the measuring location at the time of measurement, reported by the data providers +'Local Contamination': 53, + +#Local Exceptional Event +#There is some kind of exceptional event (both natural and anthropogenically induced) active at the measuring location at the time of measurement, reported by the data providers +'Local Exceptional Event': 54, + + +#Timezone Flags +#----------------------------------------------------- +#Non-Integer Local Timezone (relative to UTC) +#Local timezone has been determined to be non-integer for time of measurement, relative to UTC. +'Non-Integer Local Timezone (relative to UTC)': 60, + +#Timezone Doubt +#Significant doubt exists regarding the timezone of the reported data +'Timezone Doubt':61, + + +#Limit of Detection Flags +#----------------------------------------------------- +#Below Documented Lower Limit of Detection +#Measurement is below or equal to the instrumental documented lower limit of detection. +'Below Documented Lower Limit of Detection': 70, + +#Below Reported Lower Limit of Detection +#Measurement is below or equal to the network reported lower limit of detection. +'Below Reported Lower Limit of Detection': 71, + +#Below Preferential Lower Limit of Detection +#Measurement is below or equal to the preferential lower limit of detection (reported, and then documented). +'Below Preferential Lower Limit of Detection': 72, + +#Above Documented Upper Limit of Detection +#Measurement is above or equal to the instrumental documented upper limit of detection. +'Above Documented Upper Limit of Detection': 73, + +#Above Reported Upper Limit of Detection +#Measurement is above or equal to the network reported upper limit of detection. +'Above Reported Upper Limit of Detection': 74, + +#Above Preferential Upper Limit of Detection +#Measurement is above or equal to the preferential upper limit of detection (reported, and then documented). +'Above Preferential Upper Limit of Detection': 75, + + +#Measurement Resolution Flags +#----------------------------------------------------- +#Insufficient Measurement Resolution - Documented +#The documented resolution of measurement is coarser than a set limit (variable by measured parameter). +'Insufficient Measurement Resolution - Documented': 80, + +#Insufficient Measurement Resolution - Reported +#The reported resolution of measurement is coarser than a set limit (variable by measured parameter). +'Insufficient Measurement Resolution - Reported': 81, + +#Insufficient Measurement Resolution - Preferential +#The preferential resolution of measurement (reported, and then documented) is coarser than a set limit (variable by measured parameter). +'Insufficient Measurement Resolution - Preferential': 82, + +#Insufficient Measurement Resolution - Empirical +#The resolution of measurement is analysed month by month. If the minimum difference between observations is coarser than a set limit (variable by measured parameter), measurements are flagged. +'Insufficient Measurement Resolution - Empirical': 83, + + +#Recurring Value Flags +#----------------------------------------------------- +#Persistent Recurring Values - 5/6 +#Check for persistently recurring values. Check is done by using a moving window of 9 measurements. If 5/6 (i.e. 83.33%) of values in the window are the same then the entire window is flagged. +'Persistent Recurring Values - 5/6': 90, + +#Persistent Recurring Values - 9/12 +#Check for persistently recurring values. Check is done by using a moving window of 12 measurements. If 9/12 (i.e. 75%) of values in the window are the same, then the entire window is flagged. +'Persistent Recurring Values - 9/12': 91, + +#Persistent Recurring Values - 16/24 +#Check for persistently recurring values. Check is done by using a moving window of 24 measurements. If 16/24 (i.e. 66.66%) of values in the window are the same, then the entire window is flagged. +'Persistent Recurring Values - 16/24': 92, + + +#Monthly Fractional Unique Value Flags +#----------------------------------------------------- +#Monthly Fractional Unique Values <= 1% +#Fraction of unique values in a UTC month is <= 1% of total valid values in period +'Monthly Fractional Unique Values <= 1%': 100, + +#Monthly Fractional Unique Values <= 5% +#Fraction of unique values in a UTC month is <= 5% of total valid values in period +'Monthly Fractional Unique Values <= 5%': 101, + +#Monthly Fractional Unique Values <= 10% +#Fraction of unique values in a UTC month is <= 10% of total valid values in period +'Monthly Fractional Unique Values <= 10%': 102, + +#Monthly Fractional Unique Values <= 30% +#Fraction of unique values in a UTC month is <= 30% of total valid values in period +'Monthly Fractional Unique Values <= 30%': 103, + +#Monthly Fractional Unique Values <= 50% +#Fraction of unique values in a UTC month is <= 50% of total valid values in period +'Monthly Fractional Unique Values <= 50%': 104, + +#Monthly Fractional Unique Values <= 70% +#Fraction of unique values in a UTC month is <= 70% of total valid values in period +'Monthly Fractional Unique Values <= 70%': 105, + +#Monthly Fractional Unique Values <= 90% +#Fraction of unique values in a UTC month is <= 90% of total valid values in period +'Monthly Fractional Unique Values <= 90%': 106, + + +#Data Outlier Flags +#----------------------------------------------------- +#Data Outlier - Exceeds Scientifically Decreed Lower/Upper Limit +#The measured value is below or greater than scientifically feasible lower/upper limits (variable by parameter). +'Data Outlier - Exceeds Scientifically Decreed Lower/Upper Limit': 110, + +#Data Outlier - Monthly Median Exceeds Scientifically Decreed Upper Limit +#The median of the measurements in a month is greater than a scientifically feasible limit (variable by parameter). +'Data Outlier - Monthly Median Exceeds Scientifically Decreed Upper Limit': 111, + +#Data Outlier - Network Decreed +#Data has been reported to be an outlier through data flags by the network data reporters (and not manually checked and verified as valid). +'Data Outlier - Network Decreed': 112, + +#Data Outlier - Manually Decreed +#Data has been found and decreed manually to be an outlier. +'Data Outlier - Manually Decreed': 113, + +#Possible Data Outlier - Monthly Adjusted Boxplot +#Measured value exceeds adjusted boxplot inner fence (lower or upper) of monthly data, therefore is a possible data outlier. +'Possible Data Outlier - Monthly Adjusted Boxplot': 114, + +#Probable Data Outlier - Monthly Adjusted Boxplot +#Measured value exceeds adjusted boxplot outer fence (lower or upper) of monthly data, therefore is a probable data outlier. +'Probable Data Outlier - Monthly Adjusted Boxplot': 115, + +#Monthly Distribution Consistency +#QA flags which describe how consistent a monthly distribution is with other distributions for the same month, across the years. +#This is done by calculating how consistent a monthly distribution of measurements is with the distributions for the same month of the neighbouring 5 years (backwards and forwards in time), as well as calculating how this metric of consistency differs from all other calculated metrics for the same month, across the time series. +#Kernel density estimation (kde) is used to estimate the probability density function (PDF) for the month in question, as well as the neighbouring year months. +#The intersection is then taken between the month in question's PDF and the surrounding months PDF's, for which 1.0 - the median intersection value is taken as the metric of consistency (perfect intersection = 0.0, no intersection = 1.0). +#Only the neighbouring 5 years are used, to limit the impact of any long-term trends biasing the comparison. +#Additionally determined is to what extent does the median PDF intersection metric per month differ from the typical (median) intersection score for the same month across the entire timerseries (0.0 = perfectly consistent or better than the median intersection score, 1.0 = intersection score is as far below as possible the median intersection score). +#This metric provides a weighting for the multi-annual variance of the monthly distributions. If there is a low intersection score, but there are typically always low intersection scores due to high variance across the years, then the difference score will be close to 0.0. Conversely, if there is a low intersection score, but there are typically always high intersection scores, then the difference score will be closer to 1.0, as it is outlying. +#These metrics are then both summed to give a total classification score of the normality of the monthly distribution (2.0 = Extremely different from typical case. 0.0 = Extremely consistent with typical case). +#The classification score is split into 10 zones (in range increments of 0.2) from the most consistent monthly distributions in Zone 1 (score of 0.0 to 0.2), to the least consistent monthly distributions in Zone 10 (score of 1.8 to 2.0). +#All months for which a total classification score can be determined are flagged with a flag for the respective classification score zone. +#If 2/3, 4/6, 8/12 consecutive months are classed as zone 6 or higher, then it is suspected there is a systematic reason for the non-typical distributions, and the entire periods are flagged. +#----------------------------------------------------- +#Monthly Distribution Consistency - Zone 1 +'Monthly Distribution Consistency - Zone 1': 120, + +#Monthly Distribution Consistency - Zone 2 +'Monthly Distribution Consistency - Zone 2': 121, + +#Monthly Distribution Consistency - Zone 3 +'Monthly Distribution Consistency - Zone 3': 122, + +#Monthly Distribution Consistency - Zone 4 +'Monthly Distribution Consistency - Zone 4': 123, + +#Monthly Distribution Consistency - Zone 5 +'Monthly Distribution Consistency - Zone 5': 124, + +#Monthly Distribution Consistency - Zone 6 +'Monthly Distribution Consistency - Zone 6': 125, + +#Monthly Distribution Consistency - Zone 7 +'Monthly Distribution Consistency - Zone 7': 126, + +#Monthly Distribution Consistency - Zone 8 +'Monthly Distribution Consistency - Zone 8': 127, + +#Monthly Distribution Consistency - Zone 9 +'Monthly Distribution Consistency - Zone 9': 128, + +#Monthly Distribution Consistency - Zone 10 +'Monthly Distribution Consistency - Zone 10': 129, + +#Monthly Distribution Consistency - Unclassified +'Monthly Distribution Consistency - Unclassified': 130, + +#Systematic Inconsistent Monthly Distributions - 2/3 Months >= Zone 6 +#2 out of 3 months' distributions are classed as Zone 6 or higher, suggesting there is potentially systematic reason for the inconsistent distributions across the 3 months. +'Systematic Inconsistent Monthly Distributions - 2/3 Months >= Zone 6': 131, + +#Systematic Inconsistent Monthly Distributions - 4/6 Months >= Zone 6 +#4 out of 6 months' distributions are classed as Zone 6 or higher, suggesting there is potentially systematic reason for the inconsistent distributions across the 6 months. +'Systematic Inconsistent Monthly Distributions - 4/6 Months >= Zone 6': 132, + +#Systematic Inconsistent Monthly Distributions - 8/12 Months >= Zone 6 +#8 out of 12 months' distributions are classed as Zone 6 or higher, suggesting there is potentially systematic reason for the inconsistent distributions across the 12 months. +'Systematic Inconsistent Monthly Distributions - 8/12 Months >= Zone 6': 133, + +#----------------------------------------------------- + + +} + +###--------------------------------------------------------------------------------------------------### +###DEFINE DEFAULT DATA FLAGS / QA FLAGS FOR PROVIDENTIA +###--------------------------------------------------------------------------------------------------### + +providentia_defaults = { +"flag": [], + +"qa_standard": ["Missing Measurement", "Infinite Value", "Negative Measurement", +"Invalid Data Provider Flags - GHOST Decreed", "No Valid Data to Average", +"Erroneous Primary Sampling", "Erroneous Sample Preparation", "Erroneous Measurement Methodology", +"Below Preferential Lower Limit of Detection", "Above Preferential Upper Limit of Detection", +"Insufficient Measurement Resolution - Preferential", "Insufficient Measurement Resolution - Empirical", +"Data Outlier - Exceeds Scientifically Decreed Lower/Upper Limit", +"Data Outlier - Monthly Median Exceeds Scientifically Decreed Upper Limit", +"Data Outlier - Network Decreed", "Data Outlier - Manually Decreed", +"Probable Data Outlier - Monthly Adjusted Boxplot", +"Systematic Inconsistent Monthly Distributions - 4/6 Months >= Zone 6", +"Systematic Inconsistent Monthly Distributions - 8/12 Months >= Zone 6"], + +"qa_non_negative": ["Missing Measurement", "Infinite Value", +"Invalid Data Provider Flags - GHOST Decreed", "No Valid Data to Average", +"Erroneous Primary Sampling", "Erroneous Sample Preparation", "Erroneous Measurement Methodology", +"Below Preferential Lower Limit of Detection", "Above Preferential Upper Limit of Detection", +"Insufficient Measurement Resolution - Preferential", "Insufficient Measurement Resolution - Empirical", +"Data Outlier - Exceeds Scientifically Decreed Lower/Upper Limit", +"Data Outlier - Monthly Median Exceeds Scientifically Decreed Upper Limit", +"Data Outlier - Network Decreed", "Data Outlier - Manually Decreed", +"Probable Data Outlier - Monthly Adjusted Boxplot", +"Systematic Inconsistent Monthly Distributions - 4/6 Months >= Zone 6", +"Systematic Inconsistent Monthly Distributions - 8/12 Months >= Zone 6"] +} + +###--------------------------------------------------------------------------------------------------### +###DEFINE METADATA WARNING MODIFICATION FIELDS +###--------------------------------------------------------------------------------------------------### + +#define fields for which a warning will be wrote upon modification, associated with the names of the fields as they should be written in the text warning. + +metadata_modification_field_to_warning_name = {'latitude': 'Latitude', + 'longitude': 'Longitude', + 'altitude': 'Altitude', + 'sampling_height': 'Sampling Height', + 'measurement_altitude': 'Measurement Altitude', + 'area_classification': 'Area Classification', + 'station_classification': 'Station Classification', + 'main_emission_source': 'Main Emission Source', + 'land_use': 'Land Use', + 'terrain': 'Terrain', + 'measurement_scale': 'Measurement Scale', + 'representative_radius': 'Representative Radius', + 'primary_sampling_type': 'Primary Sampling Type', + 'primary_sampling_instrument_name':'Primary Sampling Instrument Name', + 'sample_preparation_types': 'Sample Preparation Types', + 'sample_preparation_techniques': 'Sample Preparation Techniques', + 'measurement_methodology': 'Measurement Methodology', + 'measuring_instrument_name': 'Measuring Instrument Name' + } + +###--------------------------------------------------------------------------------------------------### +###MEASUREMENT PROCESS STANDARDISATIONS +###--------------------------------------------------------------------------------------------------### + +#----------------------------------------------------------------------------------------# +#STANDARD SAMPLING INFORMATION +#----------------------------------------------------------------------------------------# +#define dictionary that contains information pertaining to standardised sampling types and specific sampling instrumentation + +#The "sampling type" refers to type of sampling used by either the measurement instrument, or for 2 (or more) step-processes, in the sample preparation phase + +standard_sampling_types = { +#------------------------------------ +#low volume continuous/high volume continuous + +#Ambient air is continuously drawn in by a pump of some description. + +#The rate that air is sampled can be particularly important for the measurements of particulate matter. +#Many particulate matter measurements utilise a 2-step process, where standalone samplers first sample and filter air, and then the filtered products are measured by separate instrument. +#The standalone samplers can be separated into 2 discrete groups: low volume samplers & high volume samplers. + +#Many instruments also have built-in continuous samplers. These are in-almost all cases low-volume, when not otherwise stated. + +#-------- +#low volume continuous + +#Ambient air is continuously drawn in using a low volume sampler (typically sampling < ~24,000 litres of air over a 24-hour period) +#Some of these samplers have in-built filters, designed to specifically retain certain compounds. + +'low volume continuous':{ + 'instruments':{ + 'Andersen RAAS10 100': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS2.5 100': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS10 200': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS2.5 200': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS10 300': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS2.5 300': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'Not many details but what there is, is here: https://www.scribd.com/document/404806002/Thermo-High-Volume-Sampler-Brochure'}, + 'Andersen RAAS2.5 Nylon': {'sample_preparation_type':'filter;denuder', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'7.3', 'instrument_further_details':'See details here: https://bgi.mesalabs.com/wp-content/uploads/sites/35/2014/12/andersen.pdf and https://www3.epa.gov/ttnamti1/files/ambient/pm25/spec/pm25pict.pdf'}, + 'Andersen RAAS2.5 Quartz': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'7.3', 'instrument_further_details':'See details here: https://bgi.mesalabs.com/wp-content/uploads/sites/35/2014/12/andersen.pdf and https://www3.epa.gov/ttnamti1/files/ambient/pm25/spec/pm25pict.pdf'}, + 'Andersen RAAS2.5 Teflon': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'See details here: https://bgi.mesalabs.com/wp-content/uploads/sites/35/2014/12/andersen.pdf and https://www3.epa.gov/ttnamti1/files/ambient/pm25/spec/pm25pict.pdf'}, + 'APM PMS-104': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'instrument_further_details':'See more detail here: http://apm.co.kr/sub2/view.php?id=20&ca_id=&page='}, + 'Atmoservice PNS3D15': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'instrument_further_details':'See more detail here: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6096885/'}, + 'BGI frmOmni': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'5.0', 'instrument_manual_name':'BGI_frmOmni_Manual.pdf'}, + 'BGI PQ100': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'2.0-25.0', 'instrument_manual_name':'BGI_PQ100_Specs.pdf'}, + 'BGI PQ200': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'10.0-20.0', 'instrument_manual_name':'BGI_PQ200_Specs.pdf'}, + 'Comde Derenda LVS 3.1': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.6667-58.3333', 'instrument_manual_name':'Comde_Derenda_MVS6.1_Specs.pdf'}, + 'Comde Derenda LVS 3.2': {'sample_preparation_type':'filter', 'instrument_further_details':'Confirmation it is a sampling instrument here: http://dd.eionet.europa.eu/vocabularyconcept/aq/samplingequipment/derendaLVS-3-2/view?facet=HTML+Representation'}, + 'Comde Derenda MVS 6.1': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.6667-91.6667', 'instrument_manual_name':'Comde_Derenda_MVS6.1_Specs.pdf'}, + 'Comde Derenda PNS 16T': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.6667-91.6667', 'instrument_manual_name':'Comde_Derenda_PNS_16T_Specs.pdf'}, + 'Digitel DPA-14': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'5.0-50.0', 'instrument_manual_name':'Digitel_DPA-14_Specs.pdf'}, + 'Elecos APM-1': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'instrument_further_details':'See more detail here: https://uk-air.defra.gov.uk/assets/documents/reports/empire/quarg/quarg_11.pdf', 'primary_sampling_process_details':'Make assumption sampling instrument is low volume continuous.', 'primary_sampling_assumption':True}, + 'General Metal Works 9200': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'instrument_further_details':'A little detail here: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1985.10465915'}, + 'IMPROVE Module A': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'22.8', 'instrument_further_details':'See more information here: https://vista.cira.colostate.edu/Improve/improve-program/ and http://vista.cira.colostate.edu/improve/wp-content/uploads/2020/02/IMPROVE-TSA-Report-2019.pdf'}, + 'IMPROVE Module B': {'sample_preparation_type':'filter;denuder', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'22.8', 'instrument_further_details':'See more information here: https://vista.cira.colostate.edu/Improve/improve-program/ and http://vista.cira.colostate.edu/improve/wp-content/uploads/2020/02/IMPROVE-TSA-Report-2019.pdf'}, + 'IMPROVE Module C': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'22.8', 'instrument_further_details':'See more information here: https://vista.cira.colostate.edu/Improve/improve-program/ and http://vista.cira.colostate.edu/improve/wp-content/uploads/2020/02/IMPROVE-TSA-Report-2019.pdf'}, + 'IMPROVE Module D': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'16.9', 'instrument_further_details':'See more information here: https://vista.cira.colostate.edu/Improve/improve-program/ and http://vista.cira.colostate.edu/improve/wp-content/uploads/2020/02/IMPROVE-TSA-Report-2019.pdf'}, + 'IVL P-Model': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'instrument_further_details':'Not much detail provided, but believe this sampler uses different sampling inlets which are then named as P-Model S10 (for PM10) P-Model S2.5 (for PM2.5). Group different referenced "S" names all under "IVL P-Model". See detail here for S10 version: https://www.aces.su.se/reflab/wp-content/uploads/2016/11/ACES_Report_4.pdf; See detail here for S2.5 version: https://pubs.rsc.org/en/content/articlelanding/2017/em/c7em00122c#!divAbstract'}, + 'KNF IP20-T': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'11.5', 'instrument_further_details':'See more detail here: https://www.overstocklabequipment.com/product-p/un811ktp.htm'}, + 'Leckel SEQ 47-50': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.66-50', 'instrument_manual_name':'Leckel_SEQ_47-50_Specs.pdf'}, + 'Leckel LVS3': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'Leckel_LVS3_MVS6_Specs.pdf'}, + 'Leckel MVS6': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'38.33-58.33', 'instrument_manual_name':'Leckel_LVS3_MVS6_Specs.pdf'}, + 'Lipinski AGT24': {'sample_preparation_type':'filter', 'instrument_further_details':'Not many details but what there is, is here: http://dd.eionet.europa.eu/vocabularyconcept/aq/samplingequipment/LipinskiAGT24/view?facet=HTML+Representation', 'primary_sampling_assumption':True, 'primary_sampling_process_details':'Make assumption sampling instrument is low volume continuous.'}, + 'MCZ LVS1': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'MCZ_LVS1_Specs.pdf'}, + 'MCZ LVS16': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.66-38.33', 'instrument_manual_name':'MCZ_LVS16_Specs.pdf'}, + 'Met One E-FRM-DC': {'sample_preparation_type':'filter', 'documented_flow_rate':'16.67', 'instrument_manual_name':'Met_One_E-FRM-DC_Specs.pdf'}, + 'Met One E-SEQ-FRM': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.67', 'instrument_manual_name':'Met_One_E-SEQ-FRM_Specs.pdf'}, + 'Met One SASS': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'6.7', 'instrument_manual_name':'Met_One_SASS_Specs.pdf'}, + 'Met One SUPER SASS': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'6.7', 'instrument_manual_name':'Met_One_SASS_Specs.pdf'}, + 'NILU EK': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','SO2'], 'documented_flow_rate':'10.0', 'instrument_further_details':'See detail here: http://products.nilu.no/ProductsDivision/AirSamplers/SequentialAirSamplerTypeEK.aspx'}, + 'NILU FK': {'sample_preparation_type':'filter', 'isolated_parameters':['NO2','SO2','PM10','PM2.5','PM1'], 'documented_flow_rate':'0.5-5.0', 'instrument_further_details':'See more detail here:https://www.nilu.no/wp-content/uploads/dnn/38-2000-bs.pdf'}, + 'NILU SS2000': {'sample_preparation_type':'filter', 'isolated_parameters':['NO2','SO2'], 'documented_flow_rate':'0.5-1.0', 'instrument_manual_name':'NILU_SS2000_Specs.pdf'}, + 'Oregon DEQ': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'instrument_further_details':'See more details here: https://books.google.es/books?id=Dfk0AQAAMAAJ&pg=RA8-PA2&lpg=RA8-PA2&dq=RFPS-0389-071&source=bl&ots=JCh3fbWuGH&sig=ACfU3U2FkxE-ScRAxPwvtfhgp8YRdhYDqA&hl=en&sa=X&ved=2ahUKEwj1i4apxqv2AhX1iv0HHcliASsQ6AF6BAgREAM#v=onepage&q=RFPS-0389-071&f=false'}, + 'Riemer Autocan 2/4': {'sample_preparation_type':'filter', 'instrument_further_details':'See more details here: http://fp7.actris.eu/Portals/97/deliverables/PU/WP4_D4.7_M32.pdf'}, + 'Riemer SPF4': {'sample_preparation_type':'filter', 'isolated_parameters':['SO2','NH3','HNO3'], 'instrument_further_details':'See more detail here: http://www.riemer-mt.com/low.volume.php'}, + 'Rivm Universal Sampler': {'sample_preparation_type':'sorbent trapping', 'documented_flow_rate':'0.1-0.65', 'instrument_further_details':'See more details here: https://www.rivm.nl/bibliotheek/rapporten/723101055.pdf'}, + 'Sierra Andersen 244 Dichot': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'See more details here: https://www.tandfonline.com/doi/pdf/10.1080/02786829108959500 and https://www.tandfonline.com/doi/pdf/10.1080/02786820116873'}, + 'Sierra Andersen 246B Dichot': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'instrument_further_details':'See more details here: https://acp.copernicus.org/articles/6/1865/2006/acp-6-1865-2006.pdf and https://www.tandfonline.com/doi/pdf/10.1080/10473289.2000.10464163'}, + 'Sierra Andersen 254': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'11.3', 'instrument_further_details':'See more details here: https://books.google.es/books?id=yCDGFlP3toUC&pg=PA164&lpg=PA164&dq=sierra+andersen+254+sampler&source=bl&ots=-vKaKy844g&sig=ACfU3U0D7VsfZVSXiQnHikhWA7FBV2NT0A&hl=en&sa=X&ved=2ahUKEwjb87LTvqv2AhXNR_EDHRuWDwYQ6AF6BAgREAM#v=onepage&q=sierra%20andersen%20254%20sampler&f=false'}, + 'TCR Terora Skypost Gas': {'sample_preparation_type':'sorbent trapping', 'documented_flow_rate':'0.5-10.0', 'instrument_manual_name':'TCR_Tecora_Skypost_Gas_Specs.pdf'}, + 'TCR Terora Skypost PM FG': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'10.0-50.0', 'instrument_manual_name':'TCR_Tecora_Skypost_PM_Specs.pdf'}, + 'TCR Tecora Sentinel': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'instrument_manual_name':'TCR_Tecora_Sentinel_Specs.pdf', 'primary_sampling_assumption':True, 'primary_sampling_process_details':'Make assumption sampling instrument is low volume continuous.'}, + 'Thermo Andersen FH95-KF': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'38.33', 'instrument_further_details':'Not many details but what there is, is here: https://core.ac.uk/download/pdf/38621632.pdf'}, + 'Thermo Partisol 2000': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.6667', 'instrument_manual_name':'Thermo_Partisol_2000_Manual.pdf'}, + 'Thermo Partisol 2025': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'16.6667', 'instrument_manual_name':'Thermo_Partisol_2025_Specs.pdf'}, + 'Thermo Partisol 2000i': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'5-18', 'instrument_manual_name':'Thermo_Partisol_2000i_Manual.pdf'}, + 'Thermo Partisol 2025i': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'10-19', 'instrument_manual_name':'Thermo_Partisol_2025i_Specs.pdf.pdf'}, + 'Thermo Partisol 2300': {'sample_preparation_type':'filter', 'isolated_parameters':['SO2','PM10','PM2.5'], 'documented_flow_rate':'5-18', 'instrument_manual_name':'Thermo_Partisol_2300_Manual.pdf.pdf'}, + 'Tisch Environmental Wilbur': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'16.6667', 'instrument_manual_name':'Tisch_Environmental_Wilbur_Manual.pdf'}, + 'URG MASS 400': {'sample_preparation_type':'filter;denuder', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'See more details here: https://bgi.mesalabs.com/wp-content/uploads/sites/35/2014/12/urgtrng.pdf'}, + 'URG MASS 450': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'16.67', 'instrument_further_details':'See more details here: https://bgi.mesalabs.com/wp-content/uploads/sites/35/2014/12/urgtrng.pdf'}, + 'URG 3000N': {'sample_preparation_type':'filter', 'isolated_parameters':['PM2.5'], 'documented_flow_rate':'22.0', 'instrument_further_details':'See more details here: http://www.urgcorp.com/systems/manual-sampling-systems/urg-3000n-carbon-sampler'}, + 'Wedding and Associates Dichot': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'instrument_further_details':'Also called General Metal Works 9200. Not many details but what there is, is here: https://books.google.es/books?id=hEoPEAAAQBAJ&pg=PA27&lpg=PA27&dq=wedding+dichot+pm+sampling&source=bl&ots=brIKJImj44&sig=ACfU3U3QztrWJllkDy1ONu5AWKUk19FE6Q&hl=en&sa=X&ved=2ahUKEwjl6Zj7x6v2AhVNgf0HHUTtBlYQ6AF6BAgsEAM#v=onepage&q=wedding%20dichot%20pm%20sampling&f=false'}, + 'Xonteck 910': {'sample_preparation_type':'filter', 'documented_flow_rate':'0.02-0.1', 'instrument_manual_name':'Xonteck_910_Specs.pdf'}, + 'Xonteck 924': {'sample_preparation_type':'filter', 'documented_flow_rate':'0.5-30.0', 'instrument_manual_name':'Xonteck_924_Specs.pdf'}, + 'Xonteck 926': {'sample_preparation_type':'filter', 'instrument_further_details':'Not many details, but what there is, is here: https://buyandsell.gc.ca/cds/public/2015/04/15/de1e4f53d40b1a81d93ada3347956ae0/k8a21-14-0099qa1_fre.pdf'} + } +}, + +#-------- +#high volume continuous + +#Ambient air is continuously drawn in using a high volume sampler instrumentation (typically sampling > ~100,000 litres of air over a 24-hour period) +#Some of these samplers have in-built filters, designed to specifically retain certain compounds. + +'high volume continuous':{ + 'instruments':{ + 'Digitel DH-77': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'100-1000', 'instrument_manual_name':'Digitel_DH-77_Specs.pdf'}, + 'Digitel DHA-80': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'documented_flow_rate':'100-1000', 'instrument_manual_name':'Digitel_DHA-80_Manual.pdf'}, + 'Ecotech 3000': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'750-1600', 'instrument_manual_name':'Ecotech_3000_Manual.pdf'}, + 'General Metal Works 9000': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'instrument_further_details':'See more details here: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1986.10466131'}, + 'Graseby Andersen GMW 1200': {'sample_preparation_type':'filter', 'instrument_further_details':'Not many details but what there is, is here: https://ww2.arb.ca.gov/sites/default/files/barcu/regact/aaqspm/revfro.pdf'}, + 'Graseby Andersen GMW 321-B':{'sample_preparation_type':'filter', 'instrument_further_details':'Not many details but what there is, is here: https://ww2.arb.ca.gov/sites/default/files/barcu/regact/aaqspm/revfro.pdf'}, + 'Graseby Andersen GMW 321-C':{'sample_preparation_type':'filter', 'instrument_further_details':'Not many details but what there is, is here: https://ww2.arb.ca.gov/sites/default/files/barcu/regact/aaqspm/revfro.pdf'}, + 'MCV CAV-A/mb': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'333.333-1333.333', 'instrument_further_details':'See more details here: http://www.mcvsa.com/Productes/Atmosfera/CaptadordealtovolumenMCVCAVAmb/tabid/114/Default.aspx'}, + 'MCV CAV-A/msb': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'documented_flow_rate':'250-666.667', 'instrument_further_details':'See more details here: http://www.mcvsa.com/Productes/Atmosfera/CaptadordealtovolumensecuencialMCVCAVAMSb/tabid/139/language/es-ES/Default.aspx'}, + 'Sierra 305-2000': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5','PM1'], 'instrument_further_details':'See more details here: https://pubs.acs.org/doi/pdf/10.1021/es00095a726'}, + 'Sierra Andersen 321A': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'instrument_further_details':'See more details here: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1986.10466131'}, + 'Thermo MFC-PM10': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'566,34-1699.01', 'instrument_manual_name':'Thermo_MFC-PM10_Specs.pdf'}, + 'Thermo VFC-PM10': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1132.67', 'instrument_manual_name':'Thermo_VFC-PM10_Specs.pdf'}, + 'Tisch Environmental 6000': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1130', 'instrument_manual_name':'Tisch_Environmental_6000_Manual.pdf'}, + 'Tisch Environmental 6070': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1020-1240', 'instrument_manual_name':'Tisch_Environmental_6070_Specs.pdf'}, + 'Tisch Environmental 6070D': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1020-1240', 'instrument_manual_name':'Tisch_Environmental_6070D_Specs.pdf'}, + 'Tisch Environmental 6070DX':{'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1020-1240', 'instrument_manual_name':'Tisch_Environmental_6070D_Specs.pdf'}, + 'Tisch Environmental 6070V': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10'], 'documented_flow_rate':'1132.67-1245.94', 'instrument_manual_name':'Tisch_Environmental_6070V_Specs.pdf'}, + 'Wedding and Associates PM': {'sample_preparation_type':'filter', 'isolated_parameters':['PM10','PM2.5'], 'instrument_further_details':'See more details here: https://www.nature.com/articles/7500138.pdf?origin=ppub and https://www3.epa.gov/ttnamti1/files/ambient/criteria/AMTIC%20List%20Dec%202016-2.pdf'} + } +}, + +#------------------------------------ +#injection + +#The measuring instrument is injected with a limited quantity of air +#The limited injected quantity is typically pre-processed to aid the detection of a specific species. + +'injection':{ + 'instruments':{} +}, + +#------------------------------------ +#continuous injection + +#The measuring instrument is periodically injected with limited quantities of air. +#The injected quantities can either be from continuous automated collection (assumed to be of a low volume), or from pre-processed loaded samples, which are periodically injected. + +'continuous injection':{ + 'instruments':{} +}, + +#------------------------------------ +#passive + +#Air is not drawn in, rather the air sampled is the ambient air which interacts with measurement apparatus + +'passive':{ + 'instruments':{} +}, + +#------------------------------------ +#remote + +#The measuring instrument does not actively sample air, but uses advanced optical techniques to measure parameters in air over long distances + +'remote':{ + 'instruments':{} +}, + +#------------------------------------ +#manual +#No instrument is used to determine measured values, they are determined manually +#e.g. this applies for some colorimetric methods where measured values are derived manually via the colour of reagent after reaction with a compound of interest + +'manual':{ + 'instruments':{} +}, + +#------------------------------------ +#unknown + +'unknown':{ + 'instruments':{} +} +} + + +#----------------------------------------------------------------------------------------# +#STANDARD SAMPLE PREPARATION INFORMATION +#----------------------------------------------------------------------------------------# + +#define dictionary that contains information pertaining to standardised sample preparation types +#Sample Preparation refers to all preparations made to the sample before the ultimate measurement + +standard_sampling_preparation_types = { +#------------------------------------ +#flask + +#Sample is collected/stored in measurement flasks/canisters from ambient air, or filled by pump +#The canisters can be opened for a short instantaneous window, or can be opened periodically over a long window to get a longer representative sample of air. + +'flask':{ + 'specific_techniques':{} +}, + +#------------------------------------ +#bag + +#Sample is collected/stored in gas sampling bags (typically teflon) from ambient air, or filled by pump. +#These bags are a cheap alternative to canisters, with much reduced stability times. + +'bag':{ + 'specific_techniques':{} +}, + + +#------------------------------------ +#preconcentration + +#This refers to the process of concentrating a sample before analysis, so that trace components won't be overlooked. +#This is done typically through absorption of the sample onto a cooled, sorbent-packed trap before thermal desorption to transfer very quickly the sample to the analytical system. +#Can be more than 1 trap, with different adsorbents. + +'preconcentration':{ + 'specific_techniques':{} +}, + +#------------------------------------ +#filter + +#Air is passed through a filtering system, selectively retaining compound(s) of interest + +'filter':{ + 'specific_techniques':{} +}, + +#------------------------------------ +#filter pack + +#Air is passed through a filter pack, selectively retaining compound(s) of interest +#The filter packs can contain different filters to target the retention of different compounds. + +'filter pack':{ + 'specific_techniques':{ + '1-Stage Filter Pack':{}, + '2-Stage Filter Pack':{}, + '3-Stage Filter Pack':{}, + '4-Stage Filter Pack':{} + } +}, + +#------------------------------------ +#denuder + +#Air is passed through a denuder before analysis to selectively retain compound(s) of interest +#a denuder is cylindrical or annular conduit or tube internally coated with a reagent that selectively reacts with a stable flow of gas + +'denuder':{ + 'specific_techniques':{ + 'CEH DELTA': {'isolated_parameters':['NH3','HNO3','SO2','HCl','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'],'preparation_further_details':'See specifications here: https://www.ceh.ac.uk/services/delta-active-sampler-system'}, + 'Riemer DEN2':{ 'preparation_further_details':'See here for confirmation of technique: https://ebas-submit.nilu.no/Submit-Data/Data-Reporting/Comments/Modules/all-instrument-types-manufacturers-models'}, + 'UBA Olaf': { 'preparation_further_details':'See here for confirmation of technique: https://ebas-submit.nilu.no/Submit-Data/Data-Reporting/Comments/Category/Aerosol/Aerosol-chemical-speciation/inorganic-aerosol-chemistry/instrument-manufacturer'} + } +}, + +#------------------------------------ +#sorbent trapping + +#Sample is passed through a sorbent material to trap and retain the compound(s) of interest. +#Diffusive samplers are a specific example of the utilisation of sorbent trapping. + +'sorbent trapping':{ + 'specific_techniques':{ + +#-------- +#diffusive sampler + +#Diffussive samplers are a specific utilisation of sorbent trapping to passively trap species over long time periods, typically in urban areas. +#Diffusive samplers are an inexpensive method for measuring atmospheric composition over periods from one day to several weeks. +#These samplers operate on the principle of a sorbent trapping and retaining a compound of interest. +#Sorption often takes place through reaction with a reagent (i.e. typically TEA for NO2). +#After a suitable sample time, the trapped compound can then be analysed using colorimetry/spectrophotometry/ion chromatography/GC methods + +#Diffusive samplers come in various forms, e.g: Palmes, Passam, Ogawa Badge, and Radiello radial sampler tubes. +#The way these tubes differ is associated with the way they sample air and deal with variations in meteorological conditions. + +#This method is typically associated with very large uncertainties. +#These uncertainties mainly come from: +#1. The non-specificity of trapped gases (i.e. HONO and PAN are readily uptaken when attempting to trap NO2). +#2. Variability in temperature, relative humidity, and air velocity directly impacting upon uptake rate of the desired gas, and effectiveness of the sorbent. +#Uncertainties associated with this methodology are typically reported between 10-35%: http://publications.jrc.ec.europa.eu/repository/bitstream/JRC51106/reqno_jrc51106_eur_23793.pdf[1].pdf + +#Unless additional information is given, make assumption all diffusive samplers trap gases through sorbent trapping, followed by subsequent analysis through ion chromatography (by injection). + + 'Diffusive Sampler':{'preparation_further_details':'See Reference for NO2: https://ec.europa.eu/jrc/en/publication/eur-scientific-and-technical-research-reports/review-application-diffusive-samplers-measurement-nitrogen-dioxide-ambient-air-european; reference for NH3:https://www.sciencedirect.com/science/article/pii/S1352231012001136; see reference for VOCs: http://www.siremlab.com/pages/wms/pdf/Engineering-Issue-Paper-2015-Passive-Samplers-for-Investigations-of-Air-Quality.pdf'} + } +}, + +#------------------------------------ +#reagent reaction + +#Air is reacted with a liquid/solid chemical reagent to allow subsequent measurement of a specific compound + +#The variety of types of passive sampling phases are numerous. These are described in detail below. +#The name of the passive sampling method is given as the instrument name. +#However, typically only passive sampling phase information is given, with no detail about the analysis phase. +#Unless additional information is given, make assumption all passive sampling methods involve chemical reaction with a reagent, followed by subsequent analysis through spectrophotometry (by injection). + +'reagent reaction':{ + 'specific_techniques':{ + +#-------- +#Griess-Saltzman + +#NO2 reacts with water producing nitrous acid. +#This is reacted with an aromatic amine, to form a diazonium salt. +#Next, the solution is reacted with organic coupling agent (modified Saltzman reagent - 1960): 0.5% sulfanilic acid, 5% acetic acid, 0.005% NEDA(N-(1-Naphthyl)ethylenediamine dihydrochloride), to form a deeply coloured azo-dye. +#If an extended sampling time is required, there may be some bleaching by SO2. Saltzman recommended the addition of acetone to the reagent to prevent this. +#The conversion of NO2 to azo-dye is not quantitative, therefore a factor is introduced to represent the conversion efficiency under a given set of experimental conditions. +#The absorbance of the solution is then measured spectrophotometrically. +#Bennett (1930) gave stated a slighted altered reagent for the specific measurement of NO. +#Nitrate can also be measured by initial reduction to nitrite: https://www.sciencedirect.com/science/article/abs/pii/S1089860300903197 + + 'Griess-Saltzman':{'isolated_parameters':['NO','NO2','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'preparation_further_details':'See References: Colorimetric Azo Dye Methods for the Atmospheric Analysis of Nitrogen Dioxide; Historical Development, Szonntagh, E.L, 1979; https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#Lyshkow + +#A modification of the Griess-Saltzman method, using a modified reagent to produce an azo-dye: 0.15% Sulfanilamide, 1.5% tartaric acid, 0.005% NEDA, 0.005% 2-Naphthol-3, 6-disulphonic acid disodium salt. +#The absorbance of the solution is measured spectrophotometrically, as with Griess-Saltzman. +#The reagent as with the Griess-Saltzman method can be slightly modified for the specific measurement of NO. + + 'Lyshkow':{'isolated_parameters':['NO','NO2'], 'preparation_further_details':'See References: Colorimetric Azo Dye Methods for the Atmospheric Analysis of Nitrogen Dioxide; Historical Development, Szonntagh, E.L, 1979; https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#Jacobs-Hochheiser + +#Designed by Jacobs and Hochheiser (1958) to avoid the azo-dye bleaching by SO2 that occurs in the Griess-Saltzman method. +#NO2 is absorbed in a solution of sodium hydroxide. +#Butanol is added as a surfactant to improve gas transfer. +#After sampling any sulfite from absorbed SO2 is oxidised with hydrogen peroxide. +#Next, the solution is acidified with phosphoric acid. +#A diazotizer and coupling agent are then added to produce an azo-dye. +#The absorbance of the solution is then measured spectrophotometrically. + + 'Jacobs-Hochheiser':{'isolated_parameters':['NO2'], 'preparation_further_details':'See References: Colorimetric Azo Dye Methods for the Atmospheric Analysis of Nitrogen Dioxide; Historical Development, Szonntagh, E.L, 1979; https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#Sodium Arsenite + +#NO2 is absorbed in an alkaline solution of sodium arsenite. +#Any sulfite in the solution is oxidised with peroxide. +#The solution is then the solution is acidified with phosphoric acid. +#An azo-dye is then formed through addition of sulfanilamide and NEDA. + + 'Sodium Arsenite':{'isolated_parameters':['NO2'], 'preparation_further_details':'See details: https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#TEA + +#NO2 is absorbed in a solution of triethanolamine and n-butanol surfactant. +#The solution is then reacted with the modified Saltzman reagent (1960) to form a deeply coloured azo-dye. +#The absorbance of the solution is then measured spectrophotometrically. + + 'TEA':{'isolated_parameters':['NO2'], 'preparation_further_details':'See References: Comparison of Several Methods for Nitrogen Dioxide and Sulfur Dioxide in Metro Manila Air, Quirit, L.L, Hernandez, K.N, Lee, B.J, 2008; https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#TGS-ANSA + +#Ambient air is bubbled through a solution containing triethanolamine, guaiacol and sodium metabilsulfite. +#Through this process, NO2 is converted to nitrite ion. +#8-Anilinonaphthalene-1-sulfonic acid ammonium salt (ANSA) and sulfanilamide are then added to the solution. +#The absorbance of the solution is then measured spectrophotometrically (at 550nm). + + 'TGS-ANSA':{'isolated_parameters':['NO2'], 'preparation_further_details':'See details: https://www3.epa.gov/ttn/naaqs/standards/nox/previous/1982-NOx-AQCD.pdf'}, + +#-------- +#Sodium Phenolate + +#A solution of alkaline phenol and hypochlorite react with ammonia to form indophenol blue. +#The solution is buffered at a pH of 9.5 with a borate buffer in order to decrease hydrolysis of cyanates and organic nitrogen compounds. +#The sample is then is then distilled into a solution of boric acid. +#The blue color formed is intensified with sodium nitroprusside and measured colorimetrically. + + 'Sodium Phenolate':{'isolated_parameters':['NH3'], 'preparation_further_details':'See further details:https://www.epa.gov/sites/production/files/2015-06/documents/epa-350.1.pdf'}, + +#-------- +#Nessler + +#A dechlorinating agent is added to distilled water until the distillate shows no trace of ammonia. +#NaOH is added to the distilled water until the pH is 9.5. +#NH3 is absorbed from ambient air into the solution. +#The solution is buffered at a pH of 9.5 with a borate buffer in order to decrease hydrolysis of cyanates and organic nitrogen compounds. +#The sample is then is then distilled into a solution of boric acid. +#The distillate is then reacted with Nessler reagent. +#The absorbance of the solution is then measured spectrophotometrically (at 425nm). + + 'Nessler':{'isolated_parameters':['NH3'], 'preparation_further_details':'See further details:https://www.umass.edu/mwwp/pdf/epa350_2NH3titration.pdf'}, + +#-------- +#pararosaniline (also referred to as the West and Gaeke Method) + +#SO2 is absorbed from air in a solution of potasium tetrachloromercuate. +#A dichlorosulfitomercuate complex, which resists oxidation in air, is formed. This complex is stable to strong oxidants (i.e. ozone, NOy). +#This complex is then reacted with pararosaniline and formaldehyde to form intensely coloured C19H19N3 methyl sulphonic acid. +#The absorbance of the solution is then measured spectrophotometrically. + + 'Pararosaniline':{'isolated_parameters':['SO2'], 'preparation_further_details':'Also called West and Gaeke Method. See further details:https://nepis.epa.gov/Exe/ZyNET.exe/9101GLZ9.txt?ZyActionD=ZyDocument&Client=EPA&Index=Prior%20to%201976&Docs=&Query=&Time=&EndTime=&SearchMethod=1&TocRestrict=n&Toc=&TocEntry=&QField=&QFieldYear=&QFieldMonth=&QFieldDay=&UseQField=&IntQFieldOp=0&ExtQFieldOp=0&XmlQuery=&File=D%3A%5CZYFILES%5CINDEX%20DATA%5C70THRU75%5CTXT%5C00000022%5C9101GLZ9.txt&User=anonymous&Password=anonymous&SortMethod=h%7C-&MaximumDocuments=1&FuzzyDegree=0&ImageQuality=r75g8/r75g8/x150y150g16/i425&Display=hpfr&DefSeekPage=x&SearchBack=ZyActionL&Back=ZyActionS&BackDesc=Results%20page&MaximumPages=1&ZyEntry=12'}, + +#-------- +#hydrogen peroxide +#SO2 is absorbed from air in a solution of 3% hydrogen peroxide. +#This produces stable, non-volatile sulphuric acid. +#SO3 is filtered in an 80% solution of isopropyl alcohol. +#Aliquots from the impinger are analysed by titration with barium perchlorate and 2% thorin indicator to the pink-orange end point. + + 'Hydrogen Peroxide':{'isolated_parameters':['SO2'], 'preparation_further_details':'See further details:https://nepis.epa.gov/Exe/ZyNET.exe/9101GLZ9.txt?ZyActionD=ZyDocument&Client=EPA&Index=Prior%20to%201976&Docs=&Query=&Time=&EndTime=&SearchMethod=1&TocRestrict=n&Toc=&TocEntry=&QField=&QFieldYear=&QFieldMonth=&QFieldDay=&UseQField=&IntQFieldOp=0&ExtQFieldOp=0&XmlQuery=&File=D%3A%5CZYFILES%5CINDEX%20DATA%5C70THRU75%5CTXT%5C00000022%5C9101GLZ9.txt&User=ANONYMOUS&Password=anonymous&SortMethod=h%7C-&MaximumDocuments=1&FuzzyDegree=0&ImageQuality=r75g8/r75g8/x150y150g16/i425&Display=hpfr&DefSeekPage=x&SearchBack=ZyActionL&Back=ZyActionS&BackDesc=Results%20page&MaximumPages=1&ZyEntry=17 ; https://www.tandfonline.com/doi/pdf/10.1080/00022470.1972.10469715'}, + +#-------- +#potassium iodide +#O3 is absorbed from air in a solution of 2-3% potassium iodide, oxidising iodide to iodine, and developing colour. +#The solution is nutralised with a phosphate buffer. +#The absorbance of the solution is then measured spectrophotometrically at 365nm + + 'Potassium Iodide':{'isolated_parameters':['O3'], 'preparation_further_details':'See further details:https://pdf.sciencedirectassets.com/271545/1-s2.0-S0142941800X01250/1-s2.0-0142941886900644/main.pdf?X-Amz-Security-Token=IQoJb3JpZ2luX2VjEAkaCXVzLWVhc3QtMSJHMEUCIQCRe2LilIGl2GGU%2FI%2BT2%2FDeDlC23y2XTUqzHNUh06hH%2FAIgArOdObV9OOJbs2k8k%2Btog0QL0salyD1rv6mUNhQCWCgqgwQIgv%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FARAEGgwwNTkwMDM1NDY4NjUiDI0ukTnsnuSlQTJYPyrXA8srrqtssGyTMSEx%2F2CSBjHjxRwUs2jmCjv35Sj54rEu1NruQInW1GA0u6pimuc5R4t7VJISQsSm4Ri1xQiQRtpoXMsS5dI2uikJSPEdzSzhPUxPo2ZcZ7qJTMKFgX9QEM74xEkSgajhjlnoxYbVkhAbcv%2F6Xb2pZVC51hIk7mHsu4%2F1wm2csaRjHA4qSV6ZwM%2FEAkd9SS0WMu%2Bpd2bkzK%2BBo2yMPfOCT2byWGsN79EojDx58S4tMw0SbCNGTXJUVxgVojwKJjfXdG7tNMa9cZ5MVlLI7cn9P53oLLzZ4zUxKw9lb5bXiWgcJnq2K8nNLNjsXLRRpVpwnqPUURXCph4QvhgddqoY5LMD0exkdGSjwDLNKiroJg9U%2FY%2BrGgqw94uCBh8c3HtYsYSw51bVaJzQrydKXK1MLBXdUoQ83XKAr%2BijmOnqeM3AuHBlivjhpPUdh6zv8Ht3eqXGS%2BPzjb8bH3YzHhvCxmJ2CLyPLKlGbnFmDKMNJddHGWNA%2BzeGmgjR373PYfDn%2BKS9xTyUshjTGI%2FIByJ9l%2Fa7FwHaxYdq6ut%2BkgjDyl09cl4fOUbFDmmc9XA5g8%2Bgbr9MQBhhulwhDMNYrx6wyzHQ33gFKHYZbW%2FOc%2FMO6DDO58SRBjqlATF%2FNDc1eK%2F%2F7Y1I1e4oIbQse15glxyK6aJxZbnx%2FBL73pxpcENU5muolWVBEf6xGZHHtybizA7aQhIJFu4GGWlqag0BHLL1ReO32YWVjGyOA51QgWDJ2jBLnQAY5eyB5ERenFX%2F2Wq%2FYq3%2Fb9sX%2B8Xhlmy1SCBCyM7L%2FRDUe7u6Xj8AUVAe0pzlQ0VyFhmP0bflPVOx5IWiH9F7gbaXCPg0HCztUg%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20220316T014927Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Credential=ASIAQ3PHCVTYTDXSGOHV%2F20220316%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=a752694daefc19f5bfdc585ffd8cb55a868e9e294321b95d6cd69a96b2c3f923&hash=b811b42b1065d62feb6694ed69687934242d41a217a23c1296ef5a12e7be1a66&host=68042c943591013ac2b2430a89b270f6af2c76d8dfd086a07176afe7c76c2c61&pii=0142941886900644&tid=spdf-084cbae4-ddf3-4274-b05c-61e8272c1eff&sid=3aefe3ca3835c34cb59a61f580fc5904d275gxrqb&type=client&ua=4c00045c00575753560250&rr=6ec9d5172b193682'}, + +#------ +#detection tube + +#Gas detection tubes operate on a chemical reaction between the vapour-phase compound and a liquid or solid detecting reagent, which is supported on an inert matrix. +#The most common types of reactions are: +# -Acid-base reactions These include reactions of acidic gases like HCl and HF with bases, and reaction of alkaline vapors such as ammonia with an acid in the tube. A dye present in the tube changes color as the pH changes on exposure to the vapors. +# -Reduction-oxidation (Red-ox) reactions: These generate an oxidized or reduced compound, which has a different color. The chlorine tube uses oxidative coupling of colorless o-toluidine to form an orange azo-dye. White di-iodine pentoxide is reduced by CO and many organic vapors to form deep brown-colored iodine. Orange chromium (VI) is reduced by many organic compounds to form brown or green-colored Cr(III) compounds. +# -Ligand-exchange reactions: These generate new complexes that are more colored than the starting reagents. The most notable is the conversion of white lead acetate to brown-black lead sulfide in the detection of H2S. In the case of phosphine, the exchange of PH3 for the chlorine ligand of HgCl2 releases HCl, which then causes a pH- dependent dye-color change. +# -Pre-layers or Pre-tubes: These are used to condition the sample by controlling humidity, removing interferences, or transforming the analyte to another detectable compound. Examples include drying agents in NH3 and HCl tubes, organic removal by charcoal or oxidation in selective CO tubes, and oxidation of NO to NO2 in the nitrogen oxides tube. + +#Most detection tubes are length-of-stain types. In these tubes, the reaction of the gas with the supported reagent is fast, compared to the transport of the bulk air sample through the tube. Therefore, all of the detected vapors are reacted within the tube. As a result, there is not a strong dependence of the readings on the rate at which the gas is sampled. However, a very high flow rate can cause some smearing to a high reading. +#Conversely, low flow rates are less likely to affect the stain length, but can give low readings by concentrating the colored products in a shorter section of the tube. In cases of flow extremes, errors outside the standard 25% accuracy can be produced. +#Detection tubes are usually calibrated using piston hand pumps. The flow during a single pump stroke initially rises sharply and then decays exponentially. The best accuracy is therefore obtained when the flow through the tube mimics this profile. +#The advantages of detection tubes over other analytical methods are simplicity of use, rapid response, low cost, and very low maintenance. Because tubes are typically pre-calibrated, no calibration equipment is necessary. +#Errors are prevented by directly marking the calibration information on each tube, and accuracy is further ensured by controlling the volume of air sampled. +#Air sampling can also be performed using piston pumps, which latch into a precisely defined position to fix the volume. These pumps pull a strong vacuum initially and thus create substantially higher flowrate than the bellows pumps. Piston pumps generate a high flow initially followed by an approximately exponential decay, whereas bellows pumps provide a more steady flow initially followed by the slow decay. +#The difference in flow patterns means that the pumps cannot be interchanged between types. For example, piston pumps sometime cause a smearing of the color stain when used on tubes originally developed for bellows pumps. This occurs because the higher flow rates do not allow enough contact time to give sharp endpoints when a piston pump is used. + +#Uncertainty on measurements is typically high with this method, typically reported between 10-25 %: https://www.honeywellanalytics.com/~/media/honeywell-analytics/products/colorimetric-gas-detection-tubes/documents/hagastubeshandbook667802enlr.pdf?la=en + +#Unless additional information is given, make assumption all detection tubes trap and produce characteristic colour through reagent reaction, followed by subsequent analysis through colorimetry (manual). + 'Detection Tube':{'preparation_further_details':'See details: https://www.honeywellanalytics.com/~/media/honeywell-analytics/products/colorimetric-gas-detection-tubes/documents/hagastubeshandbook667802enlr.pdf?la=en'} + } +}, + +#------------------------------------ +#intermediate measurement + +#A measurement is made by instrument/manually which feeds later into the ultimate measurement + +#---No specific sampling preparation name +'intermediate measurement':{ + 'specific_techniques':{} +}, + +#------------------------------------ +#unknown + +'unknown':{ + 'specific_techniques':{} +} +} + + +#----------------------------------------------------------------------------------------# +#STANDARD MEASUREMENT METHOD INFORMATION +#----------------------------------------------------------------------------------------# + +#define dictionary that contains information pertaining to standardised measurement methodologies and specific instrumentation +#the "measurement methodology" refers to the name of the method used by the measuring instrument to determine the measured values for a parameter) + +standard_measurement_methodologies = { +#------------------------------------ +#ultraviolet photometry + +#Operates on the principle that a specific species efficiently absorbs light at a known wavelength in the UV range. This is the case for ozone, at 253.65nm. +#The degree to which the UV light is absorbed by a specific species is directly related to the species concentration as described by tha (I/Io = e−KLC; K = molecular absorption coefficient at STP (308 cm-1 atm-1 for O3), L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). + +#Typical measurement operation for ozone: +#1. Ambient air is continuously drawn through the analyser by a vacuum pump. +#2. Sample is split into two flow paths. One path incorporates a scrubber which selectively removes ozone, while the other path does not. +#3. Both flow paths are connected to a solenoid valve, which switches at a fixed interval to allow either the sample gas stream (I), or the scrubbed, reference gas stream (Io), to flow through a quartz tube (cell) of accurately known length. +#4. Typically a mercury vapour lamp at one end of the quartz cell produces a monochromatic beam of ultraviolet light at 254 nm. A vacuum diode at the opposite end of the cell measures the intensity of transmitted light (I/Io). +#5. The intensities of 254 nm UV light transmitted through the sample (I) and ozone-free reference gas streams (Io) are related to the concentration (C) of ozone in the sample gas stream according to the Beer-Lambert Law. +#6. The analyzer’s microprocessor calculates the absolute concentration in molecules cm-3, and is then converted to a mixing ratio using in-instrument measured sample temperature and pressure. + +#Known interferences: Gaseous hydrocarbons with strong absorption at 254 nm, such as aromatic hydrocarbons (i.e., benzene and substituted benzene rings). + +#The greatest source of uncertainty regarding this measurement type is the cross sectional value used, for which the conventional value has been called into question: see further details: https://www.bipm.org/en/bipm/chemistry/gas-metrology/ozone/ozone-cross-section.html + +'ultraviolet photometry':{'abbreviation':'UVP', 'sampling_type':'low volume continuous', 'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], + 'instruments':{ + '2B 202': {'documented_lower_limit_of_detection':'3.0', 'documented_upper_limit_of_detection':'250000.0', 'documented_precision':'1.5/2.0%', 'documented_accuracy':'1.5/2.0%', 'documented_zero_drift':'2.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'1.0', 'instrument_manual_name':'2B_202_Manual.pdf'}, + '2B 205': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'250000.0', 'documented_precision':'1.0/2.0%', 'documented_accuracy':'1.0/2.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'1.8', 'instrument_manual_name':'2B_205_Manual.pdf'}, + '2B 211': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5/1.0%', 'documented_accuracy':'1.0/2.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'0.5%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'2B_211_Manual.pdf'}, + '2B 106-L': {'documented_lower_limit_of_detection':'3.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.5/2.0%', 'documented_accuracy':'1.5/2.0%', 'documented_zero_drift':'3.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'1.0', 'instrument_manual_name':'2B_106-L_Manual.pdf'}, + '2B 106-OEM-L': {'documented_lower_limit_of_detection':'3.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.5/2.0%', 'documented_accuracy':'1.5/2.0%', 'documented_zero_drift':'3.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'1.0', 'instrument_manual_name':'2B_106-L_Manual.pdf'}, + '2B POM': {'documented_lower_limit_of_detection':'3.0', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.5/2.0%', 'documented_accuracy':'1.5/2.0%', 'documented_zero_drift':'2.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'1.15e-17', 'documented_flow_rate':'0.8', 'instrument_manual_name':'2B_POM_Manual.pdf'}, + 'Airpointer-O3': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%>=100', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0/1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Airpointer_Specs.pdf'}, + 'CSI 3100': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://www.healtheffects.org/system/files/ResearchReport-70.pdf'}, + 'Dasibi 1003-AH': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Dasibi 1003-PC': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Dasibi 1003-RS': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Dasibi 1006-AHJ': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://conf.montreal-protocol.org/meeting/orm/9orm/presession/Information%20Documents%20are%20available%20in%20English%20onl/Indonesia.pdf'}, + 'Dasibi 1007-AHJ': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://ebcrpa.jamstec.go.jp/atmoscomp/obsdata/mondy.html'}, + 'Dasibi 1008-AH': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Dasibi_1008_Manual.pdf'}, + 'Dasibi 1008-HC': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Dasibi_1008_Manual.pdf'}, + 'Dasibi 1008-PC': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Dasibi_1008_Manual.pdf'}, + 'Dasibi 1008-PS': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Dasibi_1008_Manual.pdf'}, + 'Dasibi 1008-RS': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Dasibi_1008_Manual.pdf'}, + 'Dasibi 1108 W/GEN': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://books.google.es/books?id=SuIsDwAAQBAJ&pg=PA48&lpg=PA48&dq=dasibi+1108&source=bl&ots=tnXwozqtBT&sig=ACfU3U0bA3efWduqeNFD2g2zk-RqP7cQFg&hl=en&sa=X&ved=2ahUKEwjRk8bX2f7fAhUD4OAKHSr1A5wQ6AEwDHoECAAQAQ#v=onepage&q=dasibi%201108&f=false'}, + 'DKK-TOA GUX-113E': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://books.google.es/books?id=KpQhwCLgVgAC&pg=PA209&lpg=PA209&dq=GUX-113E&source=bl&ots=e1rn8FsfBV&sig=Sd0wYb5DAjG4GZBrpsFPAuZ6Uqo&hl=en&sa=X&ved=0ahUKEwjbivvTq67bAhVDuRQKHY50ASYQ6AEIMjAB#v=onepage&q=GUX-113E&f=false'}, + 'DKK-TOA GUX-313E': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'1000.0', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'instrument_manual_name':'DKK-TOA_GUX-313E_Specs.pdf'} , + 'Dylec 1100': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'500.0', 'documented_precision':'0.5%', 'documented_accuracy':'0.5%', 'documented_zero_drift':'0.5%/month', 'documented_span_drift':'0.5%/month', 'documented_flow_rate':'1.5-2.0', 'instrument_further_details':'Specifications online:https://translate.google.com/translate?hl=en&sl=ja&u=http://www.dylec.co.jp/01ozone/m1100.html&prev=search'}, + 'Dylec 1150': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'500.0', 'documented_precision':'0.5%', 'documented_accuracy':'0.5%', 'documented_zero_drift':'0.5%/month', 'documented_span_drift':'0.5%/month', 'documented_flow_rate':'1.5-2.0', 'instrument_further_details':'Specifications online:https://translate.google.com/translate?hl=en&sl=ja&u=http://www.dylec.co.jp/01ozone/m1100.html&prev=search'}, + 'Dylec 1200': { 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'0.5%', 'documented_zero_drift':'0.5%/month', 'documented_span_drift':'0.5%/month', 'documented_flow_rate':'1.5-2.0', 'instrument_further_details':'Specifications online:https://translate.google.com/translate?hl=en&sl=ja&u=http://www.dylec.co.jp/01ozone/m1200.html&prev=search'}, + 'Ebara EG-2001F': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here: http://www.data.jma.go.jp/gmd/env/ghg_obs/en/station/station_minamitorishima.html'}, + 'Ebara EG-2001FTP': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here: http://www.data.jma.go.jp/gmd/env/ghg_obs/en/station/station_minamitorishima.html'}, + 'Ebara EG-3000F': { 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'5.0', 'documented_accuracy':'5.0', 'documented_zero_drift':'5.0/month', 'documented_span_drift':'5.0/month', 'documented_flow_rate':'1.5', 'instrument_manual_name':'Ebara_EG-3000F_Manual.pdf'}, + 'Ecotech EC9810': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'1.0/1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'0.5%/day', 'documented_resolution':'0.001', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Ecotech_EC9810_Manual.pdf'}, + 'Ecotech Serinus10': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5/0.2%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.3/day', 'documented_span_drift':'0.3/0.5%/7days', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Ecotech_Serinus10_Specs.pdf'}, + 'Environics 300': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Environnement SA O331M': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://www.geo.fu-berlin.de/met/ag/trumf/Lehre/Lehrveranstaltungen_alt/Dok_2006/Vorlesung_SchwarzesDreieck_20060503.pdf'}, + 'Environnement SA O341M': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Environnement SA O342e': {'documented_lower_limit_of_detection':'0.2', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'EnvironnementSA_O342e_Specs.pdf'}, + 'Environnement SA O342M': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/week', 'documented_span_drift':'1.0%/week', 'documented_flow_rate':'1.0', 'instrument_manual_name':'EnvironnementSA_O342M_Specs.pdf'}, + 'Horiba APOA300': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://books.google.es/books?id=qmWXBwAAQBAJ&pg=PA88&lpg=PA88&dq=horiba+apna+300&source=bl&ots=dBQJ0TEai1&sig=plLm6SAUIZwuIhy37JzI8nZXccQ&hl=en&sa=X&ved=2ahUKEwihxOS9uvDfAhWGnhQKHYzoAPcQ6AEwCHoECAIQAQ#v=onepage&q=horiba%20apna%20300&f=false'}, + 'Horiba APOA350': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://books.google.es/books?id=WqvzBQAAQBAJ&pg=SL13-PA35&lpg=SL13-PA35&dq=Horiba+APOA350&source=bl&ots=Ltdp9qBqrc&sig=qKEZbhp9Vd0UPEbMIL6Al8CKITM&hl=en&sa=X&ved=0ahUKEwjcjJKai9bbAhXH7BQKHa_gDvQ4ChDoAQgtMAE#v=onepage&q=Horiba%20APOA350&f=false'}, + 'Horiba APOA360': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Horiba_APMA360_Specs.pdf'}, + 'Horiba APOA370': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.7', 'instrument_manual_name':'Horiba_APOA370_Specs.pdf'}, + 'MCV 48AUV': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://www.academia.edu/18561546/Temporal_patterns_of_surface_ozone_levels_in_different_habitats_of_the_North_Western_Mediterranean_basin'}, + 'PCI LC-12': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Philips K50094': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/philipsK50094/view?facet=HTML+Representation'}, + 'Philips K50110': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&ved=2ahUKEwjciLvpw_zzAhUWxBQKHRpLB784FBAWegQIAhAB&url=https%3A%2F%2Fhamtplats.miljodatasamverkan.se%2Fvalid%2Fmallar%2Fluft%2FUppgifter_ny_m%25C3%25A4tstation_2020_1.xlsx&usg=AOvVaw1uId5jGqZrElo-oGwsNGUc'}, + 'Sabio 6030': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5%', 'documented_accuracy':'0.5%', 'documented_zero_drift':'1.0/month', 'documented_span_drift':'1.0%/month', 'documented_flow_rate':'0.5-1.0', 'instrument_manual_name':'Sabio_6030_Specs.pdf'}, + 'Seres OZ 2000G': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.5/week', 'documented_span_drift':'1.0%/month', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Seres_OZ2000G_Specs.pdf'}, + 'SIR S-5014': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here: http://www.ecomission.co.za/products/model_s_5014.htm'}, + 'Tanabyte 722': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Tanabyte 723': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Tanabyte 724': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Tanabyte 725': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Tanabyte 726': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Tanabyte 734': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Tanabyte_72x_Specs.pdf'}, + 'Teledyne 400': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne 400A': {'documented_lower_limit_of_detection':'0.6', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_400A_Manual.pdf'}, + 'Teledyne 400E': {'documented_lower_limit_of_detection':'0.6', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_400E_Manual.pdf'}, + 'Teledyne ML8810': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne ML9810': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne ML9810A': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML9810A/view'}, + 'Teledyne ML9810B': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne ML9811': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne ML9812': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne T204-O3': {'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'0.5%>=100', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/day', 'documented_span_drift':'1.0%/day', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_T204_Manual.pdf'}, + 'Teledyne T400': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5%>=100', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_T400_Manual.pdf'}, + 'Thermo 49': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Thermo 49C': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'200000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/month', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'1.0-3.0', 'instrument_manual_name':'Thermo_49C_Manual.pdf'}, + 'Thermo 49CPS': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'5000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0-3.0', 'instrument_manual_name':'Thermo_49CPS_Specs.pdf'}, + 'Thermo 49i': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'200000.0', 'documented_precision':'1.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/month', 'documented_absorption_cross_section':'1.1476e-17', 'documented_flow_rate':'1.0-3.0', 'instrument_manual_name':'Thermo_49i_Manual.pdf,Thermo_49i_Specs.pdf'}, + 'Thermo 49w': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:https://www.rivm.nl/en/Documents_and_publications/Scientific/Reports/1993/juni/Acceptance_procedure_and_testresults_of_the_ozone_analyzers_model_49W_made_by_Thermo_Environmental_Instruments_on_behalf_of_the_Dutch_National_Air_Quality_Monitoring_Network'}, + 'Wedding and Associates 1010':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet photometry here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'} + } +}, + +#------------------------------------ +#visible photometry + +#Operates on the principle that a specific species efficiently absorbs light at a known wavelength in the visible range. This is the case for NO2, at 405nm +#The degree to which the visible light is absorbed by a specific species is directly related to the species concentration as described by the Beer-Lambert Law (C = 1/Lσ * ln(Io/I) ; σ = absorption cross section (6.06×10-19 cm2 molec-1 for NO2 at 405nm), L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). + +#Typical measurement operation for NO2 (and indirectly NO): +#1. Ambient air is continuously drawn through the instrument by a vacuum pump. +#2. An NO2 scrubber valve alternately bypasses and sends the sample air through a heated NO2 scrubber to remove all NO2 in the sample. +#3. The NO2-scrubbed/unscrubbed air alternately passes through the optical cell (of known length) and the cell flow meter. Alternate switching of the NO2 scrubber valve once every 5 seconds allows the measurement of a light intensity in the absence of NO2 and presence of NO2. +#4. A light-emitting diode (LED) emits a monochromatic beam of light at 405nm. A photodiode at the other end of the cell measures the intensity of transmitted light (I/Io). +#5. The intensities of 405 nm light transmitted through the sample (I) and NO2-free reference gas streams (Io) are related to the concentration (C) of ozone in the sample gas stream according to the Beer-Lambert Law. +#6. The analyser's microprocessor calculates the absolute concentration in molecules cm-3, and is then converted to a mixing ratio using in-instrument measured sample temperature and pressure. +#7. NO is measured indirectly by bypassing the NO2 scrubber and measuring the light intensity while adding (I) or not adding (Io) ozone to convert NO to NO2 according to the well-known reaction: NO + O3 → NO2 + O2 + +#Known interferences: Water vapour, small particles (< 5 um) + +'visible photometry':{'abbreviation':'VP', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO','NO2','NOx'], + 'instruments':{ + '2B 405nm':{'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':{'NO':'2000.0','NO2':'10000.0'}, 'documented_precision':'0.5/0.5%', 'documented_resolution':'0.1', 'documented_absorption_cross_section':'6.06e-19', 'instrument_manual_name':'2B_405nm_Manual.pdf'} + } +}, +#--------------------------------------------------------------------------------------### +#ethylene chemiluminescence + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of ozone with ethylene, leading to an excited molecule. +#The return to a fundamental electronic state of the excited molecules is made by luminous radiation in a specific spectrum, which can be measured. +#The concentration of sample ozone is directly proportional to the intensity of light emitted. +#The broadband emission is detected using a photomultiplier tube (at 440 nm for ethylene + ozone). + +#Known interferences: water vapour + +'ethylene chemiluminescence':{'abbreviation':'ECL', 'sampling_type':'low volume continuous', 'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], + 'instruments':{ + 'Beckman 950A': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Bendix 8002': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'200.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf ; details about limit of detection:https://books.google.es/books?id=G0EYUql3_98C&pg=PA283&lpg=PA283&dq=thermo+43a&source=bl&ots=k2RUJXlAVJ&sig=yIxG08AoSyuqedtS6dp-O7O04X4&hl=en&sa=X&ved=0ahUKEwj17qqB3OfbAhVCVRQKHanFDlo4ChDoAQgoMAA#v=onepage&q=thermo%2043a&f=false'}, + 'CSI 2000': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'McMillan 1100-1': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'McMillan 1100-2': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'McMillan 1100-3': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Meloy 0A325-2R': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Meloy 0A350-2R': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'}, + 'Teledyne ML8410E':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses ethylene chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'} + } +}, + +#--------------------------------------------------------------------------------------### +#eosin Y chemiluminescence + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of ozone with eosin-Y, leading to an excited molecule. +#The return to a fundamental electronic state of the excited molecules is made by luminous radiation in a specific spectrum, which can be measured. +#The concentration of sample ozone is directly proportional to the intensity of light emitted. +#The broadband emission is detected using a photomultiplier tube (at ~560 nm for eosin-Y + ozone). + +#Known interferences: water vapour + +'eosin Y chemiluminescence':{'abbreviation':'EYCL', 'sampling_type':'low volume continuous', 'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], + 'instruments':{ + 'Luminox LOZ-3':{'instrument_further_details':'No manual or specifications available but confirmation it is uses eosin-Y chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'} + } +}, + +#--------------------------------------------------------------------------------------### +#rhodamine B chemiluminescence + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of ozone with rhodamine B, leading to an excited molecule. +#The return to a fundamental electronic state of the excited molecules is made by luminous radiation in a specific spectrum, which can be measured. +#The concentration of sample ozone is directly proportional to the intensity of light emitted. +#The broadband emission is detected using a photomultiplier tube (at ~580 nm for rhodamine B + ozone). + +#Known interferences: water vapour + +'rhodamine B chemiluminescence':{'abbreviation':'RBC', 'sampling_type':'low volume continuous', 'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], + 'instruments':{ + 'Philips PW9771': {'instrument_further_details':'No manual or specifications available but confirmation it is uses rhodamine B chemiluminescence here:http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal molybdenum converter) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO directly (and NOx/NO2 indirectly). O3 can also be measured by inverting the measurement technique (using canister of NO for reaction). + +#Typical measurement operation for NO (and NOx/NO2 indirectly): +#1. Sample air is drawn into the reaction cell via two separate (alternating) paths; the NO and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. The second path (NOx channel) travels through a delay loop and a heated molybdenum converter (at 315degC). The heated molybdenum reacts with NO2 in the sample gas and produces a NO gas and a variety of molybdenum. (xNO2 + yMo --> xNO + MyOz (at 315degC)). +#9. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 in the sample gas into NO, the analyser indirectly measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#11. By switching the sample gas stream in and out of the molybdenum converter every 6 - 10 seconds, the analyser is able to quasi-continuously measure both the NO and the total NOx content. +#12. The NO2 concentration is not directly measured but calculated by subtracting the known NO content of the sample gas from the known NOx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other NOy species converted to NO by molybdenum converter (PAN, ethyl nitrate, ethyl nitrite, HONO, HNO3, methyl nitrate, n-propyl nitrate, n-butyl nitrate, nitrocresol, NH3), other species undergoing chemiluminescence with O3 (SOx). + +#Not QA accepted measurement technique for NO2/NOx due to bias in measuring NO2, due to molybdenum converters. + +'chemiluminescence (internal molybdenum converter)':{'abbreviation':'CL(IMC)', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','NOx','O3'], 'qa_accepted_parameters':['NO','O3'], + 'instruments':{ + 'Airpointer-NOx': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'1.0/1.0%', 'documented_accuracy':'1.0%>=100.0', 'documented_zero_drift':'0.4/day', 'documented_span_drift':'1.0%>=100/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Airpointer_Specs.pdf', 'measuring_assumption':True}, + 'Beckman 952A': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1979.10470816?needAccess=true', 'measuring_assumption':True}, + 'Bendix 8101-B': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1980.10465149', 'measuring_assumption':True}, + 'Bendix 8101-C': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.ce.berkeley.edu/sites/default/files/assets/users/kirchstetter/Kirchstetter%20et%20al%2C%20Nitrous%20Acid%20in%20Motor%20Vehicle%20Exhaust%2C%20EST%201996.pdf', 'measuring_assumption':True}, + 'CSI 1600': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://nepis.epa.gov/Exe/ZyNET.exe/30003UBG.txt?ZyActionD=ZyDocument&Client=EPA&Index=1986%20Thru%201990&Docs=&Query=&Time=&EndTime=&SearchMethod=1&TocRestrict=n&Toc=&TocEntry=&QField=&QFieldYear=&QFieldMonth=&QFieldDay=&UseQField=&IntQFieldOp=0&ExtQFieldOp=0&XmlQuery=&File=D%3A%5CZYFILES%5CINDEX%20DATA%5C86THRU90%5CTXT%5C00000006%5C30003UBG.txt&User=ANONYMOUS&Password=anonymous&SortMethod=h%7C-&MaximumDocuments=1&FuzzyDegree=0&ImageQuality=r75g8/r75g8/x150y150g16/i425&Display=hpfr&DefSeekPage=x&SearchBack=ZyActionL&Back=ZyActionS&BackDesc=Results%20page&MaximumPages=1&ZyEntry=1', 'measuring_assumption':True}, + 'Dasibi 2108': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter:https://books.google.es/books?id=-I7pCAAAQBAJ&pg=PA372&lpg=PA372&dq=DASIBI+2108+manual&source=bl&ots=ZwNR_ShKjO&sig=yUbYYfnJXqD8eAJovJ6pNjaa468&hl=en&sa=X&ved=0ahUKEwj_jL_SxqzbAhXrB8AKHXvKDkUQ6AEIWTAI#v=onepage&q=DASIBI%202108%20manual&f=false', 'measuring_assumption':True}, + 'DKK-TOA GLN-114E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'cannot find converter documentation but states instrument is previous version of DKK-TOA GLN-314E here: https://www.toadkk.co.jp/english/product/env/saleend/ap.html. This uses internal molybdenum converter, so assume same here', 'measuring_assumption':True}, + 'DKK-TOA GLN-314E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'2000.0', 'documented_zero_drift':'0.6/day', 'documented_span_drift':'1.0%/day', 'instrument_manual_name':'DKK-TOA_GLN-314E_Specs.pdf'}, + 'Ecophysics CLD700AL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':{'NO':'100000.0','NO2':'1000.0','NOx':'1000.0'}, 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.0', 'documented_flow_rate':'0.7', 'instrument_manual_name':'Ecophysics_CLDAL700_specs.pdf'}, + 'Ecophysics CLD770AL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but information is found about converter here:https://www.atmos-chem-phys-discuss.net/acp-2014-187/acpd-14-10135-2014.pdf'}, + 'Ecotech EC9841T': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.1/0.5%', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.64', 'instrument_manual_name':'Ecotech_EC9841T_Specs.pdf', 'measuring_instrument_further_details':'Converter information not given in Ecotech_EC9841T_Specs.pdf, but found online: https://books.google.es/books?id=PknpYLJjsgIC&pg=PT101&lpg=PT101&dq=ecotech+EC9841T+molybdenum&source=bl&ots=p34J8Jais1&sig=smuKt3IiSRlcdvCjufYUF1Wh2iQ&hl=en&sa=X&ved=0ahUKEwiSwNqUoefaAhVMORQKHX5kBrcQ6AEIKTAA#v=onepage&q=ecotech%20EC9841T%20molybdenum&f=false'}, + 'Ecotech Serinus40': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.4/0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.4/day', 'documented_span_drift':'1.0%/7days', 'documented_flow_rate':'0.3', 'instrument_manual_name':'Ecotech_Serinus40_Manual.pdf'}, + 'Environnement SA AC30M':{'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://helda.helsinki.fi/bitstream/handle/10138/1157/cont71.pdf?sequence=3&isAllowed=y', 'measuring_assumption':True}, + 'Environnement SA AC31M':{'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.35', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/week', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.6', 'instrument_manual_name':'EnvironnementSA_AC31M_Specs.pdf'}, + 'Environnement SA AC32M':{'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'50000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/7days', 'documented_flow_rate':'0.66', 'instrument_manual_name':'EnvironnementSA_AC32M_Manual.pdf'}, + 'Environnement SA AC32e':{'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.2', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0/day', 'documented_flow_rate':'0.66', 'instrument_manual_name':'EnvironnementSA_AC32e_Specs.pdf'}, + 'Horiba APNA300': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://books.google.es/books?id=qmWXBwAAQBAJ&pg=PA88&lpg=PA88&dq=horiba+apna+300&source=bl&ots=dBQJ0TEai1&sig=plLm6SAUIZwuIhy37JzI8nZXccQ&hl=en&sa=X&ved=2ahUKEwihxOS9uvDfAhWGnhQKHYzoAPcQ6AEwCHoECAIQAQ#v=onepage&q=horiba%20apna%20300&f=false', 'measuring_assumption':True}, + 'Horiba APNA350': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://www.wseas.us/e-library/conferences/2009/timisoara/SSE2/SSE2-11.pdf', 'measuring_assumption':True}, + 'Horiba APNA360': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Horiba_APNA360_Manual.pdf'}, + 'Horiba APNA365': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'100.0', 'documented_precision':'2.0%', 'documented_accuracy':'2.0%', 'documented_zero_drift':'2.0%/day', 'documented_span_drift':'2.0%<20.0/day 1.0%>=20.0/day', 'documented_flow_rate':'1.6', 'instrument_further_details':'Details found online:http://www.biowell.sk/partner/horiba/apna_365_NOx.html'}, + 'Horiba APNA370': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Horiba_APNA370_Manual.pdf'}, + 'MCV 30QL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://studylib.es/doc/4716520/expedient-de-contractació-núm.-tipus-de-contracte--servei...', 'measuring_assumption':True}, + 'Meloy NA530R': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=MELOY+NA530R&source=bl&ots=-uI9Lv61Zl&sig=Av_D54Gtv1qh8qVrAa4qLde7_cw&hl=en&sa=X&ved=0ahUKEwjg1q2-8uvaAhUGhiwKHcCxAFYQ6AEIKzAB#v=onepage&q=MELOY%20NA530R&f=false', 'measuring_assumption':True}, + 'Philips K50034': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=11&ved=2ahUKEwipieOHk73nAhUd8uAKHdEdA1oQFjAKegQIAxAB&url=http%3A%2F%2Ffbd.beun.edu.tr%2Findex.php%2Fzkufbd%2Farticle%2Fdownload%2F53%2F100&usg=AOvVaw0l7fQAqr1Pealzx0MaZ6d0 ', 'measuring_assumption':True}, + 'Philips K50102': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/philipsK50102/view', 'measuring_assumption':True}, + 'Philips K50235': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.arpae.it/cms3/documenti/_cerca_doc/aria/rimini/rn_valloni_tesi_laurea_mar2010.pdf', 'measuring_assumption':True}, + 'Philips PW9762/02': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://books.google.es/books?id=T5B9CAAAQBAJ&pg=PA415&lpg=PA415&dq=Philips+PW9762/02&source=bl&ots=cPN-nS_ZqB&sig=hPPtzoZLDIjgkvnmuhNb8mB0AC8&hl=en&sa=X&ved=0ahUKEwj0it6zuqzbAhUMCMAKHdI-AikQ6AEIKzAB#v=onepage&q=Philips%20PW9762%2F02&f=false', 'measuring_assumption':True}, + 'Seres 2000G': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'20000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0%/week', 'documented_span_drift':'1.0%/week', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Seres_2000G_Specs.pdf'}, + 'SIR S-5012': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'Converter information not given in a manual or specs, but found online: http://www.ecomission.co.za/products/model_s_5012.htm'}, + 'Tecan CLD 502': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://books.google.es/books?id=kyvwCAAAQBAJ&pg=PA113&lpg=PA113&dq=tecan+CLD+502&source=bl&ots=XVFDJIwcis&sig=ACfU3U0CGQjZuVEqtDTk2YX1jvf5J37tSg&hl=en&sa=X&ved=2ahUKEwjsu6aqqfzzAhULlRQKHUvHDsQQ6AF6BAgSEAM#v=onepage&q=tecan%20CLD%20502&f=false', 'measuring_assumption':True}, + 'Teledyne 200': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/API200/view', 'measuring_assumption':True}, + 'Teledyne 200A': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_200A_Manual.pdf'}, + 'Teledyne 200AU': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%/0.1', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.05/0.5%/7days', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Teledyne_200AU_Manual.pdf'}, + 'Teledyne 200E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_200E_Manual.pdf'}, + 'Teledyne 200EU': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%/0.1', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.05/0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Teledyne_200EU_addendum.pdf'}, + 'Teledyne 265E': {'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], 'documented_lower_limit_of_detection':'0.3', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5', 'documented_span_drift':'0.5%', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_265E_Addendum.pdf'}, + 'Teledyne ML2041': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://cambridgeshireinsight.org.uk/wp-content/uploads/2017/12/Cambs-City-Council-Air-Quality-Annual-Status-Report-2015.pdf', 'measuring_assumption':True}, + 'Teledyne ML8440': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.umweltbundesamt.de/sites/default/files/medien/publikation/long/2702.pdf'}, + 'Teledyne ML8440E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but information is found about converter here: https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=21&ved=0ahUKEwjLg9-In-raAhXFshQKHdzgBfE4FBAWCCgwAA&url=https%3A%2F%2Fnagoya.repo.nii.ac.jp%2F%3Faction%3Drepository_uri%26item_id%3D20273%26file_id%3D17%26file_no%3D1&usg=AOvVaw1jJ6Phm7rzGeqXxCppKjS7'}, + 'Teledyne ML8840': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'200.0', 'instrument_further_details':'No manual or specifications available but information is found about converter here: https://books.google.es/books?id=OFfsCAAAQBAJ&pg=PA40&lpg=PA40&dq=Monitor+Labs+8840&source=bl&ots=tm9D_6gJ-t&sig=bwhco8GlW_p1yft9aESRbijGUN0&hl=en&sa=X&ved=0ahUKEwjU7KravKzbAhUjB8AKHZRJC-YQ6AEIYDAJ#v=onepage&q=Monitor%20Labs%208840&f=false ; details about limit of detection:https://books.google.es/books?id=G0EYUql3_98C&pg=PA283&lpg=PA283&dq=thermo+43a&source=bl&ots=k2RUJXlAVJ&sig=yIxG08AoSyuqedtS6dp-O7O04X4&hl=en&sa=X&ved=0ahUKEwj17qqB3OfbAhVCVRQKHanFDlo4ChDoAQgoMAA#v=onepage&q=thermo%2043a&f=false'}, + 'Teledyne ML8841': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter:https://books.google.es/books?id=qmWXBwAAQBAJ&pg=PA88&lpg=PA88&dq=Monitor+Labs+8841&source=bl&ots=dBOJ1Rybm3&sig=VOhLyY-EPom-jDAcT7ST9qsQN7M&hl=en&sa=X&ved=0ahUKEwjB077wxKzbAhUjCMAKHXN_BE4Q6AEIVTAJ#v=onepage&q=Monitor%20Labs%208841&f=false', 'measuring_assumption':True}, + 'Teledyne ML9840': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML9840/view', 'measuring_assumption':True}, + 'Teledyne ML9841': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.arb.ca.gov/aaqm/qa/qa-manual/vol4/measurement_of_nox.pdf', 'measuring_assumption':True}, + 'Teledyne ML8941A': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML8941A/view', 'measuring_assumption':True}, + 'Teledyne ML9841A': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_uncertainty':'0.25', 'documented_precision':'0.5/1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.001', 'documented_flow_rate':'0.64', 'instrument_further_details':'Teledyne_ML9841_Manual.pdf'}, + 'Teledyne ML9841B': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_uncertainty':'0.25', 'documented_precision':'0.5/1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_resolution':'0.001', 'documented_flow_rate':'0.64', 'instrument_further_details':'Teledyne_ML9841_Manual.pdf'}, + 'Teledyne ML9841T': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML9841T/view', 'measuring_assumption':True}, + 'Teledyne T200': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_T200_Manual.pdf'}, + 'Teledyne T200U': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%>=5' , 'documented_accuracy':'1.0%/0.1', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.05/0.5%/day', 'documented_flow_rate':'1.1', 'instrument_manual_name':'Teledyne_T200U_Addendum.pdf'}, + 'Teledyne T204-NOx': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_T204_Manual.pdf'}, + 'Teledyne T265': {'measured_parameters':['O3'], 'qa_accepted_parameters':['O3'], 'documented_lower_limit_of_detection':'0.3', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_T265_Addendum.pdf'}, + 'Thermo 14B': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_manual_name':'Thermo_14B_Operation.pdf'}, + 'Thermo 14B/E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_manual_name':'Thermo_14B/E_Operation.pdf'}, + 'Thermo 14D/E': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://books.google.es/books?id=fXysxVKVzyQC&pg=PA137&lpg=PA137&dq=Thermo+14D/E&source=bl&ots=8ks5Vf7mrS&sig=r0-I08UWw6bVqUPPbIavs2GlIHk&hl=en&sa=X&ved=0ahUKEwiiot2juKzbAhXKKMAKHbE3D-AQ6AEINzAB#v=onepage&q=Thermo%2014D%2FE&f=false', 'measuring_assumption':True}, + 'Thermo 42': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'Cannot find any information. AQS states it as continuous for NO2 which is almost always chemiluminescence with internal molybdenum converter. Assume this.', 'measuring_assumption':True}, + 'Thermo 42C': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses chemiluminescence here, assume internal molybdenum converter: https://www.eufar.net/instruments/447', 'measuring_assumption':True}, + 'Thermo 42C-HL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'50.0', 'documented_upper_limit_of_detection':'5000000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'50.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.025', 'instrument_manual_name':'Thermo_42C-HL_Manual.pdf'}, + 'Thermo 42C-TL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'200.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.0', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_42C-TL_Manual.pdf'}, + 'Thermo 42i': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'100000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.4/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.6-0.8', 'instrument_manual_name':'Thermo_42i_Manual.pdf'}, + 'Thermo 42i-LS': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'10.0', 'documented_upper_limit_of_detection':'500000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'5.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.025', 'instrument_manual_name':'Thermo_42i-LS_Manual.pdf'}, + 'Thermo 42i-TL': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'200.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.0', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_42i-TL_Manual.pdf'}, + 'Thermo 42S': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but information is found about converter here: https://agupubs.onlinelibrary.wiley.com/doi/pdf/10.1029/98JD01202'}, + 'Thermo 42W': {'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO'], 'instrument_further_details':'No manual or specifications available but information is found about converter here: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/thermo42w/view'} + + } +}, + +#------------------------------------ +#chemiluminescence (external molybdenum converter) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NOy indirectly). + +#Typical measurement operation for NO (and NOy indirectly) +#1. Sample air is drawn into the reaction cell via two separate (alternating) paths; the NO and NOy channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. The second path (NOy channel) before entering the instrument enters an externally mounted heated molybdenum converter (at 315degC), with less than 10cm tubing between the converter and sample entry. The heated molybdenum reacts with NOy in the sample gas and produces a NO gas and a variety of molybdenum (3NOy + Mo --> 3NO + MoO3 (at 315degC)). Minimising the transit time and surface contact area between the sample inlet and converter enables the conversion of labile components of NOy. +#9. Once the NOy in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NOy in the sample gas into NO, the analyser indirectly measures total NOy content of the sample gas (i.e. the NO present + the converted NO2 present). +#11. By switching the sample gas stream in and out of the molybdenum converter every 6 - 10 seconds, the analyser is able to quasi-continuously measure both the NO and the total NOy content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other species undergoing chemiluminescence with O3 (SOx). + +'chemiluminescence (external molybdenum converter)':{'abbreviation':'CL(EMC)', 'sampling_type':'low volume continuous', 'measured_parameters':['HNO3','NH3','NO','NOy'], 'qa_accepted_parameters':['HNO3','NH3','NO','NOy'], + 'instruments':{ + 'Ecotech EC9843': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.05/0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.64', 'instrument_manual_name':'Ecotech_EC9843_Specs.pdf, Ecotech_EC9843_Manual.pdf'}, + 'Teledyne 200EU-NOy':{'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%/0.1', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.05/0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Teledyne_200EU-NOy_addendum.pdf'}, + 'Thermo 42C-NOy': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'200.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.0', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_42C-NOy_Manual.pdf'}, + 'Thermo 42i-NOy': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'1000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.0', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_42i-NOy_Manual.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal photolytic converter) (CL(IPC)) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NOx/NO2 indirectly). + +#Typical measurement operation for NO (and NOx/NO2 indirectly): +#1. Sample air is drawn into the reaction cell via two separate (alternating) paths; the NO and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. The second path (NOx channel) travels through a delay loop and a photolytic converter. As the sample gas passes through the converter chamber it is exposed to blue light at specific wavelengths (350-420 nm) from a photolytic light source (blue LEDs, metal halide). This selectively converts NO2 to NO with negligible radiant heating or interference from other gases (NO2 +hv (350-420nm) --> NO + O). +#9. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 in the sample gas into NO, the analyser indirectly measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#11. By switching the sample gas stream in and out of the photolytic converter every 6 - 10 seconds, the analyser is able to quasi-continuously measure both the NO and the total NOx content. +#12. The NO2 concentration is not directly measured but calculated by subtracting the known NO content of the sample gas from the known NOx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), thermal decomposition of PAN to NO2 within the photolysis cell + +'chemiluminescence (internal photolytic converter)':{'abbreviation':'CL(IPC)', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO','NO2','NOx'], + 'instruments':{ + 'Ecophysics CraNOx':{'documented_lower_limit_of_detection':'0.025', 'documented_upper_limit_of_detection':'1000.0', 'documented_accuracy':'1.0%', 'documented_flow_rate':'2.7', 'instrument_manual_name':'Ecophysics_CraNOx_Specs.pdf'}, + 'Teledyne T200P': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'4000.0', 'documented_precision':'0.5%>=50', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Teledyne_T200P_Manual.pdf'}, + 'Teledyne T200UP': {'documented_lower_limit_of_detection':{'NO':'0.05','NO2':'0.1','NOx':'0.1'}, 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%>=5', 'documented_accuracy':'1.0%/0.1', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.1', 'instrument_manual_name':'Teledyne_T200UP_addendum.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal molybdenum and quartz converters) (CL(IMQC)) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NH3/NOx/NO2 indirectly). + +#Typical measurement operation for NO (and NH3/NOx/NO2 indirectly) +#1. Sample air is drawn into the reaction cell via three separate (alternating) paths; the NO, TNx and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. In the second path (TNx channel), sample air is passed through an internal heated quartz converter (at 980 degC). The heated quartz reacts with NH3 and NO2 in the sample gas and produces a NO gas (4NH3 + 5O2 --> 4NO + 6H2O). +#9. Once the NO2 and NH3 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 and NH3 in the sample gas into NO, the analyser indirectly measures total TNx content of the sample gas. +#11. The third path (NOx channel) travels through a delay loop and a heated molybdenum converter (at 315degC). The heated molybdenum reacts with NO2 in the sample gas and produces a NO gas and a variety of molybdenum. (xNO2 + yMo --> xNO + MyOz (at 315degC)). +#12. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#13. By converting the NO2 in the sample gas into NO, the analyser measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#14. By switching the sample gas stream between the 3 streams frequently, the analyser is able to quasi-continuously measure both the NO, the total NOx content and TNx. +#15. NO2 is indirectly calculated by subtracting the known NO content of the sample gas from the known NOx content. +#16. NH3 is indirectly calculated by subtracting the known NOx content of the sample gas from the known TNx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other NOy species converted to NO by molybdenum converter (PAN, ethyl nitrate, ethyl nitrite, HONO, HNO3, methyl nitrate, n-propyl nitrate, n-butyl nitrate, nitrocresol, NH3), other species undergoing chemiluminescence with O3 (SOx). + +#Not QA accepted measurement technique for NO2/NOx due to bias in measuring NO2, due to molybdenum converters. + +'chemiluminescence (internal molybdenum and quartz converters)':{'abbreviation':'CL(IMQC)', 'sampling_type':'low volume continuous', 'measured_parameters':['HNO3','NH3','NO','NO2','NOx','NOy'], 'qa_accepted_parameters':['HNO3','NH3','NO','NOy'], + 'instruments':{ + 'Ecotech EC9842': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'0.5%/day', 'documented_resolution':'0.1', 'documented_flow_rate':'0.000355', 'instrument_manual_name':'Ecotech_EC9842_Specs.pdf'}, + 'Ecotech EC9842T':{'documented_lower_limit_of_detection':'0.4', 'documented_precision':'2.0%', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'1.0%/day', 'instrument_further_details':'Details found online:http://aep.alberta.ca/air/legislation-and-policy/air-monitoring-directive/documents/AmbientAirMonitoringSpecifications-Sep2014.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal molybdenum converter and external quartz converter) (CL(IMC-EQC)) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NH3/NOx/NO2 indirectly). + +#Typical measurement operation for NO (and NH3/NOx/NO2 indirectly) +#1. Sample air is drawn into the reaction cell via three separate (alternating) paths; the NO, TNx and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. In the second path (TNx channel), sample air is passed through an externally mounted heated quartz converter (at 980 degC). The heated quartz reacts with NH3 and NO2 in the sample gas and produces a NO gas (4NH3 + 5O2 --> 4NO + 6H2O). +#9. Once the NO2 and NH3 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 and NH3 in the sample gas into NO, the analyser indirectly measures total TNx content of the sample gas. +#11. The third path (NOx channel) travels through a delay loop and a heated molybdenum converter (at 315degC). The heated molybdenum reacts with NO2 in the sample gas and produces a NO gas and a variety of molybdenum. (xNO2 + yMo --> xNO + MyOz (at 315degC)). +#12. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#13. By converting the NO2 in the sample gas into NO, the analyser measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#14. By switching the sample gas stream between the 3 streams frequently, the analyser is able to quasi-continuously measure both the NO, the total NOx content and TNx. +#15. NO2 is indirectly calculated by subtracting the known NO content of the sample gas from the known NOx content. +#16. NH3 is indirectly calculated by subtracting the known NOx content of the sample gas from the known TNx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other NOy species converted to NO by molybdenum converter (PAN, ethyl nitrate, ethyl nitrite, HONO, HNO3, methyl nitrate, n-propyl nitrate, n-butyl nitrate, nitrocresol, NH3), other species undergoing chemiluminescence with O3 (SOx). + +#Not QA accepted measurement technique for NO2/NOx due to bias in measuring NO2, due to molybdenum converters. + +'chemiluminescence (internal molybdenum converter and external quartz converter)':{'abbreviation':'CL(IMC-EQC)', 'sampling_type':'low volume continuous', 'measured_parameters':['HNO3','NH3','NO','NO2','NOx','NOy'], 'qa_accepted_parameters':['HNO3','NH3','NO','NOy'], + 'instruments':{ + 'Environnement SA AC32e-CNH3':{'measured_parameters':['NH3','NO','NO2','NOx'], 'qa_accepted_parameters':['NH3','NO'], 'documented_lower_limit_of_detection':{'NO':'0.2','NO2':'0.2','NOx':'0.2','NH3':'1.0'}, 'documented_upper_limit_of_detection':{'NO':'10000.0','NO2':'10000.0','NOx':'10000.0','NH3':'1000.0'}, 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0/7days', 'documented_flow_rate':'0.66', 'instrument_manual_name':'EnvironnementSA_AC32e-CNH3_Specs.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal molybdenum and stainless steel converters) (CL(IMSC)) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NH3/NOx/NO2 indirectly). + +#Typical measurement operation for NO (and NH3/NOx/NO2 indirectly) +#1. Sample air is drawn into the reaction cell via three separate (alternating) paths; the NO, TNx and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. In the second path (TNx channel), sample air is first drawn through an internal heated stainless steel converter (at 825 degC). The heated stainless steel reacts with NH3 and NO2 in the sample gas and produces a NO gas (4NH3 + 5O2 --> 4NO + 6H2O). +#9. Once the NO2 and NH3 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 and NH3 in the sample gas into NO, the analyser indirectly measures total TNx content of the sample gas. +#11. The third path (NOx channel) travels through a delay loop and a heated molybdenum converter (at 315degC). The heated molybdenum reacts with NO2 in the sample gas and produces a NO gas and a variety of molybdenum. (xNO2 + yMo --> xNO + MyOz (at 315degC)). +#12. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#13. By converting the NO2 in the sample gas into NO, the analyser measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#14. By switching the sample gas stream between the 3 streams frequently, the analyser is able to quasi-continuously measure both the NO, the total NOx content and TNx. +#15. NO2 is indirectly calculated by subtracting the known NO content of the sample gas from the known NOx content. +#16. NH3 is indirectly calculated by subtracting the known NOx content of the sample gas from the known TNx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other NOy species converted to NO by molybdenum converter (PAN, ethyl nitrate, ethyl nitrite, HONO, HNO3, methyl nitrate, n-propyl nitrate, n-butyl nitrate, nitrocresol, NH3), other species undergoing chemiluminescence with O3 (SOx). + +#Not QA accepted measurement technique for NO2/NOx due to bias in measuring NO2, due to molybdenum converters. + +'chemiluminescence (internal molybdenum and stainless steel converters)':{'abbreviation':'CL(IMSC)', 'sampling_type':'low volume continuous', 'measured_parameters':['HNO3','NH3','NO','NO2','NOx','NOy'], 'qa_accepted_parameters':['HNO3','NH3','NO','NOy'], + 'instruments':{ + 'Teledyne 201A':{'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'1.0%', 'documented_accuracy':'2.0%', 'documented_zero_drift':'2.0/day', 'documented_span_drift':'1.0%/week', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Teledyne_201A_Manual.pdf'} + } +}, + +#------------------------------------ +#chemiluminescence (internal molybdenum converter and external stainless steel converter) (CL(IMC-ESC)) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The return to a fundamental electronic state of the excited NO2* molecules is made by luminous radiation in a 600-3000 nm spectrum (NO2* --> NO2 + hv), which can be measured. +#This method is designed specifically to directly measure NO (and NH3/NOx/NO2 indirectly). + +#Typical measurement operation for NO (and NH3/NOx/NO2 indirectly) +#1. Sample air is drawn into the reaction cell via three separate (alternating) paths; the NO, TNx and NOx channels. +#2. NO in the first path (NO channel) reacts with ozone (from ozone generator) according to the following reaction: NO+O3 --> NO2*+O2. +#3. The excited NO2 molecules quickly returns to the ground state, releasing the excess energy. This release takes the form of a quantum of light (hv). The distribution of wavelengths for these quanta range between 600 and 3000 nm, with a peak at about 1200 nm (NO2* --> NO2 +hv (1200nm)) +#4. Luminescence from the reaction is detected using a photomultiplier tube (PMT). Photons enter the PMT and strike a negatively charged photo cathode causing it to emit electrons. These electrons are accelerated by an applied high voltage and multiplied through a sequence of similar acceleration steps (dynodes) until a useable current signal is generated. The more light present (in this case photons given off by the chemiluminescent reaction described above), the more current is produced. Therefore the more NO present in the reaction cell the more current is produced by the PMT. +#5. Before entering the PMT, light is passed through a high-pass optical filter only transparent to wavelengths of light above 645nm. The narrowness of this band of sensitivity allows avoids the potential of extraneous light and radiation that might interfere with the measurement (e.g. some oxides of sulfur can also be chemiluminescent emitters when in contact with O3 but give off light at much shorter wavelengths (usually around 260nm to 480nm)). +#6. All things being constant (temperature, pressure, amount of ozone present, etc.), the relationship between the amount of NO present in the reaction cell and the amount of light emitted from the reaction is very linear. If more NO is present, more IR light is produced. +#7. In addition, sometimes the excited NO2 collides with other gaseous molecules in the reaction cell chamber or even the molecules of the reaction cell walls and transfers its excess energy to this collision partner (represented by M) without emitting any light at all. In fact, by far the largest portion of the excited NO2 returns to the ground state this way, leaving only a few percent yield of usable chemiluminescence (NO2* + M --> NO2 + M). The probability of a collision between the NO2* molecule and a collision partner M increases proportionally with the reaction cell pressure. This non-radiating collision with the NO2* molecules is usually referred to as third body quenching. Even under the best conditions only about 20% of the NO2 that is formed by the key chemiluminescence reaction is in the excited state. In order to maximize chemiluminescence, the reaction cell is maintained at reduced pressure (thereby reducing the amount of available collision partners) and is supplied with a large, constant excess of ozone (about 3000-5000 ppm) from the internal ozone generator. +#8. In the second path (TNx channel), sample air is first drawn through an externally mounted heated stainless steel converter (at 750 degC). The heated stainless steel reacts with NH3 and NO2 in the sample gas and produces a NO gas (4NH3 + 5O2 --> 4NO + 6H2O). +#9. Once the NO2 and NH3 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#10. By converting the NO2 and NH3 in the sample gas into NO, the analyser indirectly measures total TNx content of the sample gas. +#11. The third path (NOx channel) travels through a delay loop and a heated molybdenum converter (at 315degC). The heated molybdenum reacts with NO2 in the sample gas and produces a NO gas and a variety of molybdenum. (xNO2 + yMo --> xNO + MyOz (at 315degC)). +#12. Once the NO2 in the sample gas has been converted to NO, it is routed to the reaction cell where it undergoes the chemiluminescence reaction and is measured by the PMT. +#13. By converting the NO2 in the sample gas into NO, the analyser measures total NOx content of the sample gas (i.e. the NO present + the converted NO2 present). +#14. By switching the sample gas stream between the 3 streams frequently, the analyser is able to quasi-continuously measure both the NO, the total NOx content and TNx. +#15. NO2 is indirectly calculated by subtracting the known NO content of the sample gas from the known NOx content. +#16. NH3 is indirectly calculated by subtracting the known NOx content of the sample gas from the known TNx content. + +#Known interferences: Water vapour (above 20 ppmv), 3rd body quenching (CO2, SOx), other NOy species converted to NO by molybdenum converter (PAN, ethyl nitrate, ethyl nitrite, HONO, HNO3, methyl nitrate, n-propyl nitrate, n-butyl nitrate, nitrocresol, NH3), other species undergoing chemiluminescence with O3 (SOx). + +#Not QA accepted measurement technique for NO2/NOx due to bias in measuring NO2, due to molybdenum converters. + +'chemiluminescence (internal molybdenum converter and external stainless steel converter)':{'abbreviation':'CL(IMC-ESC)', 'sampling_type':'low volume continuous', 'measured_parameters':['HNO3','NH3','NO','NO2','NOx','NOy'], 'qa_accepted_parameters':['HNO3','NH3','NO','NOy'], + 'instruments':{ + 'Teledyne 201E': {'measured_parameters':['NH3','NO','NO2','NOx'], 'qa_accepted_parameters':['NH3','NO'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'2000.0', 'documented_accuracy':{'NH3':'2.0%','NO':'1.0%','NO2':'1.0%','NOx':'1.0%'}, 'documented_zero_drift':'2.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5-1.0', 'instrument_manual_name':'Teledyne_201E_Manual.pdf'}, + 'Thermo 17C': { 'instrument_further_details':'Converter information found here:https://archive.epa.gov/nrmrl/archive-etv/web/pdf/01_vs_thermo.pdf'}, + 'Thermo 17i': { 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.6', 'instrument_manual_name':'Thermo_17i_Manual.pdf'} + } +}, + +#------------------------------------ +#gas chromatography - sulphur chemiluminescence (GC-SC) + +#Chemiluminescence is the emission of light (luminescence), as the result of a chemical reaction. Chemiluminescence occurs as a result of the reaction of SO and ozone (SO+O3 --> SO2*+O2). +#The return to a fundamental electronic state of the excited SO2* molecules is made by luminous radiation in a specific spectrum (SO2* --> SO2 + hv), which can be measured (by a photomultiplier tube). +#The concentration of sample total sulphur is directly proportional to the intensity of light emitted. +#This method can be mixed with gas chromatography (GC) to allow to determination of specific sulphur compounds (i.e. SO2). +#The gas sample is passed through a GC column before being ultimately measured by the photomultiplier detector. + +#Gas chromatography (GC) is a method used for separating and analysing compounds that can be vaporized without decomposition. +#A sample solution is injected into a instrument, entering a gas stream which transports the sample (mobile phase) into a separation tube known as the "column". +#The mobile phase is a carrier gas, usually an inert gas such as helium or an unreactive gas such as nitrogen. Helium remains the most commonly used carrier gas in about 90% of instruments although hydrogen is preferred for improved separations. +#The column consists of a microscopic layer of liquid or polymer on an inert solid support a microscopic layer of liquid or polymer on an inert solid support (stationary phase), inside a piece of glass or metal tubing, placed inside a piece of glass or metal tubing. +#Once inside the column, the gaseous compounds being analysed interact with the walls of the column coated with a stationary phase. This causes each compound to elute at a different time, known as the retention time of the compound. +#The comparison of retention times is what gives GC its analytical usefulness. +#If greater separation of compounds is required, multiple distinct columns can be used for this purpose. + +#See details of method for SO2: http://www.nrcresearchpress.com/doi/pdf/10.1139/v84-073, http://www.interline.nl/media/1000035/specifiekzwavelchromatograph.pdf' + +'gas chromatography - sulphur chemiluminescence':{'abbreviation':'GC-SC', 'sampling_type':'low volume continuous', 'measured_parameters':['SO2','H2S'], 'qa_accepted_parameters':['SO2','H2S'], + 'instruments':{} +}, + +#------------------------------------ +#flame photometric detection (FPD) + +#Many elements give characteristic emission when burned in flame. Absorption of energy from the flame allows a ground state atom or molecule to reach an excited state. +#The atom/molecule may return to the ground state through emission of light (luminescence), which can be subsequently measured (by a photomultiplier tube). This process is a chemiluminescent process (where luminescence occurs as the result of a chemical reaction). +#The concentration of the sample gas is directly proportional to the intensity of light emitted. +#This method has been applied for the measurement of sulphur and potassium containing species (i.e. SO2) and as a detector +#For specific measurement of solely SO2, the sample gas must be scrubbed of other sulphur species prior to measurement, and the photomultiplier detector measures emission centred near 394nm. + +#Known interferences: Other sulphur compounds + +#See details of method for SO2: https://nepis.epa.gov/Exe/ZyNET.exe/9101A5EI.txt?ZyActionD=ZyDocument&Client=EPA&Index=1976%20Thru%201980&Docs=&Query=&Time=&EndTime=&SearchMethod=1&TocRestrict=n&Toc=&TocEntry=&QField=&QFieldYear=&QFieldMonth=&QFieldDay=&UseQField=&IntQFieldOp=0&ExtQFieldOp=0&XmlQuery=&File=D%3A%5CZYFILES%5CINDEX%20DATA%5C76THRU80%5CTXT%5C00000026%5C9101A5EI.txt&User=ANONYMOUS&Password=anonymous&SortMethod=h%7C-&MaximumDocuments=1&FuzzyDegree=0&ImageQuality=r75g8/r75g8/x150y150g16/i425&Display=hpfr&DefSeekPage=x&SearchBack=ZyActionL&Back=ZyActionS&BackDesc=Results%20page&MaximumPages=1&ZyEntry=22 +#See for potassium: http://hiq.linde-gas.com/en/analytical_methods/gas_chromatography/flame_photometric_detector.html + +'flame photometric detection':{'abbreviation':'FPD', 'sampling_type':'low volume continuous', 'measured_parameters':['SO2','H2S','K+','SO4--','SO4--_NSS','SO4--_SS','PM10_K+','PM10_SO4--','PM10_SO4--_NSS','PM10_SO4--_SS','PM2.5_K+','PM2.5_SO4--','PM2.5_SO4--_NSS','PM2.5_SO4--_SS','PM1_K+','PM1_SO4--','PM1_SO4--_NSS','PM1_SO4--_SS'], 'qa_accepted_parameters':['SO2','H2S','K+','SO4--','SO4--_NSS','SO4--_SS','PM10_K+','PM10_SO4--','PM10_SO4--_NSS','PM10_SO4--_SS','PM2.5_K+','PM2.5_SO4--','PM2.5_SO4--_NSS','PM2.5_SO4--_SS','PM1_K+','PM1_SO4--','PM1_SO4--_NSS','PM1_SO4--_SS'], + 'instruments':{ + 'Bendix 8302': {'instrument_further_details':'No manual or specifications available but confirmation it is uses flame photometric detection here:https://in.booksc.me/book/12890878/314c1d'}, + 'Bendix 8303': {'instrument_further_details':'No manual or specifications available but confirmation it is uses flame photometric detection here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Meloy SA185-2A': {'instrument_further_details':'No manual or specifications available but confirmation it is uses flame photometric detection here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Meloy SA285E': {'instrument_further_details':'No manual or specifications available but confirmation it is uses flame photometric detection here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Teledyne ML8450':{'instrument_further_details':'No manual or specifications available but confirmation it is uses flame photometric detection here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'} + } +}, + +#------------------------------------ +#flame ionisation detection (FID) + +#This method is based on the principle of the generation of an electrical current that is proportional to the rate of ion formation, dependent on the concentrations of species in the sample gas. +#The method is typically the standard detection method for column separated hydrocarbons, however the method is also sensitive to almost all compounds, mostly combustible ones. +#There are, however, a few compounds to which the method has very little, if any, sensitivity, including: O2, N2, SO2, NO, N2O, NO2, NH3, CO, CO2, and H2O. +#When used as a standalone method (without prior chromatography) it is non-specific for mixed gases in the sample. + +#Typical measurement operation for hydrocarbons: +#1. The sample gas is introduced into a hydrogen flame inside the flame ionisation detector. +#2. Any hydrocarbons in the sample will produce ions when they are burnt. +#3. Ions are detected using a metal collector which is biased with a high DC voltage. +#4. The current across this collector is thus proportional to the rate of ionisation which in turn depends upon the concentration of hydrocarbons in the sample gas. + +'flame ionisation detection':{'abbreviation':'FID', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['VOC','HC'], + 'instruments':{ + 'Thermo 55C':{'instrument_further_details':'No manual or specifications available but confirmation it is uses flame ionisation detection here: https://www.oregon.gov/deq/aq/cao/Documents/CWM-111119SourceTestPlan.pdf'} + } +}, + +#------------------------------------ +#selective combustion - flame ionisation detection (SC-FID) + +#This method combines flame ionisation detection with selctive combustion to enable to measurement of specific hydrocarbons in a mixed gaseous sample. +#This is most commonly employed for the measurement of CH4, but can be done for other hydrocarbons also. + +#Typical measurement operation for hydrocarbons: +#1. The sample gas is split into 2 lines +#2. On the first line, the sample gas is introduced into a hydrogen flame inside the flame ionisation detector (reference measurement). +#2. Any hydrocarbons in the sample will produce ions when they are burnt. +#3. Ions are detected using a metal collector which is biased with a high DC voltage. +#4. The current across this collector is thus proportional to the rate of ionisation which in turn depends upon the concentration of hydrocarbons in the sample gas. +#5. On the second line, the sample gas is first passed though a selective catalytic combustion unit, leaving only a specific hydrocarbon in the sample (oxidising the others), for example CH4 +#6. This is then measured using FID, and thus gives the concentration of the isolated hydrocarbon +#7. If the isolated hydrocarbon measured on the second line is CH4, then line1 - line2 will give the NMHC concentration + +'selective combustion - flame ionisation detection':{'abbreviation':'SC-FID', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{ + 'Horiba APHA350':{ 'instrument_further_details':'Details about instrument found here: https://www.umweltbundesamt.de/sites/default/files/medien/publikation/long/2702.pdf'}, + 'Horiba APHA360':{'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_span_drift':'0.5%/week', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Horiba_APMA360_Specs.pdf'}, + 'Horiba APHA370':{'documented_precision':'2.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'2.0%/day', 'documented_span_drift':'2.0%/day', 'documented_flow_rate':'0.9', 'instrument_manual_name':'Horiba_APHA370_Manual.pdf'} + } +}, + +#------------------------------------ +#conductimetry (CD) + +#Involves the absorption of a specific gas species in deionized water, to produce an acid, which can be detected by a conductivity cell. +#Through the use of the deionized water reagent, measurements are susceptible to interferences from CO2, salt aerosols, acid mists and basic gases. +#Addition of hydrogen peroxide to the deionized water minimises interference (through reduced solubility of CO2 within the water). +#This method been used extensively to measure SO2. + +#Known interferences: Any gas that can form or remove ions (NO2, NH3, HCl, Cl2 are the worst known interferants). + +#Not QA accepted measurement technique for SO2 due to dominance of other more accurate techniques in measuring this species + +#See details of method for SO2:https://books.google.es/books?id=DiRevS__HUkC&pg=PA6&lpg=PA6&dq=SO2+conductimetric&source=bl&ots=wTME59BaGo&sig=D8wxHHP99GihBGlBJv1DXCUxcis&hl=en&sa=X&ved=0ahUKEwjmloGg7-fbAhXDzRQKHdtIAwAQ6AEIZjAH#v=onepage&q=SO2%20conductimetric&f=false' + +'conductimetry':{'abbreviation':'CD', 'sampling_type':'low volume continuous', 'sample_preparation_type':'reagent reaction', 'measured_parameters':['NH3','HNO3','HCl','SO2','H2S'], 'qa_accepted_parameters':['NH3','HNO3','HCl'], + 'instruments':{ + 'Asarco 500':{ 'measured_parameters':['SO2'], 'qa_accepted_parameters':[], 'instrument_further_details':'cannot find any information. AQS states it as conductance. Assume conductimetry as detailed in general method reference below', 'measuring_assumption':True}, + 'ECN AMOR': {'sample_preparation_type':'denuder;reagent reaction', 'measured_parameters':['NH3'], 'instrument_further_details':'See reference here:https://www.sciencedirect.com/science/article/pii/096016869390280C'} + } +}, + +#------------------------------------ +#second derivative spectrophotometry (SDS) + +#Spectrophotometry is a method based on Beer-Lambert's law, where the absorption of light transmitted through the medium is directly proportional to the medium concentration. +#The main disadvantage and limitation of the spectrophotometry is its low selectivity. The measurement of absorbance is burden by interferences derived from others components of sample. +#Derivative spectrophotometry involves plotting the first, second or higher order derivatives of a spectrum with respect to wavelength. +#Usually this is obtained by a microprocessor connected in series with a spectrophotometer, which computes the derivative with respect to time as the spectrum is scanned at constant speed. +#The "true" wavelength derivative is linearly related to the time derivative recorded, the magnitude of which is directly affected by scanning speed and spectral band width. +#The derivative process provides two general advantages: first, an effective enhancement of resolution, which can be useful to separate two or more components with overlapping spectra; second, a discrimination in favour of the sharpest features of a spectrum, used to eliminate interferences by broad band constituents. However, this process results in a decrease in the signal to noise ratio. +#Both advantages and disadvantages increase with the derivative order. Generally, the second derivative is more useful than the first ones. + +#Not QA accepted measurement technique for NO/NO2/SO2 due to dominance of other more accurate techniques in measuring these species + +#See details about method for NO,NO2,NH3,SO2:https://www.osapublishing.org/as/abstract.cfm?uri=as-53-11-1352 + +'second derivative spectrophotometry':{'abbreviation':'SDS', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','NH3','HNO3','HCl','SO2','H2S'], 'qa_accepted_parameters':['NH3','HNO3','HCl'], + 'instruments':{ + 'Ecotech SM1000':{'measured_parameters':['SO2'], 'qa_accepted_parameters':[], 'instrument_further_details':'No manual or specifications available but confirmation it is uses second derivative spectrophotometry here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'} + } +}, + +#------------------------------------ +#coulometry (CM) + +#Coulometry determines the amount of matter transformed during an electrolysis reaction by measuring the amount of electricity (in coulombs) consumed or produced. +#It can be used for precision measurements of charge, and the amperes even used to have a coulometric definition. +#Typical coulometric methods use solutions of potassium bromide (halide) and bromine (halogen) in dilute sulphuric acid. +#The concentration of bromine is measured as a voltage between an indicator electrode and a bromide reference electrode. +#When the measured species is present, the bromine concentration is decreased through reaction. A feedback system then compensates by generator bromine at a generator electrode. +#The current required to regenerate the bromine is directly proportional to the concentration of the measured species. +#The method is extremely sensitive to interference through reaction with other undesired species (typically NO, NO2, O3, sulphur species, Cl2). +#Other species are typically removed through pre-filters. +#This method been used to measure NO2 and SO2. + +#Known interferences: Reaction with other gases, typically: NO, NO2, O3, sulphur species, Cl2. + +#Not QA accepted measurement technique for O3, NO2 or NOx due to dominance of other more accurate techniques in measuring these species + +#See details about method for NO2: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1962.10468113; and for SO2: https://www.tandfonline.com/doi/pdf/10.1080/00022470.1968.10469104 +#See details about method for O3: https://pubs.acs.org/doi/abs/10.1021/es00028a012 + +'coulometry':{'abbreviation':'CM', 'sampling_type':'low volume continuous', 'sample_preparation_type':'reagent reaction', 'measured_parameters':['O3','NO','NO2','NOx','CO','SO2','H2S'], 'qa_accepted_parameters':[], + 'instruments':{ + 'Philips PW9700':{'measured_parameters':['SO2'], 'documented_lower_limit_of_detection':'4.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses coulometry here, and gives detection limit:https://books.google.es/books?id=KGQyBwAAQBAJ&pg=PT423&lpg=PT423&dq=PHILIPS+PW9700&source=bl&ots=lbloftODx4&sig=uBDyugqVzVHAhH2K21mDH7q2wYc&hl=en&sa=X&ved=0ahUKEwjxgYGZwOfbAhWHORQKHWEiBCAQ6AEIMTAB#v=onepage&q=PHILIPS%20PW9700&f=false'}, + 'Philips PW9755':{'measured_parameters':['SO2'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses coulometry here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'} + } +}, + +#------------------------------------ +#polarography (PO) + +#An electrochemical technique where the cell current is measured as a function of time and as a function of the potential between the indicator and reference electrodes. +#The working electrode is a dropping mercury (or other liquid conductor) electrode and unstirred solutions are used. +#The potential is varied using pulses of linearly increasing amplitude (one pulse during each drop lifetime) and the current is sampled before and after each voltage pulse. + +#Not QA accepted measurement technique for NO/NO2/SO2 due to dominance of other more accurate techniques in measuring these species + +#See details about method for NO, NO2 and SO2: https://www.sciencedirect.com/science/article/pii/0039914079800041 + +'polarography':{'abbreviation':'PO', 'sampling_type':'injection', 'measured_parameters':['NO','NO2','SO2','H2S'], 'qa_accepted_parameters':[], + 'instruments':{} +}, + +#------------------------------------ +#capillary electrophoresis (CE) + +#Capillary electrophoresis (CE) is a family of electrokinetic separation methods performed in submillimeter diameter capillaries and in micro and nanofluidic channels. +#In capillary electrophoresis methods, analytes migrate through electrolyte solutions under the influence of an electric field. +#Analytes can be separated according to ionic mobility and/or partitioning into an alternate phase via non-covalent interactions. +#Additionally, analytes may be concentrated or "focused" by means of gradients in conductivity and pH. + +#Not QA accepted measurement technique for SO2 due to dominance of other more accurate techniques in measuring this species +#See details about method for SO2: https://journals.sagepub.com/doi/abs/10.1177/1082013213494900 + +#See details for ions here: https://www.waters.com/waters/library.htm?locale=en_AU&lid=1822645&cid=511436 and https://www.isterre.fr/english/platforms-services-1235/platform-synthesis-and-characterization/synthesis-and-solid-liquid-interactions/article/capillary-electrophoresis-waters.html + +'capillary electrophoresis':{'abbreviation':'CE', 'sampling_type':'injection', 'measured_parameters':['SO2','H2S','NH3','HNO3','HCl','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['NH3','HNO3','HCl','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{ + 'Waters Alliance':{'instrument_further_details':'No manual or specifications available but confirmation it is uses capillary electrophoresis here: https://www.isterre.fr/english/platforms-services-1235/geochemistry-mineralogy-platform/article/capillary-electrophoresis-waters.html'}} +}, + +#------------------------------------ +#ultraviolet fluorescence (UVF) + +#Fluorescence is the emission of light (luminescence) by a substance that has absorbed light or other electromagnetic radiation (excitation). In most cases, the emitted light has a longer wavelength, and therefore lower energy, than the absorbed radiation. +#Ultraviolet fluorescence specifically refers to the process of a species being excited by ultraviolet light (10nm to 400nm) (species + hv (UV) --> species*). +#The return to a fundamental electronic state of the excited species is made by luminous radiation on a longer wavelength spectrum (species* --> species + hv). +#SO2 is efficiently excited to an excited state (SO2*) by UV light between 190 nm-230 nm, subsequently fluorescing light at approximately 330nm (SO2* --> SO2 +hv(330nm)), which can be measured. + +#Typical measurement operation for SO2: +#1. The sample is drawn into the sample bulkhead (typically the sample flows through a hydrocarbon “kicker,” which removes hydrocarbons from the sample by forcing the hydrocarbon molecules to permeate through the tube wall). +#2. The sample then flows into the measurement cell, where pulsating UV light from a light source (typically mercury or zinc vapour lamp) between 190nm-230nm excites the SO2 molecules by the reaction: SO2 + hv (190nm-230nm) --> SO2* . A vacuum diode, UV detector that converts UV light to a DC current is used to measure the intensity of the excitation UV source lamp. +#3. Typically a band pass filter limits the wavelength of the UV source light to approximately 214 nm, and therefore the excitation reaction becomes: SO2 + hv (214nm) --> SO2* +#4. The amount SO2 converted to SO2* in the sample chamber is dependent on the average intensity of the UV light (Ia) and not its peak intensity because the intensity of UV light is not constant in every part of the sample chamber. Some of the photons are absorbed by the SO2 as the light travels through the sample gas. The equation for defining the average intensity of the UV light (Ia) is: Ia = I0 [1 − exp(− ax(SO2))], Where: I0 = Intensity of the excitation UV light, a = The absorption coefficient of SO2 (a constant), SO2 = Concentration of SO2 in the sample chamber, x = The distance between the UV source and the SO2 molecule(s) being affected (path length). +#5. SO2* then fluoresces light at a longer (lower energy) wavelength centred at 330nm: SO2* --> SO2 + hv (330nm). +#6. The amount of detectable UV given off by the decay of the SO2* is affected by the rate at which this reaction occurs (k). F = k(SO2*), Where: F = the amount of fluorescent light given off, k = The rate at which the SO2* decays into SO2, SO2* = Amount of excited-state SO2 in the sample chamber. Therefore: (SO2*) -kf --> SO2 + hv (330nm) +#7. The function (k) is affected by the temperature of the gas. The warmer the gas, the faster the individual molecules decay back into their ground state and the more photons of UV light are given off per unit of time. Given that the absorption rate of SO2 (a) is constant, the amount of fluorescence (F) is a result of: a) The amount of SO2* created which is affected by the variable factors: concentration of SO2; intensity of UV light (I0); path length of the UV light(x) and b) The amount of fluorescent light created which is affected by the variable factors: the amount of SO2* present and the rate of decay (k) which changes based on the temperature of the gas. +#8. When and the intensity of the light (I0) is known; path length of excited light is short (x); the temperature of the gas is known and compensated for so that the rate of SO2*decay is constant (k). and; no interfering conditions are present (such as interfering gases or stray light); the amount of fluorescent light emitted (F) is directly related to the concentration of the SO2 in the Sample Chamber. +#9. A Photo Multiplier Tube (PMT) detects the UV given off by the SO2* decay (330 nm) and outputs an analog signal. Several focusing lenses and optical filters ensure that both the PMT and source lamp vacuum diode are exposed to an optimum amount of only the right wavelengths of UV. To further assure that the PMT only detects light given off by decaying SO2* the pathway of the excitation UV and field of view of the PMT are perpendicular to each other and the inside surfaces of the sample chamber are coated with a layer of black teflon that absorbs stray light. +#10. The net result of the careful instrumental precision is any variation in UV fluorescence can be directly attributed to changes in the concentration of SO2 in the sample gas. + +#Known interferences: 3rd body quenching (NO, CO2, O2, H2O), light pollution, UV absorption by ozone, other species undergoing ultraviolet fluorescence (poly-nuclear aromatics, NO) + +'ultraviolet fluorescence':{'abbreviation':'UVF', 'sampling_type':'low volume continuous', 'measured_parameters':['SO2','H2S'], 'qa_accepted_parameters':['SO2','H2S'], + 'instruments':{ + 'Airpointer-SO2': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0/1.0%', 'documented_accuracy':'1.0%>=100.0', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%>=100/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Airpointer_Specs.pdf'}, + 'Beckman 953': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Dasibi 4108': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'1.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here, and details about limit of detection:https://books.google.es/books?id=ZNvqCAAAQBAJ&pg=PA155&lpg=PA155&dq=Dasibi+4108&source=bl&ots=rxhgzzOLrY&sig=W2zmIMXsFjAcNUXGLgTCYViACR0&hl=en&sa=X&ved=0ahUKEwj8xOXN2ufbAhXDchQKHRVWBksQ6AEIVjAI#v=onepage&q=Dasibi%204108&f=false'}, + 'DKK-TOA GFS-32': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://itepsrv1.itep.nau.edu/itep_course_downloads/DAI%20resources/old%20resource%20files/Reference%20and%20Equivalent%20Methods%201-2007.pdf'}, + 'DKK-TOA GFS-112E': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://www.federalregister.gov/documents/2000/01/18/00-1083/ambient-air-monitoring-reference-and-equivalent-methods-designation-of-a-new-equivalent-method-for'}, + 'DKK-TOA GFS-312E': {'documented_lower_limit_of_detection':'0.2', 'documented_upper_limit_of_detection':'1000.0', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'1.0%/day', 'instrument_manual_name':'DKK-TOA_GFS-312E_Specs.pdf'}, + 'Ecotech AM2020': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Ecotech EC9850': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5/1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'0.5%/day', 'documented_resolution':'0.001', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Ecotech_EC9850_Manual.pdf'}, + 'Ecotech EC9850T': {'documented_lower_limit_of_detection':'0.2', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'0.5/0.5%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Ecotech_EC9850T_Specs.pdf'}, + 'Ecotech Serinus50': {'documented_lower_limit_of_detection':'0.3', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5/0.15%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.75', 'instrument_manual_name':'Ecotech_Serinus50_Manual.pdf'}, + 'Envea AF22e': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.333', 'instrument_manual_name':'Envea_AF22e_Specs.pdf'}, + 'Environnement SA AF20M':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=sZLqCAAAQBAJ&pg=PA73&lpg=PA73&dq=environnement+af20m&source=bl&ots=OOOfZQbtkW&sig=ACfU3U0bdsNJH5j2XhFzrkF2tnkb6e2HKQ&hl=en&sa=X&ved=2ahUKEwjAidHQtf_fAhXD8uAKHcYOBRYQ6AEwAnoECAgQAQ#v=onepage&q=environnement%20af20m&f=false'}, + 'Environnement SA AF21M':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2586140/'}, + 'Environnement SA AF22M':{'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'10000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.3', 'instrument_manual_name':'Environnement_SA_AF22M_Specs.pdf'}, + 'Horiba APSA300': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.co.uk/books?id=-rDwCAAAQBAJ&pg=PA121&lpg=PA121&dq=APSA-300+SO2&source=bl&ots=AnmNzO9vQI&sig=ACfU3U0L-QiSGScTD5rDtfIGRDZa1BF0Sg&hl=en&sa=X&ved=2ahUKEwj68aSO8v_zAhVeEWMBHQuIBUEQ6AF6BAgTEAM#v=onepage&q=APSA-300%20SO2&f=false'}, + 'Horiba APSA350': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=qmWXBwAAQBAJ&pg=PA88&lpg=PA88&dq=apsa350&source=bl&ots=dBQKXVwgi2&sig=ACfU3U033XGNb0kOfeN06k0HDr7Oot-Imw&hl=en&sa=X&ved=2ahUKEwi0jbGJsP_fAhWC2OAKHTYyCU44ChDoATAAegQIABAB#v=onepage&q=apsa350&f=false'}, + 'Horiba APSA360': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Horiba_APMA360_Specs.pdf'}, + 'Horiba APSA365': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'100.0', 'documented_precision':'2.0%', 'documented_accuracy':'2.0%', 'documented_zero_drift':'2.0%<20.0/day 1.0%>=20.0/day', 'documented_span_drift':'2.0%/day', 'documented_flow_rate':'0.8', 'instrument_further_details':'Details found online:http://www.biowell.sk/produkt/podimis/365so2.html'}, + 'Horiba APSA370': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5/day', 'documented_flow_rate':'0.7', 'instrument_manual_name':'Horiba_APSA370_Specs.pdf'}, + 'MCV 64FUV': { 'instrument_further_details':'cannot find any information. EIONET states it as automatic for SO2 which is almost always ultraviolet fluorescencer. Assume this.', 'measuring_assumption':True}, + 'Meloy SA700': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Philips K50033': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=2ahUKEwiaspe-19jnAhWI4IUKHVswA1oQFjADegQICBAB&url=http%3A%2F%2Ffbd.beun.edu.tr%2Findex.php%2Fzkufbd%2Farticle%2Fdownload%2F53%2F100&usg=AOvVaw0l7fQAqr1Pealzx0MaZ6d0'}, + 'Philips K50206/00': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://pdf.sciencedirectassets.com/277910/1-s2.0-S1876610214X00032/1-s2.0-S1876610214000745/main.pdf?X-Amz-Security-Token=IQoJb3JpZ2luX2VjELX%2F%2F%2F%2F%2F%2F%2F%2F%2F%2FwEaCXVzLWVhc3QtMSJHMEUCIQCHD7TbrA0pGiTZ0F1yTQNWNKTRV8wDIzKAliNRM9MGrQIgKRH3nSIu%2Fb3f2feAIwkay5DxYtP0mB0uT1LlRkEBi4Iq%2BgMIXhAEGgwwNTkwMDM1NDY4NjUiDPRn9A4cq5O8L8dhwirXA4qKOPYgQb%2BFEhOxqj6i%2Fhf3MIQYD0xKUHImNbwCxb7VBVxFSh46qMQ8HufqiIxSPPQGcMFRQ27PCDd3WGi0Qse053q8vx7zMBwgAy3xX0jWWKwfwF74JWx0o6TIulxoEjetJywZLtjxygDhrRNUvgdmW6mJ29C80TFOzudlS%2FP73YJLAgkoS%2F7%2BQ4XrXOUGMNf%2FsV5%2B6lpYFJNyfeZ4ma5p7KdFRkTE3kD%2B1L%2Fl%2FHZWmnRB0WVkjPSPubgsoPaF%2FvEzqG6Rz8Jzn9WJ%2FSFljLMzQOm%2B3z6rk5Y3s7DivqxEDNWCNDYFgLnxuiCXUeh7PCxoZ2tyQg3%2BOMlTI96nx2HSp24B9txv%2BURLBJ7a3W8rYNZ0XGJ7GA6HU1K3uUns%2FmSK1CPXPmKNt2kOa5D65zvOjY%2FHpjnXLIyLOdbiJzi4b%2F5fS0XUa3n0GBn%2FnsTc3YZsqB7rvm%2FtsdmJMyqDc2Gy3nmZ8BU0L4i%2FiFzsvwdinbaAs4bOSo2GZDJSBgjkhEIvE6ww4V4QGfDvkcVeKqc85x%2BxBk4DSUzi7DE7G7A4XZSfvI81n9%2FExbtsRvsdjy5aLG6zPXp1RUEu%2F6BgimRSnJ5gQK5%2FrqqOzVRtCxKCrvmhHDJ74TDSq4%2BMBjqlAV8liNT1G81EJOD0K7MybECILa1HzEKLor5d7dopFy2TZ24XmOokzgLOEGhPY1zaHqWoKzDyY0nJiIDDuvs2oY9hw6sQgZoE6OIRZXlBQP%2FrU0q8wMmMm6i%2FlvFaz5y8dZsCiggEyrTbHTzMFcRv6vzmO7GWnuthvk9d00k%2Fuvd7U3kIXsU7rwF7GsMPe%2BrkY3QLlHkPn83JUZ7MVQv8MSr1GgsAEw%3D%3D&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20211104T135204Z&X-Amz-SignedHeaders=host&X-Amz-Expires=300&X-Amz-Credential=ASIAQ3PHCVTY2ZEZUA2D%2F20211104%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=411af053b6470203f95e0d6e41b0e26586bf4b68b60637f65f60ef0b5ef7b052&hash=3484d1dabf3788181c39f021bddb513640ad955227ceb405b51e859348331426&host=68042c943591013ac2b2430a89b270f6af2c76d8dfd086a07176afe7c76c2c61&pii=S1876610214000745&tid=spdf-4e792382-28a3-4408-8d2c-e7d78fc31a79&sid=fca986874c986748ed0adba-f4e4c04dd527gxrqb&type=client'}, + 'Sabio 6020': {'documented_lower_limit_of_detection':'0.3', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'3.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.4-0.8', 'instrument_manual_name':'Sabio_6020_Specs.pdf'}, + 'Seres SF2000G': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'20000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'2.0/week', 'documented_span_drift':'1.0%/month', 'documented_flow_rate':'0.5-0.833', 'instrument_manual_name':'Seres_SF2000G_Specs.pdf'}, + 'SIR S-5001': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://www.eufar.net/instruments/423'}, + 'Teledyne 100': { 'instrument_further_details':'cannot find any information. AQS states it as ultraviolet fluorescence. Assume this', 'measuring_assumption':True}, + 'Teledyne 100A': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_100A_Manual.pdf'}, + 'Teledyne 100AH': {'documented_lower_limit_of_detection':'100.0', 'documented_upper_limit_of_detection':'5000000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1000.0/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_100AH_Manual.pdf'}, + 'Teledyne 100E': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%>=50.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_100E_Manual.pdf'}, + 'Teledyne 100EH': {'documented_lower_limit_of_detection':'100.0', 'documented_upper_limit_of_detection':'5000000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1000.0/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.7', 'instrument_manual_name':'Teledyne_100EH_Addendum.pdf'}, + 'Teledyne 100EU': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'0.5%/7days', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_100EU_Addendum.pdf'}, + 'Teledyne 101': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/API101/view?facet=HTML+Representation'}, + 'Teledyne 101A': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://pagina.jccm.es/medioambiente/rvca/pdfs/INFORME_UNIDAD-MOVIL-MORA_2_15%20.pdf'}, + 'Teledyne T100': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%>=50.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_T100_Manual.pdf'}, + 'Teledyne T100H': {'documented_lower_limit_of_detection':'200.0', 'documented_upper_limit_of_detection':'5000000.0', 'documented_precision':'0.5%>=10000', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1000.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.7', 'instrument_manual_name':'Teledyne_T100H_Addendum.pdf'}, + 'Teledyne T100U': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_T100U_Addendum.pdf'}, + 'Teledyne T101': {'documented_lower_limit_of_detection':'0.4', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'0.5%>=50.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.5/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.65', 'instrument_manual_name':'Teledyne_T101_Manual.pdf'}, + 'Teledyne ML8850': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=BODqCAAAQBAJ&pg=PA137&lpg=PA137&dq=MONITOR+LABS+8850&source=bl&ots=TUXOyv5p5D&sig=Ult9_8r_m8xwlzmZIHNu3a3JaMs&hl=en&sa=X&ved=0ahUKEwjsu52E2ufbAhXBvhQKHVNNCrkQ6AEIdzAM#v=onepage&q=MONITOR%20LABS%208850&f=false'}, + 'Teledyne ML8850M': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML8850M/view'}, + 'Teledyne ML8850S': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://www.der.wa.gov.au/images/documents/your-environment/air/publications/perth-photochemical-smog-study-1996.pdf'}, + 'Teledyne ML9850': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://www.epa.ie/licences/lic_eDMS/090151b28005fa5c.pdf'}, + 'Teledyne ML9850B': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://www.epa.ie/licences/lic_eDMS/090151b28005fa5c.pdf'}, + 'Thermo 43': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA249&lpg=PA249&dq=monitor+labs+8450&source=bl&ots=-uIdNzc1_l&sig=LqRK0OiodCMg5Sow1wlXQgIVLx0&hl=en&sa=X&ved=0ahUKEwjCy8eNvOfbAhVBuhQKHZTJBUoQ6AEIWDAG#v=onepage&q=monitor%20labs%208450&f=false'}, + 'Thermo 43A': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'100.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here, and details about limit of detection:https://books.google.es/books?id=G0EYUql3_98C&pg=PA283&lpg=PA283&dq=thermo+43a&source=bl&ots=k2RUJXlAVJ&sig=yIxG08AoSyuqedtS6dp-O7O04X4&hl=en&sa=X&ved=0ahUKEwj17qqB3OfbAhVCVRQKHanFDlo4ChDoAQgoMAA#v=onepage&q=thermo%2043a&f=false'}, + 'Thermo 43B': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here:http://www.southwestohioair.org/UserFiles/Servers/Server_3788196/File/EnvironmentalServices/AirQuality/Monitoring/AirMonitoringNetwork16-17.pdf'}, + 'Thermo 43C': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.0/1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Thermo_43C_Specs.pdf'}, + 'Thermo 43C-TLE': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'0.2/1.0%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Thermo_43C-TLE_Specs.pdf'}, + 'Thermo 43H': {'documented_lower_limit_of_detection':'10.0', 'documented_upper_limit_of_detection':'20000.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here, and details about detection limits: https://www.yumpu.com/fr/document/read/7309580/catalogue-cleanair-europe/36'}, + 'Thermo 43i': {'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'100000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Thermo_43i_Manual.pdf'}, + 'Thermo 43i-TLE': {'documented_lower_limit_of_detection':'0.05', 'documented_upper_limit_of_detection':'1000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Thermo_43i-TLE_Manual.pdf'}, + 'Thermo 43S': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here: https://books.google.es/books?id=JqpwDwAAQBAJ&pg=PA232&lpg=PA232&dq=thermo+43s&source=bl&ots=h9MazeIX98&sig=ACfU3U0F3I9zCn-qI-pM7Np-yN5w7AxRGg&hl=en&sa=X&ved=2ahUKEwiwh9ri1f7fAhXh8eAKHfd9CxYQ6AEwCXoECAkQAQ#v=onepage&q=thermo%2043s&f=false'}, + 'Thermo 43W': {'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'750.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses ultraviolet fluorescence here, and details about limit of detection:https://books.google.es/books?id=G0EYUql3_98C&pg=PA283&lpg=PA283&dq=thermo+43a&source=bl&ots=k2RUJXlAVJ&sig=yIxG08AoSyuqedtS6dp-O7O04X4&hl=en&sa=X&ved=0ahUKEwj17qqB3OfbAhVCVRQKHanFDlo4ChDoAQgoMAA#v=onepage&q=thermo%2043a&f=false'}, + 'Thermo 450i': {'documented_lower_limit_of_detection':'1.5', 'documented_upper_limit_of_detection':'100000.0', 'documented_accuracy':'1.0%<100000.0 5.0%>=100000.0', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_450i_Manual.pdf'} + } +}, + +#------------------------------------ +#laser-induced fluorescence (LIF) + +#Fluorescence is the emission of light (luminescence) by a substance that has absorbed light or other electromagnetic radiation (excitation). In most cases, the emitted light has a longer wavelength, and therefore lower energy, than the absorbed radiation. +#Laser-induced fluorescence (LIF) is a method where fluorescence is induced by an atom or molecule being excited by the absorption of laser light. +#The emission light is detected using a photomutiplier tube. The amount of a species present in the sample is proportional to the intensity of the emission light of a specific wavelength and quantification is possible by using calibration data. +#The LIF method has been used mostly in the measurement of hydroxyl and hydroperoxyl radicals, but is also used for measurement of NO/NO2. + +#Known Interferences: Laser power modulation (laser excitation could generate OH radicals biasing the measurement). 3rd body quenching. + +#See details of method for NO/NO2 here:https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/1999GL900015 and here:http://etheses.whiterose.ac.uk/11668/1/Amy%20Foulds_Final%20MSc%20Thesis.pdf + +'laser-induced fluorescence':{'abbreviation':'LIF', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','NOx'], 'qa_accepted_parameters':['NO','NO2','NOx'], + 'instruments':{} +}, + +#------------------------------------ +#vacuum ultraviolet resonance fluorescence (VURF) + +#Fluorescence is the emission of light (luminescence) by a substance that has absorbed light or other electromagnetic radiation (excitation). In most cases, the emitted light has a longer wavelength, and therefore lower energy, than the absorbed radiation. +#Vacuum Ultraviolet Resonance Fluorescence is a method where a reasonance lamp excited by reasonance fluorescence discharge (in combiantion with an optical filter) produces photons in the ultraviolet which react with a sample gas, inducing fluorescence in the vacuum ultraviolet (UV radiaion 10nm-200nm), subsequently detected by a photomultiplier tube. +#This method can be employed for CO, with the reasonance lamp emitting UV light between 145nm-151nm, with fluorescence occurring between 160nm-190nm. + +#Known interferences: Water vapour, drifts in lamp intensity, continuum raman scattering by O2. + +'vacuum ultraviolet resonance fluorescence':{'abbreviation':'VURF', 'sampling_type':'low volume continuous', 'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], + 'instruments':{ + 'Aerolaser AL5001':{'documented_lower_limit_of_detection':'0.8', 'documented_upper_limit_of_detection':'100000.0', 'measuring_instrument_manual_name':'Aerolaser_AL5001_Specs.pdf'}, + 'Aerolaser AL5002':{'documented_lower_limit_of_detection':'0.8', 'documented_upper_limit_of_detection':'100000.0', 'measuring_instrument_manual_name':'Aerolaser_AL5002_Specs.pdf'} + } +}, + +#------------------------------------ +#cavity ringdown spectroscopy (CRDS) + +#Based on absorption spectroscopy, Cavity Ringdown Spectroscopy works by attuning light rays to the unique molecular fingerprint of the sample species. +#By measuring the time it takes the light to fade or "ring-down", you receive an accurate molecular count in milliseconds. +#The time of light decay, in essence, provides an exact, non-invasive, and rapid means to detect contaminants in the air, in gases, and even in the breath. +#The method is typically employed to measure CO and other greenhouse gases (e.g CO2, CH4, H2O). + +#Typical measurement operation: +#1. A Continuous Wave (CW) diode laser emits a directed beam of light energy through an ultra-high reflective mirror into the absorption cell (cavity). +#2. The light reflects back and forth between two ultra-high reflective mirrors multiple times, up to a total path length of 100 kilometers. +#3. Once the photodiode detector “sees” a preset level of light energy, the light source is shuttered or diverted from the cavity. +#4. On each successive pass, a small amount of light or ring-down signal emits through the second mirror and is sensed by the light detector. +#5. Once the light "rings down", the detector achieves a point of zero light energy in milliseconds, and the measurement is complete. +#6. The computer-controlled system tunes the laser off the absorption peak for the sample species to determine the τ empty value, equivalent to a zero baseline correction. It tunes back to the absorption peak to determine the τ value, dependent on the sample species concentration. +#7. The concentration of the sample species is directly calculated using Beer’s Law. The measured value constitutes an absolute measurement and is unaffected by losses outside the ring-down cavity. + +#Known interferences: Water vapour, CO2 and particulates. + +'cavity ringdown spectroscopy':{'abbreviation':'CRDS', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], 'qa_accepted_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], + 'instruments':{ + 'Picarro Envirosense 3000i':{'measured_parameters':['CO2','CH4','H2O'], 'qa_accepted_parameters':['CO2','CH4','H2O'], 'documented_precision':{'CO2':'200.0','CH4':'1.0','H2O':'100000.0'}, 'documented_span_drift':{'CO2':'150.0/day','CH4':'1.0/day', 'H2O':np.NaN}, 'instrument_further_details':'No manual, but some specifications stated here:https://gml.noaa.gov/co2conference/posters_pdf/hartnett_picarro.pdf'}, + 'Picarro G1301': {'measured_parameters':['CO2','CH4','H2O'], 'qa_accepted_parameters':['CO2','CH4','H2O'], 'documented_flow_rate':'0.4', 'instrument_manual_name':'Picarro_G1301_Manual.pdf'}, + 'Picarro G2132-i': {'measured_parameters':['CO2','CH4','H2O'], 'qa_accepted_parameters':['CO2','CH4','H2O'], 'documented_lower_limit_of_detection':{'CO2':'200000.0','CH4':'1200.0','H2O':np.NaN}, 'documented_upper_limit_of_detection':{'CO2':'2000000.0','CH4':'1500000.0','H2O':np.NaN}, 'documented_precision':{'CO2':'1000.0','CH4':'5.0','H2O':'100000.0'}, 'documented_flow_rate':'0.025', 'instrument_manual_name':'Picarro_G2132-i_Specs.pdf'}, + 'Picarro G2301': {'measured_parameters':['CO2','CH4','H2O'], 'qa_accepted_parameters':['CO2','CH4','H2O'], 'documented_upper_limit_of_detection':{'CO2':'1000000.0','CH4':'20000.0','H2O':np.NaN}, 'documented_precision':{'CO2':'25.0','CH4':'0.22','H2O':'30000.0'}, 'documented_span_drift':{'CO2':'120.0/day','CH4':'1.0/day','H2O':'100000.0/day'}, 'documented_flow_rate':'0.4', 'instrument_manual_name':'Picarro_G2301_Specs.pdf'}, + 'Picarro G2302': {'measured_parameters':['CO','CO2','H2O'], 'qa_accepted_parameters':['CO','CO2','H2O'], 'documented_upper_limit_of_detection':{'CO':'5000.0','CO2':'1000000.0','H2O':np.NaN}, 'documented_uncertainty':{'CO':'2.0','CO2':np.NaN,'H2O':np.NaN}, 'documented_precision':{'CO':'2.0','CO2':'50.0','H2O':'50000.0'}, 'documented_span_drift':{'CO':'15.0/day','CO2':'150.0/day','H2O':'100000.0/day'}, 'documented_flow_rate':'0.4', 'instrument_manual_name':'Picarro_G2302_Specs.pdf'}, + 'Picarro G2303': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'EIONET reports instrumnent as a CRDS instrument but cannot find other documentation, assume it is a CRDS instrument as other Picarro instruments are: http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/picarroG2303/view', 'measuring_assumption':True}, + 'Picarro G2401': {'measured_parameters':['CO','CO2','CH4','H2O'], 'qa_accepted_parameters':['CO','CO2','CH4','H2O'], 'documented_upper_limit_of_detection':{'CO':'5000.0','CO2':'1000000.0','CH4':'20000.0','H2O':np.NaN}, 'documented_uncertainty':{'CO':'2.0','CO2':'50.0','CH4':'1.0','H2O':np.NaN}, 'documented_precision':{'CO':'1.0','CO2':'10.0','CH4':'0.3','H2O':np.NaN}, 'documented_span_drift':{'CO':'10.0/day','CO2':'100.0/day','CH4':'1.0/day','H2O':'100000.0/day'}, 'documented_flow_rate':'0.4', 'instrument_manual_name':'Picarro_G2401_Specs.pdf'} + } +}, + +#------------------------------------ +#off-axis integrated cavity output spectroscopy (OA-ICOS) + +#CRDS has practical limitations that make it nonideal for many applications. Specifically, the resonant wavelength coupling requires subnanometer optomechanical precision and stability. +#Thus field service is impractical. In addition, resonant CRDS systems require extreme laser wavelength monitoring and control. +#These challenges can, at times, be overcome in the laboratory but with a trade-off of increased instrument cost, complexity, and robustness. +#OA-ICOS, originally developed in cooperation with scientists at Harvard University (Cambridge, MA), was created in order to overcome these limitations, while still maintaining extremely high sensitivity and precision. +#OA-ICOS uses off-axis, nonresonant alignment of the laser beam to the cavity. +#This beam alignment or trajectory is not unique and is easy to achieve, making OA-ICOS instruments orders of magnitude more robust and less sensitive to thermal changes and vibrations. As a result, OA-ICOS instruments are relatively simple to manufacture and service, inexpensive to build, and robust. +#The OA-ICOS measurement combines the advantages of CRDS with conventional high-resolution laser absorption spectroscopy by providing direct absorption measurements with optical pathlengths thousands of meters long. +#Unlike CRDS, which enables at most only limited wavelength sampling (discrete jumps between wavelengths), OA-ICOS easily allows continuous scanning of the laser wavelength and thus enables recording of fully resolved absorption spectra. +#This is a critical advantage that permits OA-ICOS to provide accurate measurements of complex and/or contaminated samples without cross-sensitivity. +#Moreover, OA-ICOS can be operated at any wavelength from the UV through the IR. As a result, instruments can target the strongest absorption lines, allowing sensitivity below 1 ppt for some gases. Furthermore, because it is an intensity measurement, only OA-ICOS can deliver several decades of linear dynamic range. + +'off-axis integrated cavity output spectroscopy':{'abbreviation':'OA-ICOS', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], 'qa_accepted_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], + 'instruments':{ + 'Los Gatos CO': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'4000.0', 'documented_precision':'0.05', 'documented_span_drift':'1.0/day', 'instrument_manual_name':'LosGatosCO_Specs.pdf'}, + 'Los Gatos GGA': {'measured_parameters':['CH4'], 'qa_accepted_parameters':['CH4'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'0.3', 'documented_accuracy':'1.0%', 'documented_span_drift':'5.0/day', 'instrument_manual_name':'LosGatosGGA_Specs.pdf'}, + 'Los Gatos N2O/CO':{'measured_parameters':['CO','N2O'], 'qa_accepted_parameters':['CO','N2O'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'4000.0', 'documented_precision':'0.3', 'documented_span_drift':'1.0/day', 'instrument_manual_name':'LosGatosN20CO_Specs.pdf'} + } +}, + +#------------------------------------ +#tunable diode laser absorption spectroscopy (TDLAS) + +#TDLAS measures the wavelength-dependent absorption of light through a gas medium. +#As the name implies, the technique usually employs a tunable-wavelength diode laser as the light source. +#When the wavelength of light matches one absorption line of a gas species present in the sample, the photodetector records a reduction in the light intensity. +#When the gas concentration is ultra-low, the induced change in transmission becomes extremely small and difficult to detect sufficiently fast. +#The sensitivity of TDLAS is significantly enhanced by modulating the current of the laser, which leads to a modulation of the wavelength and of the light intensity. +#The information about the absorption response is then recovered by demodulating the signal from the photodetector at the modulating frequency and at its second-order harmonic. +#The advantage of TDLAS over other techniques for concentration measurement is its ability to achieve very low detection limits +#Apart from concentration, it is also possible to determine the temperature, pressure, velocity and mass flux of the gas under observation + +'tunable diode laser absorption spectroscopy':{'abbreviation':'TDLAS', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], 'qa_accepted_parameters':['NO','NO2','SO2','CO','CO2','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','H20','PAN','NH3','HNO3','HCl','HF','H2S'], + 'instruments':{} +}, + +#------------------------------------ +#cavity attenuated phase shift spectroscopy (CAPS) + +#Operates on the principle that a specific species efficiently absorbs light at a known wavelength. This is the case for NO2, at 450nm. +#The degree to which the light is absorbed by a specific species is directly related to the species concentration as described by the Beer-Lambert Law (A = εLC; A = Absorbance (mol litres-1), ε = Molar absorptivity (litres mol-1 cm-1), L = mean optical path length of cell, C = species concentration). +#Emitted light in an optical cell is reflected back and forth between two mirrors, building intensity and running a very long path length. The long path length extends the “time” or “life” of the photon, thus providing ample time to measure absorbance when a species is present. +#The method is typically employed for direct measurement of NO2. + +#Typical measurement operation for NO2: +#1. The sample is drawn into the sample bulkhead, before being passed into the measurement cell. +#2. Light is emitted from a blue ultraviolet (UV) light emitting diode (LED) centered at 450 nm (a prominent absorption band for NO2). +#3. The measurement cell contains high reflectivity mirrors located at either end to provide an extensive optical path length. The optical cell resides in a temperature controlled oven. The oven raises the ambient temperature of the sample gas to 45 degrees Celsius. This mitigates the formation of moisture on the surfaces of the mirrors while also minimiSing changes in the absorption coefficient due to temperature fluctuations. +#4. The CAPS method is unique in that it applies the fundamental optical absorption law in the frequency domain, rather than using relative changes in light intensity as the primary signal. +#5. UV light from the modulating high intensity LED enters a near confocal optical cell through the rear of mirror A. The intensity of the light, as observed by a vacuum photodiode detector, which is also modulating at a slightly different frequency, located behind Mirror B, builds exponentially in the cell while the LED is ON. The opposite is true when the LED is OFF. Because both mirrors are highly reflective at 450 nm, a prominent absorption band for NO2, the light takes a considerable amount of time to plateau in the absence of the absorbing gas. +#6. When NO2 is present, the mean path length traveled by the light is significantly reduced. This has two effects on the observed intensity as measured by the detector: a) The light plateau intensity level is lower, b) The light intensity plateaus sooner. Thus, an observed phase shift from the modulating LED is detected. The phase shift is largest when measuring zero air and decreases when NO2 is present. +#7. Both the LED and the Detector are modulated ON and OFF such that the observed signal has a much lower frequency, equal to the difference between the modulated frequencies and is referred to as a beat frequency. The system hardware and software take advantage of this, as it makes it easier to post process the signal using a micro controller. The technique is known as heterodyning. +#8. The instrument translates the phase shift from the presence of absorbing gas into a concentration measurement. Typical absorption techniques of other analysers take a reference and measure value of the light intensity “level” in order to derive concentration and compensate for source drift. Using the CAPS technique the amount of phase shift remains constant for a given concentration, even if the LED drifts over time. The measurement approach offers many advantages over traditional chemiluminescence analysers, such as faster response (single gas stream), lower noise at span and more importantly greater specificity. + +#Known interferences: direct spectral interference with photochemically produced 1,2-dicarbonyl species (e.g., glyoxal, methylglyoxal) + +'cavity attenuated phase shift spectroscopy':{'abbreviation':'CAPS', 'sampling_type':'low volume continuous', 'measured_parameters':['NO','NO2'], 'qa_accepted_parameters':['NO','NO2'], + 'instruments':{ + 'Environnement SA AS32M':{'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'0.05', 'documented_accuracy':'4.0%', 'documented_zero_drift':'0.75/day', 'documented_span_drift':'1.5/day', 'instrument_manual_name':'EnvironnementSA_AS32M_Specs.pdf'}, + 'Teledyne N500': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'0.5%>=5', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.2/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Teledyne_N500_Specs.pdf'}, + 'Teledyne T500U': {'documented_lower_limit_of_detection':'0.04', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'0.5%>=5', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.1/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.9', 'instrument_manual_name':'Teledyne_T500U_Manual.pdf'} + } +}, + +#------------------------------------ +#differential optical absorption spectroscopy (DOAS) + +#The basic principle used in Differential optical absorption spectroscopy (DOAS) is absorption spectroscopy. DOAS allows the quantitative determination of multiple atmospheric trace gas concentrations by recording and evaluating the characteristic absorption structures (lines or bands) of the trace gas molecules along an absorption path of known length in the open atmosphere, following the Beer-Lambert law (I = Io e−KLC; K = molecular absorption coefficient at STP, L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). +#The wavelength of light where a distinct absorption peak occurs is determined for analyte. A wavelength on either side of the absorption peak is next determined. The intensity of a light source at wavelength is measured and then the intensity is measured again after the light passes through the analyte. The difference of the intensities is proportional to the concentration to the analyte. +#DOAS is a long path measuring technique. Measurements can be made in an optical pathway from 1 to 10 kilometers. +#The method measures the average concentration of a species along the path length, not for any single molecule. +#In the real atmosphere, multiple effects contribute to the overall attenuation of the light. In particular, aerosols and clouds scatter light and thereby reduce the intensity of the direct beam while increasing intensities measured in other directions. Also, there rarely is only one absorber relevant at a given wavelength and this also needs to be accounted for. +#The solution to this problem lies in the use of measurements at several wavelengths. Each molecule has a characteristic absorption spectrum (its spectral fingerprint) and therefore, simultaneous measurements at different wavelengths enable the separation of the contributions of the different absorbers. This is what DOAS does. +#Scattering by aerosols also needs accounting for. Their extinction cross-sections can be approximated by power laws (λ**-4 for Rayleigh scattering and λ**-1..0 for Mie scattering), the coefficients of which can be determined in the fit. The basic principle behind the separation of aerosol extinction and trace gas absorption is that the latter are identified using those parts of their absorption cross-sections that vary rapidly with wavelength. +#The more slowly varying parts of the absorption can not be separated from extinction by aerosols which is why the absorption cross-sections are often high pass filtered before use in a DOAS retrieval. +#In addition to their effect on the spectral distribution of the intensity measured, aerosols can also have a significant impact on the light path of scattered light. This has to be modelled explicitly when computing the airmass factors for the light path correction. +#The DOAS technique is characterised by the following: +#(a) measuring the transmitted light intensity over a relatively (compared to the width of an absorption band) broad spectral interval; +#(b) high‐pass filtering of the spectra to obtain a differential absorption signal and eliminating broad‐band extinction processes such as Rayleigh and Mie scattering (RS and MS); +#(c) quantitative determination of trace column densities by matching the observed spectral signatures to prerecorded (reference) spectra by, for instance, least‐squares methods. +#DOAS instruments are often divided into two main groups: passive and active ones. The active DOAS system such as longpath(LP)-systems and cavity-enhanced(CE) DOAS systems have their own light-source, whereas passive ones use the sun as their light source, e.g. MAX(Multi-axial)-DOAS. Also the moon can be used for night-time DOAS measurements, but here usually direct light measurements need to be done instead of scattered light measurements as it is the case for passive DOAS systems such as the MAX-DOAS. + +#Typical measurement operation: +#1. The positioning of the emitter and the receiver define the monitoring path. The light source in the emitter is a high-pressure xenon lamp. This type of light source radiates an almost smooth spectrum ranging from approximately 200 nm up to 500 nm, and from about 1200 to 3000 nm. Within these ranges a number of gaseous substances show specific absorption spectra. The lamp spectrum is however not perfectly smooth, but the remaining "hills" in the spectral output are being taken care of in the evaluation. +#2. The emitted light beam is directed towards the receiver, and on its way the intensity is affected by scattering and absorption in molecules and particles. +#3. To ascertain the initial intensity (Io) of the light source across the path, there are typically two approaches: (a) Use of measurements at different light paths. If it is possible to take two measurements with the same initial intensity but at different light path lengths L, the dependence on the initial intensity cancels if one looks at the ratio of the two measurements. This approach is e.g. used in zenith-sky DOAS, where a measurement at low sun (long light path through the atmosphere) is analysed with a measurement taken at high sun (short light path). (b) Use of measurements at different wavelengths. In this approach, one exploits the fact that many molecules have structured spectra and light at different wavelengths experiences different absorption strengths. If the initial intensity does not vary with wavelength, one can look at the ratio of two measurements at different wavelengths to remove the dependence on Io. This approach is often used in long-path measurements which employ a lamp. It also is one reason to call this method differential as changes in absorption are used. +#4. From the receiver the captured light is led via an opto-fibre to the analyser. The function of the fibre is only to avoid exposing the opto-analyser to dust, high humidity, temperature variations, etc. +#5. When the light reaches the analyser, it enters a spectrometer. Inside the spectrometer, a grating refracts the light into its wavelength components. The refracted light is then projected onto a rapid scanning slit in front of a photo-multiplier detector or an infrared sensitive diode, where a selected part of the spectrum is detected. The scanning slit device makes it possible to record all wavelengths separately. +#6. As the grating is moveable, any chosen part of the spectrum can be detected. The wavelength window can thus be optimised for a certain component, with respect to parameters such as sensitivity and interfering pollutants. Approximately 100 scans per second are recorded. +#7. The current from the detector is converted into digital signals by a 12 bit analogue-to-digital converter, and the signal is stored and accumulated in a multi-channel register. The detected spectrum is typically 40 nm wide in the UV range and approximately twice as wide in the IR range. Each scan is digitised into 1000 points. +#8. Each pollutant is monitored during a time period entered by the operator. When the data accumulation is finished, the evaluation process is started. At the same time the next data accumulation period starts. + +#Known interferences: Interference by miscellaneous atmospheric constituents. Heavy rain and fog, and even high humidity. Atmospheric turbulence, such as that from thermal-induced effects, can distort reflections. Anything that interrupts the path of the laser will cause some interference (i.e., animals, cars, planes, etc.). +#Can also measure size-distributed PM: https://www.scirp.org/journal/paperinformation.aspx?paperid=44237 + +'differential optical absorption spectroscopy':{'abbreviation':'DOAS', 'sampling_type':'remote', 'measured_parameters':['O3','NO','NO2','NOx','CO','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','PM10','PM2.5','PM1'], 'qa_accepted_parameters':['O3','NO','NO2','NOx','CO','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','PM10','PM2.5','PM1'], + 'instruments':{ + 'Environnement SA SANOA':{'measured_parameters':['NO','NO2','NOx','O3','SO2','NH3'], 'qa_accepted_parameters':['NO','NO2','NOx','O3','SO2','NH3'], 'documented_lower_limit_of_detection':{'NO':'1.5','NO2':'0.6','NOx':'1.5','O3':'0.6','SO2':'0.2','NH3':'3.5'}, 'documented_accuracy':'1.0%', 'instrument_manual_name':'EnvironnementSA_SANOA_Specs.pdf'}, + 'miniDOAS': {'measured_parameters':['NO','SO2','NH3'], 'qa_accepted_parameters':['NO','SO2','NH3'], 'documented_lower_limit_of_detection':{'NO':'0.641','SO2':'0.3','NH3':'0.282'}, 'instrument_further_details':'Details found online: https://amt.copernicus.org/articles/9/2721/2016/amt-9-2721-2016.pdf'}, + 'OPSIS AR500': { 'instrument_manual_name':'OPSIS_AR500_Manual.pdf'}, + 'OPSIS AR550': { 'instrument_manual_name':'OPSIS_AR500_Manual.pdf'}, + 'OPSIS AR600': { 'instrument_manual_name':'OPSIS_AR500_Manual.pdf'}, + 'OPSIS AR650': { 'instrument_manual_name':'OPSIS_AR500_Manual.pdf'}, + 'Thermo DOAS 2000': {'measured_parameters':['O3','NO2','SO2','HCHO','BENZENE','TOLUENE'], 'qa_accepted_parameters':['O3','NO2','SO2','HCHO','BENZENE','TOLUENE'], 'documented_precision':{'O3':'4.8','NO2':'4.1','SO2':'0.6','HCHO':'1.4','BENZENE':np.NaN,'TOLUENE':np.NaN}, 'instrument_further_details':'Details found online:https://doi.pangaea.de/10.1594/PANGAEA.884310'} + } +}, +#------------------------------------ +#electrochemical membrane diffusion (EMD) + +#Methodology developed specifically for measurement of NH3: https://www.sciencedirect.com/science/article/pii/S0003267003012650?via%3Dihub +#Gas is sampled in a sampler comprising two opposite channels separated by a gas permeable, water repellent polypropylene membrane. +#Subsequently, the acid sample solution is pumped into a selector where an alkaline solution is added to ionize all sampled ambient acid gasses, resulting in an enhanced selectivity. +#In the selector, the ammonia can diffuse through a second membrane into a purified water stream where an electrolyte conductivity sensor quantifies the resulting ammonium concentration. +#The realized system is shown to be selective enough not to be influenced by normal ambient carbon dioxide concentrations. +#Experiments with a gas flow of 3 ml/min, containing ammonia concentrations ranging from 9.8 to 0.3 ppm in a nitrogen carrier flow, into a 15 μl/min sample solution flow and finally into a 5 μl/min purified water stream have been carried out and show that the system is sensitive to ammonia concentration below 1 ppmv. + +#Known interferences: CO2 + +#See details of method here:https://www.sciencedirect.com/science/article/pii/S0003267003012650?via%3Dihub + +'electrochemical membrane diffusion': {'abbreviation':'EMD', 'sampling_type':'low volume continuous', 'measured_parameters':['NH3','HNO3'], 'qa_accepted_parameters':['NH3','HNO3'], + 'instruments':{} +}, + +#------------------------------------ +#photoacoustic spectroscopy (PS) + +#Gaseous samples are continuously drawn through a measurement cell, where they are interrogated spectroscopically with the output radiation of a carbon dioxide/tunable quantum cascade laser. +#This is used in conjunction with a highly sensitive acoustic detector to measure trace gas concentrations. Laser tuning is accomplished using proprietary algorithms that do not require the use of a spectrometer or other wavelength measurement device. +#The laser is tuned to a known gaseous absorption line and passed through a cell containing the gas sample. If the trace gas species is present, the gas sample will be slightly heated. This heating can be measured very accurately and linearly by microphones in the cell and the amplitude of the electrical signal from the microphones correlate with the trace gas concentration. +#If there is no trace gas present, there will be no signal from the microphone. This is, therefore, the highly desirable "zero-background measurement". +#Traditional spectroscopic methods measure the total power of the laser beam with and without a sample in the path. For very weak attenuations that result from trace gas concentrations, this process requires taking the difference of two large numbers, each with a finite uncertainty, to compute a small real number. This complication is avoided using this method. +#This method has been used to measure NH3. + +'photoacoustic spectroscopy':{'abbreviation':'PS', 'sampling_type':'low volume continuous', 'measured_parameters':['NH3','HNO3'], 'qa_accepted_parameters':['NH3','HNO3'], + 'instruments':{ + 'Pranalytica Nitrolux100': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'300.0', 'documented_precision':'0.1/10%', 'documented_accuracy':'0.1/10%', 'documented_zero_drift':'0.1/week', 'documented_span_drift':'10.0%/month', 'documented_flow_rate':'1.6', 'instrument_manual_name':'Pranalytica_Nitrolux_Specs.pdf,Pranalytica_Nitrolux100_Specs.pdf'}, + 'Pranalytica Nitrolux200': {'documented_lower_limit_of_detection':'0.2', 'documented_upper_limit_of_detection':'500.0', 'documented_precision':'0.2/10%', 'documented_accuracy':'0.2/10%', 'documented_zero_drift':'0.2/week', 'documented_span_drift':'10.0%/month', 'documented_flow_rate':'1.6', 'instrument_manual_name':'Pranalytica_Nitrolux_Specs.pdf',}, + 'Pranalytica Nitrolux1000':{'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'2000.0', 'documented_precision':'1.0/10%', 'documented_accuracy':'1.0/10%', 'documented_zero_drift':'1.0/week', 'documented_span_drift':'10.0%/month', 'documented_flow_rate':'1.6', 'instrument_manual_name':'Pranalytica_Nitrolux_Specs.pdf'} + } +}, + +#------------------------------------ +#non-dispersive infrared absorption (luft) (NDIR-L) + +#Operates on the principle that a specific species efficiently absorbs IR light at a known wavelength in the IR range. This is the case for CO, at 4.7um +#The degree to which the IR light is absorbed by a specific species is directly related to the species concentration as described by the Beer-Lambert Law (I/Io = e−KLC; K = molecular absorption coefficient at STP, L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). + +#Typical measurement operation for CO: +#1. The sample is drawn into the through the sample bulkhead +#2. IR radiation from a IR source (at 4.7 um) is passed through a rotating shutter creating a series of pulses. +#3. These pulses are split simultaneously into 2 measurement cells. One cell contains the sample gas, termed the sample stream (I), and cell contains a non-absorbing gas at the specific wavelength (i.e N2), termed the reference stream (Io). +#4. Both the pulses then exit the cells and fall on a IR photo-detector. +#5. The intensities of 4.7 um light transmitted through the sample (I) and CO-free reference beams (Io) are related to the concentration (C) of CO in the sample gas stream according to the Beer-Lambert Law. +#6. The analyser’s microprocessor calculates the absolute concentration in molecules cm-3, and is then converted to a mixing ratio using in-instrument measured sample temperature and pressure. + +#Known Interferences: +#Water vapour and CO2 + +'non-dispersive infrared absorption (luft)':{'abbreviation':'NDIR-L', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4'], 'qa_accepted_parameters':['CO','CH4'], + 'instruments':{ + 'Beckman 866': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Bendix 8501-5CA': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Fuji ZRC': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume luft):https://library.wmo.int/doc_num.php?explnum_id=10622', 'measuring_assumption':True}, + 'Horiba 300E': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Horiba 300SE': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Horiba AQM10': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Horiba AQM11': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Horiba AQM12': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Massachusetts CO1':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'cannot find any information. AQS states it as non-dispersive infrared absorption. Assume this is correct, and assume luft type', 'measuring_assumption':True}, + 'MSA 202S': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Signal 418': {'measured_parameters':['CO','CH4','CO2','NH3','NO','SO2','H2O'], 'qa_accepted_parameters':['CO','CH4','CO2','NH3','NO','SO2','H2O'], 'documented_lower_limit_of_detection':{'CO':'1000.0','CH4':'2000.0','CO2':'300.0','NH3':'1000.0','NO':'5000.0','SO2':'2000.0','H2O':'5000.0'}, 'documented_precision':'0.1%', 'documented_accuracy':'0.5%', 'documented_zero_drift':'0.5%/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.2-2.0', 'instrument_manual_name':'Signal_418_Specs.pdf'}, + 'Teledyne ML8310': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (luft) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Teledyne ML8830': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume luft):https://books.google.es/books?id=7eL1Rd8hB-0C&pg=PA418&lpg=PA418&dq=monitor+labs+8830&source=bl&ots=GlI29t_UB9&sig=uqlixhqiWdhaQf8BvZ5GQmu_1gw&hl=en&sa=X&ved=0ahUKEwi2rNOCweLbAhVDrRQKHVf7AsoQ6AEIVDAF#v=onepage&q=monitor%20labs%208830&f=false', 'measuring_assumption':True}, + 'Teledyne ML8831': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume luft):http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML8831/view', 'measuring_assumption':True} + } +}, +#------------------------------------ +#non-dispersive infrared absorption (gas-filter correlation) (NDIR-GFC) + +#Operates on the principle that a specific species efficiently absorbs IR light at a known wavelength in the IR range. This is the case for CO, at 4.7um +#The degree to which the IR light is absorbed by a specific species is directly related to the species concentration as described by the Beer-Lambert Law (I/Io = e−KLC; K = molecular absorption coefficient at STP, L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). +#The methodology also applies the gas-filter correlation technique. This is applied as water vapour and CO2 absorb light at 4.7 um as well as CO, and ensures measurements are specific for CO. + +#Typical measurement operation for CO: +#1. The sample is drawn into the through the sample bulkhead +#2. IR radiation from a IR source (at 4.7 um) is passed through a multi-pass cell length with sample gas. The sample cell uses mirrors at each end to reflect the IR beam back and forth through the sample gas a number of times. The total length that the reflected light travels is directly related to the intended sensitivity of the instrument. The lower the concentrations the instrument is designed to detect, the longer the light path must be in order to create detectable levels of attenuation. +#A gas-filter correlation wheel is combined with this system. This wheel contains three parts to increase measurement accuracy: CO, N2 and the mask: +# The CO window contains saturation (40 %) of CO which acts as a reference beam – absorbing a known amount of light. +# The N2 window, containing 100 % N2, does not absorb IR at 4.7 um at all and is used during normal CO measurement. +# The mask totally blocks the light source and is used to determine background signals, the strength of other signals relative to each other and the background. +#3. The IR source is passed through the rotating filter wheel before entering the multi-pass cell: +# When the light beam is intercepted by the CO portion of the wheel, the carbon monoxide, which is at relatively high concentration, absorbs all wavelengths that are co-specific, creating and emanating light beam that is “CO blind”. This “optically scrubbed” portion of the beam is designated the Reference beam (Io). +# The nitrogen-intercepted portion of the beam, which is “CO sensitive”, is designated the sample beam (I). +# In the absence of CO no attenuation of the Io and I portion of the beam will occur. +# Species other than CO will cause an equal attenuation of both I and Io portions of the beam. +# If CO is present in the air being sampled, then the beam portion generated by the CO side of the wheel will experience no attenuation, but the beam portion generated by the N2 portion of the wheel will be attenuated to the degree dictated by the level of CO concentration. +# When the light beam is intercepted by the mask, this is labelled the "dark portion". This provides a zero light reference point to compensate for the "dark current" of the detector. +#4. A band pass filter is fitted on the exit of the sample cell, allowing only 4.7 um wavelength light to pass. +#5. The infrared radiation then exits the optical cell and falls on an IR photo-detector. +#6. The intensities of 4.7 um light transmitted through the sample (I) and CO-free reference beams (Io) are related to the concentration (C) of CO in the sample gas stream according to the Beer-Lambert Law. +#7. The analyser's microprocessor records the imbalance between the I and Io beams portions and performs a data linearisation, calculating the absolute concentration in molecules cm-3, and is then converted to a mixing ratio using in-instrument measured sample temperature and pressure. + +#Known Interferences: +#Water vapour and CO2 + +'non-dispersive infrared absorption (gas-filter correlation)':{'abbreviation':'NDIR-GFC', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4'], 'qa_accepted_parameters':['CO','CH4'], + 'instruments':{ + 'Airpointer-CO': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'100.0', 'documented_accuracy':'1.0%<1000000.0', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'1.0%>=10000.0/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Airpointer_Specs.pdf'}, + 'Dasibi 3003': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Dasibi 3008': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'100.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'100.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'200.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Dasibi_3008_Manual.pdf'}, + 'DKK-TOA GFC-311E': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'400.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'2.0%/day', 'instrument_manual_name':'DKK-TOA_GFC-311E_Specs.pdf'}, + 'Ecotech EC9830T': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'20.0', 'documented_upper_limit_of_detection':'20000.0', 'documented_precision':'20/0.1%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'50.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Ecotech_EC9830T_Specs.pdf'}, + 'Ecotech Serinus30': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'200000.0', 'documented_precision':'20/0.1%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Ecotech_Serinus30_Manual.pdf'}, + 'Environnement SA CO10M':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':':No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation, as latest version of instrument uses it):http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/enviroCO10M/view', 'measuring_assumption':True}, + 'Environnement SA CO11M':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':':No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation, as next version of instrument uses it):http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf', 'measuring_assumption':True}, + 'Environnement SA CO12e':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'50.0', 'documented_upper_limit_of_detection':'300000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'200.0/week', 'documented_span_drift':'0.5%/week', 'documented_flow_rate':'1.0', 'instrument_manual_name':'EnvironnementSA_CO12e_Specs.pdf'}, + 'Environnement SA CO12M':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'200000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'500.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'EnvironnementSA_CO12M_Specs.pdf'}, + 'Maihak Unor 6N': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation):https://books.google.es/books?id=ZDb3koqwApMC&pg=PA468&lpg=PA468&dq=maihak+unor+6n&source=bl&ots=EP38JON-AR&sig=H6eppHv6VGHfbrPaqjOBREST0mE&hl=en&sa=X&ved=2ahUKEwiLmbzS1O_fAhXiShUIHQBqArsQ6AEwC3oECAEQAQ#v=onepage&q=maihak%20unor%206n&f=false', 'measuring_assumption':True}, + 'Maihak Unor 610': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation):https://books.google.es/books?id=0YV9hxFUP1QC&pg=PA229&lpg=PA229&dq=MAIHAK+UNOR+610&source=bl&ots=KEbg6PRHgo&sig=ACfU3U0WxRqWX8UDk8K5HrTnSXQI5QxkSA&hl=en&sa=X&ved=2ahUKEwiMg6LQh7XwAhWrRRUIHVYbBp4Q6AEwEXoECA8QAw#v=onepage&q=MAIHAK%20UNOR%20610&f=false', 'measuring_assumption':True}, + 'Philips K50093': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation):https://dergipark.org.tr/tr/download/article-file/1329767', 'measuring_assumption':True}, + 'Philips K50109': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation):https://www.isiaq.org/docs/papers/472.pdf'}, + 'SIR S-5006': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'200000.0', 'documented_precision':'100.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'10.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'SIR_S-5006_Specs.pdf'}, + 'Teledyne 300': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation, as other instruments with very similar codes use it):http://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf', 'measuring_assumption':True}, + 'Teledyne 300E': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'0.5%/200', 'documented_accuracy':'1.0%', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'100.0/0.5%/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_300E_Manual.pdf'}, + 'Teledyne 300EM': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'200.0', 'documented_upper_limit_of_detection':'5000000.0', 'documented_precision':'1.0%/1000', 'documented_accuracy':'1.0%', 'documented_zero_drift':'500.0/day', 'documented_span_drift':'500.0', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_300E_Manual.pdf'}, + 'Teledyne 300EU': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'20.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'20.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'1.8', 'instrument_manual_name':'Teledyne_300EU_Addendum.pdf'}, + 'Teledyne ML8930': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume gas-filter correlation): http://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/ML8930/view?facet=HTML+Representation', 'measuring_assumption':True}, + 'Teledyne ML9830': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://twobtech.com/pdf/211%20FEM%20Modification_June2018.pdf'}, + 'Teledyne ML9830B': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://twobtech.com/pdf/211%20FEM%20Modification_June2018.pdf'}, + 'Teledyne T300': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'0.5%/200', 'documented_accuracy':'1.0%', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'0.5%/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_T300_Manual.pdf'}, + 'Teledyne T300M': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'200.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'1.0%/1000', 'documented_accuracy':'1.0%', 'documented_zero_drift':'500.0/day', 'documented_span_drift':'500.0/day', 'documented_flow_rate':'0.8', 'instrument_manual_name':'Teledyne_T300_Manual.pdf'}, + 'Teledyne T300U': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'20.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'0.5%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'20.0/day', 'documented_span_drift':'0.5%>=500.0/day', 'documented_flow_rate':'1.8', 'instrument_manual_name':'Teledyne_T300U_Addendum.pdf'}, + 'Thermo 48': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://books.google.es/books?id=yCDGFlP3toUC&pg=PA248&lpg=PA248&dq=HORIBA+AQM-10&source=bl&ots=-uIdMsd0Yg&sig=U34lJHqy1fXno_AwV36rZIKCwuE&hl=en&sa=X&ved=0ahUKEwjvlL2IxuLbAhUJthQKHZCQB90Q6AEIQjAC#v=onepage&q=HORIBA%20AQM-10&f=false'}, + 'Thermo 48C': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'10000000.0', 'documented_precision':'100.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5-2.0', 'instrument_manual_name':'Thermo_48C_Specs.pdf'}, + 'Thermo 48C-TL': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:http://www.broward.org/Environment/AirQuality/AirMonitoring/Pages/AmbientAirMonitoringInstruments.aspx'}, + 'Thermo 48i': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'10000000.0', 'documented_accuracy':'1.0%<1000000.0 2.5%>=1000000.0', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'1.0', 'instrument_manual_name':'Thermo_48i_Manual.pdf'}, + 'Thermo 48i-TLE': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'40.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_accuracy':'1.0%/40.0', 'documented_zero_drift':'100.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.5', 'instrument_manual_name':'Thermo_48i-TLE_Manual.pdf'}, + 'Thermo 48s': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://csl.noaa.gov/groups/csl7/measurements/2000TexAQS/LaPorte/datainfo.html'}, + 'Thermo 48W': {'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (gas-filter correlation) here:https://www.rivm.nl/bibliotheek/rapporten/725601007.pdf'} + } +}, + +#------------------------------------ +#non-dispersive infrared absorption (cross-flow modulation) (NDIR-CFM) + +#Operates on the principle that a specific species efficiently absorbs IR light at a known wavelength in the IR range. This is the case for CO, at 4.7um. +#The degree to which the IR light is absorbed by a specific species is directly related to the species concentration as described by the Beer-Lambert Law (I/Io = e−KLC; K = molecular absorption coefficient at STP, L = optical path length of cell, C = species concentration , I = light intensity of sample gas, Io = light intensity of sample without measured species (reference gas) ). +#The methodology also applies the cross-flow modulation technique. This is applied as water vapour and CO2 absorb light at 4.7 um as well as CO, and ensures measurements are specific for CO. + +#Typical measurement operation for CO: +#1. The sample is drawn into the through the sample bulkhead +#2. IR radiation from a IR source (at 4.7 um) is passed through a measurement cell. +#3. Fixed amounts of the sample gas (I) and the reference gas (Io) are injected alternately into the measurement cell (cross-flow modulation). This has the advantage over the gas-filter correlation technique that, in principle, when analyzing small amounts of gas there is no generation of zero-drift. An additional advantage is that the elimination of rotary sectors precludes the need for optical adjustment. These features assure greatly improved stability over long periods of measurement. The reference gas is generated by purging the sample through an oxidation process, where an oxidizing catalyst burns the CO to CO2. These features eliminate interference from other elements, resulting in highly accurate measurements. +#4. The infrared radiation then exits the optical cell and falls on an IR photo-detector. +#5. The intensities of 4.7 um light transmitted through the sample (I) and CO-free reference beams (Io) are related to the concentration (C) of CO in the sample gas stream according to the Beer-Lambert Law. +#6. The analyzer’s microprocessor calculates the absolute concentration in molecules cm-3, and is then converted to a mixing ratio using in-instrument measured sample temperature and pressure. + +#Known Interferences: +#Water vapour and CO2 + +'non-dispersive infrared absorption (cross-flow modulation)':{'abbreviation':'NDIR-CFM', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4'], 'qa_accepted_parameters':['CO','CH4'], + 'instruments':{ + 'Horiba APMA300':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume cross-flow modulation): https://books.google.es/books?id=qmWXBwAAQBAJ&pg=PA88&lpg=PA88&dq=horiba+apna+300&source=bl&ots=dBQJ0TEai1&sig=plLm6SAUIZwuIhy37JzI8nZXccQ&hl=en&sa=X&ved=2ahUKEwihxOS9uvDfAhWGnhQKHYzoAPcQ6AEwCHoECAIQAQ#v=onepage&q=horiba%20apna%20300&f=false', 'measuring_assumption':True}, + 'Horiba APMA350':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption (cross-flow modulation) here: http://www.wseas.us/e-library/conferences/2009/timisoara/SSE2/SSE2-11.pdf'}, + 'Horiba APMA360':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'20.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'20.0/day', 'documented_span_drift':'20.0/day', 'documented_flow_rate':'1.5', 'instrument_manual_name':'Horiba_APMA360_Specs.pdf'}, + 'Horiba APMA370':{'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], 'documented_lower_limit_of_detection':'20.0', 'documented_upper_limit_of_detection':'100000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_zero_drift':'20.0/day', 'documented_span_drift':'20.0/day', 'documented_flow_rate':'1.5', 'instrument_manual_name':'Horiba_APMA370_Manual.pdf'}, + 'Horiba GA-360S':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses non-dispersive infrared absorption here (assume cross-flow modulation): https://acp.copernicus.org/articles/8/3867/2008/acp-8-3867-2008.pdf', 'measuring_assumption':True} + + } +}, + +#------------------------------------ +#dual isotope fluorescence (DIF) + +#This method is an adaption of non-dispersive infrared absorption for the measurement of CO. +#A broadband of infrared source is used to stimulate fluorescence of C16O and C18O, contained in a sealed cell. +#The stimulated radiation is passed first through a filter that alternately passes radiation from only one of the isotopic sources and is then passed through the sample cell to a solid state detector. +#Because almost all atmospheric CO consists of the C16O isotope, only radiation produced by the C16O source will be absorbed by the CO in the sample. +#The radiation produced by the C18O source is used as a reference beam to account for interference with H2O, or other interferants. + +#Known Interferences: +#Water vapour and CO2 + +#See further details: https://books.google.es/books?id=V0oEzMp7axAC&pg=PA385&lpg=PA385&dq=dual+isotope+fluorescence+carbon+monoxide&source=bl&ots=azm5b16AqC&sig=pDZOFxw9LqZxQMsW8wOSxKv1YSE&hl=en&sa=X&ved=0ahUKEwiR7o2iyOLbAhVEtRQKHSFECGEQ6AEINjAB#v=onepage&q=dual%20isotope%20fluorescence%20carbon%20monoxide&f=false + +'dual isotope fluorescence':{'abbreviation':'DIF', 'sampling_type':'low volume continuous', 'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], + 'instruments':{} +}, + +#------------------------------------ +#fourier transform infrared spectroscopy (FTIR) + +#Fourier Transform Infrared Spectroscopy (FTIR) is an analytical technique used to identify organic (and in some cases inorganic) materials. +#This technique measures the absorption of infrared radiation by the sample material versus wavelength. +#The infrared absorption bands identify molecular components and structures. +#When a material is irradiated with infrared radiation, absorbed IR radiation usually excites molecules into a higher vibrational state. +#The wavelength of light absorbed by a particular molecule is a function of the energy difference between the at-rest and excited vibrational states. +#The wavelengths that are absorbed by the sample are characteristic of its molecular structure. +#The FTIR spectrometer uses an interferometer to modulate the wavelength from a broadband infrared source. +#A detector measures the intensity of transmitted or reflected light as a function of its wavelength. +#The signal obtained from the detector is an interferogram, which must be analyzed with a computer using Fourier transforms to obtain a single-beam infrared spectrum. +#The FTIR spectra are usually presented as plots of intensity versus wavenumber (in cm-1). Wavenumber is the reciprocal of the wavelength. +#The intensity can be plotted as the percentage of light transmittance or absorbance at each wavenumber. + +'fourier transform infrared spectroscopy':{'abbreviation':'FTIR', 'sampling_type':'low volume continuous', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{ + 'Ecotech Spectronus':{'measured_parameters':['CO2','CH4','N2O','CO'], 'qa_accepted_parameters':['CO2','CH4','N2O','CO'], 'documented_precision':{'CO2':'40.0','CH4':'0.2','N2O':'0.06','CO':'0.2'}, 'documented_accuracy':'0.1%', 'documented_flow_rate':'1.0-1.5', 'instrument_manual_name':'Ecotech_Spectronus_Manual.pdf'} + } +}, + +#------------------------------------ +#gas chromatography (GC) + +#Gas chromatography (GC) is a method used for separating and analysing compounds that can be vaporized without decomposition. +#A sample solution is injected into a instrument, entering a gas stream which transports the sample (mobile phase) into a separation tube known as the "column". +#The mobile phase is a carrier gas, usually an inert gas such as helium or an unreactive gas such as nitrogen. Helium remains the most commonly used carrier gas in about 90% of instruments although hydrogen is preferred for improved separations. +#The column consists of a microscopic layer of liquid or polymer on an inert solid support a microscopic layer of liquid or polymer on an inert solid support (stationary phase), inside a piece of glass or metal tubing, placed inside a piece of glass or metal tubing. +#Once inside the column, the gaseous compounds being analysed interact with the walls of the column coated with a stationary phase. This causes each compound to elute at a different time, known as the retention time of the compound. +#The comparison of retention times is what gives GC its analytical usefulness. +#If greater separation of compounds is required, multiple distinct columns can be used for this purpose. + +#Almost all methods involving GC are typically paired with a detector of some description to measure the GC separated components. +#These detectors are various in number, and are outlined in detail below. +#Typically GC-detector analysis is used for the separation of short lived hydrocarbon species. + +#Typically sample processing is undertaken before the passing of samples into the GC. +#Typically this emcompasses the preconcentration, or passing samples through sorbent traps. + +#If no other information is given, it is assumed all GC-detector analysis is done via injection and do not operate online (i.e. not continuously). + +#------------------------------------ +#gas chromatography - electron capture detection (GC-ECD) + +#The Electron Capture Detector (ECD) is a selective detector for electro-negative compounds, especially halogens. +#A beta-ray radio active source which can ionize the carrier gas is located in the detector. +#A current is produced between two electrodes in the detector supplied with a potential difference and this is monitored as a continuous background current. +#When there are electro-negative components present in the carrier gas, the background current is reduced because these components capture electrons. +#This change in the background current is registered as 'holes' in the background. +#Since it concerns very small holes, the background current should not be too high. +#Therefore the (linear) dynamic range of the ECD is often limited. + +'gas chromatography - electron capture detection': {'abbreviation':'GC-ECD', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - flame ionisation detection (GC-FID) + +#Flame ionisation detection operates in the exact same way as it does as a standalone method, only in this instance coupled to a GC. +#It is based on the principle of the generation of an electrical current that is proportional to the rate of ion formation, dependent on the concentrations of species in the sample gas. + +#A limitation of GC-FID is that the retention time is merely characteristic of a compound and certainly not adjudicative or confirmatory of the specificity of that compound. +#This means a peak at a given retention time is not a unique qualitative measure (to the exclusion of every other compound in the universe). + +'gas chromatography - flame ionisation detection':{'abbreviation':'GC-FID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{ + 'Nira Venus 301':{'sampling_type':'continuous injection', 'measured_parameters':['CH4','NMVOC','VOC','NMHC','HC'], 'qa_accepted_parameters':['CH4','NMVOC','VOC','NMHC','HC'], 'documented_lower_limit_of_detection':'200.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_precision':'1.0%', 'documented_accuracy':'1.0%', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.35', 'instrument_manual_name':'NiraVenus301_Specs.pdf'} + } +}, + +#------------------------------------ +#gas chromatography - photoionisation detection (GC-PID) + +#Gas Chromatography - Photoionisation Detection (GC-PID) is a technique used to analyse a wide range of aromatic hydrocarbons and other organic compounds. +#A typical application is the analysis of hydrocarbon pollution of water. The PID uses ultraviolet light to ionize the components exiting the column. +#The ions are collected by electrodes and the current generated measures the concentration. +#As common with other GC techniques, a carrier gas is required with low Water and Oxygen impurities since Water and Oxygen can interact with the stationary phase and cause significant problems such as high baseline noise and column bleed in the output gas chromatogram which both reduces the analyser sensitivity and decreases column lifetime. +#Helium and Nitrogen are normally used. +#A make-up gas is used in GC-PID at the exit of the column to increase the flow rate into the detector. +#The routine calibration of the analyser using a calibration mixture is common. + +'gas chromatography - photoionisation detection':{'abbreviation':'GC-PID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - mercuric oxide reduction detection (GC-HgO) + +#Mercuric oxide (HgO) reduction is a detection method available for hydrogen, carbon monoxide, and other reducing gases. +#It uses mercuric oxide reaction tube and a mercury lamp in a heated UV detector cell. +#The reaction tube is heated to 260-300oC. +#Located immediately downstream of the reaction tube, the UV detector cell is heated to 170degC. +#The UV detector cell is equipped with a mercury lamp and a UV photodiode. When a reducing gas such as carbon monoxide elutes from the GC column, it reacts with the HgO to form gaseous mercury vapor, which is then swept into the UV cell. +#The gaseous mercury absorbs the UV light from the mercury lamp as it flows through the cell. The change in transmittance is converted by the data system into an absorbance output, which is linearly proportional to the amount of reducing gas. +#More information here: https://srigc.com/cn/downloads/41/RGD.pdf + +'gas chromatography - mercuric oxide reduction detection':{'abbreviation':'GC-HgO', 'sampling_type':'injection', 'measured_parameters':['CO'], 'qa_accepted_parameters':['CO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - dual flame ionisation detection (GC-DFID) + +#To limit the main limitation of GC-FID, i.e. lack of specificity, it is possible to add another GC column and analyse the sample concurrently on both columns. +#This can be done by adding a y-splitter that will take the single injection made into the injector port and divide the sample into two different pathways with one part of the sample going to one column for analysis and the second part going to another column for analysis. +#The two different columns are given two different stationary phases, which provides different separation of the analytes (both in terms of retention time and possibly even eluting order). +#This different eluting order and different retention times only minimises, but does not entirely eliminate the possibility of co-elution as again, the resolving (separating) power of the method is only determined by one non-unique measure which is the two retention times. +#Even though there is a change in the eluting order potentially and the retention times are different based upon the stationary phase composition, again, remains the basic limitation of GC-FID remains in that a retention time is merely characteristic of the analyte, but is certainly not confirmatory. +#With dual detectors, the concentration of the analyte(s) of interest is determined from two calibration curves, and can serve as quantitative confirmation. + +'gas chromatography - dual flame ionisation detection':{'abbreviation':'GC-DFID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - fourier transform infrared spectroscopy (GC-FTIR) + +#gas chromatography separation followed by fourier transform infrared spectroscopy + +'gas chromatography - fourier transform infrared spectroscopy':{'abbreviation':'GC-FTIR', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - mass spectrometry (GC-MS) + +#One of the most common detector types is a mass spectrometer. +#Mass spectrometry is the study of matter through the formation of gas-phase ions (with or without fragmentation) that are detected and characterised by their mass to charge ratios (m/z) and relative abundances. +#The technique basically studies the effect of ionizing energy on molecules. It depends upon chemical reactions in the gas phase in which sample molecules are consumed during the formation of ionic and neutral species. +#A mass spectrometer generates multiple ions from the sample under investigation, it then separates them according to their specific mass-to-charge ratio (m/z), and then records the relative abundance of each ion type. +#The first step in the mass spectrometric analysis of compounds is the production of gas phase ions of the compound, basically by electron ionization. +#This molecular ion undergoes fragmentation. Each primary product ion derived from the molecular ion, in turn, undergoes fragmentation, and so on. +#The ions are separated in the mass spectrometer according to their mass-to-charge ratio, and are detected in proportion to their abundance. +#A mass spectrum of the molecule is thus produced. It displays the result in the form of a plot of ion abundance versus mass-to-charge ratio. +#Ions provide information concerning the nature and the structure of their precursor molecule. +#In the spectrum of a pure compound, the molecular ion, if present, appears at the highest value of m/z (followed by ions containing heavier isotopes) and gives the molecular mass of the compound. + +#There are a variety of different mass spectrometer types (almost never reported in observational data). +#The most important difference among various mass spectrometers is the type of the analyser. +#It is a fundamental characteristic of an instrument, and can not be modified. +#The main analyzer types are: quadrupole, ion trap, time-of-flight (TOF), sector and Fourier-transform (FT) type instruments. +#Some analysers are inherently capable for MS–MS (like ion trap or FT-MS), some others can be connected in tandem, offering MS–MS capabilities. +#The most common analyzers (quadrupoles, sectors and in most respect ion traps) pass one ion (a given m / z ratio) at any one time, and filter out all other ions (which are lost for analysis). + +#To obtain a mass spectrum, the analyser scans through the mass range of interest. +#The consequence of this scanning is, that the sensitivity of detecting a given ion is much less compared to the case, when only a given mass is monitored (when the analyser stands still to pass only one ion). +#These analyzers can be used in two ways: Either monitoring a given ion (with full sensitivity), or scanning the mass range (with loss of sensitivity) to obtain a mass spectrum. +#Other analyzer types (TOF, FT-MS, in some respect ion traps and special sector instruments) can simultaneously detect all ions in a mass range, so there is no need for scanning. +#In this case the full sensitivity is obtained irrespectively if one ion or a full mass spectrum is studied. +#At present quadrupole-type instruments are most widespread. These are simple to use, cheap and rugged, good for basic GC–MS studies and for quantitation. + +#In many instances the phrase 'mass selective detector' or 'MSD' is be used in place of mass spectrometer. +#However, there is no fundamental difference between mass selective detection and mass spectrometry; the name 'mass selective detection' is part of a marketing strategy, and implies a simple, relatively cheap instrument. +#Therefore all reported instances of MSD are grouped under mass spectrometry. + +#Determination of Hg: https://www.atmos-meas-tech.net/9/2195/2016/amt-9-2195-2016.pdf +#Determination of Ni: https://www.longdom.org/open-access/gcms-determination-of-the-isotope-distribution-of-nickel-2157-7064-1000397.pdf +#Determination of OC: https://assets.thermofisher.com/TFS-Assets/CMD/Application-Notes/ANCCSGCTOCAN_0311.pdf + +'gas chromatography - mass spectrometry':{'abbreviation':'GC-MS', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Hg-GEM','Hg-GOM','Hg-TGM','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#pyrolysis - gas chromatography - mass spectrometry (Py-GC-MS) + +#For the measurement of black carbon, GCMS can be used following pyrolysis. +#See more information here: https://www.sciencedirect.com/science/article/abs/pii/S014663800800185X and https://digital.csic.es/handle/10261/55429 + +'pyrolysis - gas chromatography - mass spectrometry':{'abbreviation':'Py-GC-MS', 'sampling_type':'injection', 'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - direct temperature resolved mass spectrometry (GC-DTMS) + +#Direct Temperature Resolved Mass Spectrometry comprises of thermal depolymerization of compounds into smaller fragments that are either immediately analyzed by mass spectrometry. +#This technique has the advantage that compounds with high boiling points are prevented from condensation on 'cold' surfaces. +#The method is capable of detecting both extractable and non-extractable more complex organic fractions. +#It is typically used to give detailed information about a broad range of organic compounds such as lipids, waxes, terpenoids, polynuclear aromatic compounds, oligosaccharides, small peptides, protein fragments, and larger more condensed polymeric structures resulting from charred foodstuffs. + +'gas chromatography - direct temperature resolved mass spectrometry':{'abbreviation':'GC-DTMS', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - mass spectrometry - flame ionisation detection (GC-MS-FID) + +#In some instances, the simultaneous application of different detectors is extremely advantageous. +#For example, the combination of an a flame ionisation detector (which has a wide quantitation response range) with a mass spectrometer (which obtains qualitative information of unknown compounds) enables identification of volatile and semi-volatile compounds at trace levels. +#A splitter is applied after the GC column, splitting output to an FID and MS detector. +#Using such a system enables users to obtain both a TIC (Total Ion Chromatogram) and FID chromatogram at the same time, giving the advantages of both detection types simultaneously. +#By acquiring abundant information at the same time, the detector splitting system saves both cost for analytical instruments and columns, and operators' time. + +'gas chromatography - mass spectrometry - flame ionisation detection':{'abbreviation':'GC-MS-FID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - mass spectrometry - photoionisation detection (GC-MS-PID) + +#In the same way as GC-MS-FID, simultaneous detection using MS and PID detectors through splitting of GC output gives simultaneous advantage of both detection types. + +'gas chromatography - mass spectrometry - photoionisation detection':{'abbreviation':'GC-MS-PID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - electron capture detection - photoionisation detection (GC-ECD-PID) + +#In the same way as GC-MS-FID, simultaneous detection using ECD and PID detectors through splitting of GC output gives simultaneous advantage of both detection types. + +'gas chromatography - electron capture detection - photoionisation detection':{'abbreviation':'GC-ECD-PID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - flame ionisation detection - electron capture detection (GC-FID-ECD) + +#In the same way as GC-MS-FID, simultaneous detection using FID and ECD detectors through splitting of GC output gives simultaneous advantage of both detection types. + +'gas chromatography - flame ionisation detection - electron capture detection':{'abbreviation':'GC-FID-ECD', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','PAN','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - flame ionisation detection - photoionisation detection (GC-FID-PID) + +#In the same way as GC-MS-FID, simultaneous detection using FID and PID detectors through splitting of GC output gives simultaneous advantage of both detection types. + +'gas chromatography - flame ionisation detection - photoionisation detection':{'abbreviation':'GC-FID-PID', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - fourier transform infrared spectroscopy - mass spectrometry (GC-FTIR-MS) + +#In the same way as GC-MS-FID, simultaneous detection using FTIR and MS detectors through splitting of GC output gives simultaneous advantage of both detection types. + +'gas chromatography - fourier transform infrared spectroscopy - mass spectrometry':{'abbreviation':'GC-FTIR-MS', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#gas chromatography - unknown detection (GC-UNK) + +'gas chromatography - unknown detection':{'abbreviation':'GC-UNK', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - mass spectrometry (HPLC-MS) + +#Liquid chromatography (LC) is a separation process used to isolate the individual components of a mixture. +#This process involves mass transfer of a sample through a polar mobile phase and non-polar stationary phase. +#The device is a column packed with the porous medium made of a granular solid material (i.e., stationary phase), such as polymers and silica, where the sample is injected and the solvent (i.e., mobile phase) passes to transport the sample. +#When a sample is injected, it is adsorbed on the stationary phase, and the solvent passes through the column to separate the compounds one by one, based on their relative affinity to the packing materials and the solvent. +#The component with the most affinity to the stationary phase is the last to separate. This is because high affinity corresponds to more time to travel to the end of the column. + +#High-performance liquid chromatography (HPLC), also known as high-pressure liquid chromatography, is an advanced type of LC. +#HPLC is amenable to a wide range of applications, such as pharmaceuticals and food analysis. It is especially useful for low or non-volatile organic compounds, which cannot be handled with gas chromatography. +#The difference between traditional LC and HPLC is that the solvent in LC travels by the force of gravity. +#In HPLC, the solvent travels under high pressure obtained by means of a pump to overcome the pressure drop in the packed column, which reduces the time of separation. + +#As with gas chromatography, liquid chromatography can be combined with mass spectrometry detection. +#Combining the two analytical methods reduces experimental error and improves accuracy. This technique is very useful in applications that involve a huge number of compounds, such as environmental effluents. + +'high performance liquid chromatography - mass spectrometry':{'abbreviation':'HPLC-MS', 'sampling_type':'injection', 'measured_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - ultraviolet detection (HPLC-UV) + +#The most commonly used detector in liquid chromatography is ultra violet absorption +#A UV detector uses a molecules ability to absorb ultraviolet light – detectors can use a single wavelength or variable wavelengths which can be more sensitive. +#By passing UV light through the individual components of an eluting sample mix and measuring the amount of UV light absorbed by each component, you can determine the individual quantities of each component. + +'high performance liquid chromatography - ultraviolet detection':{'abbreviation':'HPLC-UV', 'sampling_type':'injection', 'measured_parameters':['CH4','HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['CH4','HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - fluorescence detection (HPLC-FLD) + +#Fluorescence detection can be a strong alternative to ultraviolet or other detectors for some compounds. + +'high performance liquid chromatography - fluorescence detection':{'abbreviation':'HPLC-FLD', 'sampling_type':'injection', 'measured_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - photodiode array detection (HPLC-PDA) + +#Photodiode array detection uses the same principles of operation as a UV detector, however, the array of diodes enables simultaneous acquisition across a range of wavelengths, rather than just a single one. +#While a UV detector has only one sample-side light-receiving section, a DAD has multiple photodiode arrays to obtain information over a wide range of wavelengths at one time. + +'high performance liquid chromatography - photodiode array detection':{'abbreviation':'HPLC-PDA', 'sampling_type':'injection', 'measured_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - mass spectrometry - fluorescence detection (HPLC-MS-FLD) + +#Simultaneous detection using MS and FLD detectors through splitting of HPLC output gives simultaneous advantage of both detection types. + +'high performance liquid chromatography - mass spectrometry - fluorescence detection':{'abbreviation':'HPLC-MS-FLD', 'sampling_type':'injection', 'measured_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#high performance liquid chromatography - unknown detection (HPLC-UNK) + +'high performance liquid chromatography - unknown detection':{'abbreviation':'HPLC-UNK', 'sampling_type':'injection', 'measured_parameters':['CH4','HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['CH4','HCHO','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{} +}, + +#------------------------------------ +#proton transfer reaction + +#An alternative to using gas chromatography for the separation of compounds is proton transfer reaction. +#The main advantage of proton transfer reaction is that in most of cases it does not induce any significant fragmentation, and when it does only few fragments are produced. +#Soft-ionisation results in only one or two characteristic ions, and the matrix of signals is much less complex than in other mass spectrometric techniques. +#Upon entering a PTR device, gas-phase molecules are ionised (by an ionisation source), transferring a proton (H3O+, O2+, NO+, or others) to the molecules of interest. +#For the proton transfer reaction to occur, the ionised molecule must have a higher proton affinity than the transferred proton (i.e. H3O+). +#Fast switching between reagent ions can also be used to separate isomeric compounds (molecules containing same atoms, but having different conformation), which have different reactivity with the various reagent ions. +#The ions produced in this reaction are subsequently detected by a mass analyser. +#Using PTR, comes with the advantage that ambient air can be directly sampled, without any prior sample processing (i.e. preconcentration). + +#------------------------------------ +#proton transfer reaction - mass spectrometry (PTR-MS) + +#Almost always PTR is coupled with a mass spectrometer for detection (PTR-MS). +#Proton Transfer Reaction - Mass Spectrometry characterises compounds according to their mass-to-charge ratio. +#A great advantage of PTR-MS is that common air constituents (N2, O2) have low proton affinities and do not react, thus no diluting buffer gas is required. +#PTR-MS is the most widely used method for real-time monitoring of volatile organic compounds (VOCs) at low concentrations. + +#Unless another specific detector is stated, where Proton Transfer Reaction is given as a methodology, it will be assumed that it uses Mass Spectrometry detection. + +'proton transfer reaction - mass spectrometry':{'abbreviation':'PTR-MS', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#proton transfer reaction - unknown detection (PTR-UNK) + +'proton transfer reaction - unknown detection':{'abbreviation':'PTR-UNK', 'sampling_type':'injection', 'measured_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], 'qa_accepted_parameters':['CO','CH4','ETHENE','ETHANE','PROPENE','PROPANE','ISOPRENE','BENZENE','TOLUENE','MONOTERPENES','ACETYLENE','GLYOXAL','ACETALDEHYDE','ETHANOL','1,3-BUTADIENE','1-BUTENE','ISOBUTANE','N-PENTANE','N-HEXANE','XYLENE','M-P-XYLENE','1,2,4-TRIMETHYLBENZENE','BENZO[a]PYRENE','BaP','PM10_BaP','PM2.5_BaP','PM1_BaP','NMVOC','VOC','NMHC','HC','HCHO'], + 'instruments':{} +}, + +#------------------------------------ +#Passive methods (colorimetry, spectrophotometry, ion chromatography, continuous flow analysis, titration) + +#It is not always possible to measure atmospheric composition using a automatic, continuous methodology. +#Typically automated instrumentation is expensive, needs dedicated laboratory space, and requires regular measurement maintenance. +#There is a growing trend in the use of passive methodologies, which are much cheaper, require less maintenance and can be used in high volume. + +#These methods typically involve 2 or more sample steps. Typically these are: +#1. Air is sampled passively, and a desired compound(s) is first trapped (through either physical or chemical means) (passive phase). +#2. The trapped species concentration is determined in a laboratory, using a suitable methodology (typically done in batch) (analysis phase). + +#The in-lab analysis phase methodologies are almost always one of the following: +#1. colorimetry +#2. spectrophotometry +#3. ion chromatography +#4. continuous flow analysis +#5. titration + +#--------------------- +#colorimetry (CO) + +#Colorimetry fundamentally refers to the determination of species concentrations based on the colour of a solution. +#Intrinsically, this is based on Beer-Lambert's law, according to which the absorption of light transmitted through the medium is directly proportional to the medium concentration. +#However, the way this colour is extrapolated to give a concentration, adds complexity to the definition of this method. +#In the most basic of senses the colour can be analysed manually, with the concentration directly extrapolated through a colour chart, or given through the length of colour stain on a glass tube from reagent reaction. +#The determination can be done in a more specific, automated fashion through the use of colorimeters. +#In a colorimeter, a beam of light with a specific wavelength is passed through a solution via a series of lenses, which navigate the colored light to the measuring device. +#This analyses the color compared to an existing standard. A microprocessor then calculates the absorbance or percent transmittance. +#If the concentration of the solution is greater, more light will be absorbed, which can be identified by measuring the difference between the amount of light at its origin and that after passing the solution. +#Colorimeters are usually portable and use LED light sources and color filters. As a result, they operate at fixed wavelengths and can only accommodate tests that incorporate those wavelengths. + +#Unless additional information is given, make assumption colorimetry method uses instrumental injection of sample species, following chemical reaction with a reagent. + +#Not QA accepted measurement technique for multiple species due to dominance of other more accurate techniques in measuring these species + +'colorimetry':{'abbreviation':'CO', 'sampling_type':'injection', 'measured_parameters':['O3','NO','NO2','NOx','CO','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{} +}, +#--------------------- +#spectrophotometry (SP) + +#Spectrophotometry is also based on Beer-Lambert's law, where the absorption of light transmitted through the medium is directly proportional to the medium concentration. +#The main disadvantage and limitation of the spectrophotometry is its low selectivity. The measurement of absorbance is burden by interferences derived from others components of sample. +#A spectrophotometer is a photometer (a device for measuring light intensity) that can measure intensity as a function of the color, or more specifically, the wavelength of light. +#Spectrophotometers are usually bench top instruments and use light sources that can produce a range of wavelengths, use monochromators to select for a desired wavelength. As a result, spectrophotometers can be used for a broad range of tests. + +#The distinction between spectrophotometry and colorimetry is not always clear. +#Colorimeters and spectrophotometers both measure sample absorbance to determine analyte concentrations. +#The main distinction is that a spectrophotometer can be set to measure % transmittance or absorbance over a wide range of wavelengths, whereas a colorimeter determines absorbance at specific, visible, wavelengths. + +#Unless additional information is given, make assumption spectrophotometry method uses instrumental injection of sample species, following chemical reaction with a reagent. + +#Not QA accepted measurement technique for multiple species due to dominance of other more accurate techniques in measuring these species + +'spectrophotometry':{'abbreviation':'SP', 'sampling_type':'injection', 'measured_parameters':['O3','NO','NO2','NOx','CO','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Perkin Elmer 18 UV/VIS':{'instrument_further_details':'No manual or specifications available but confirmation it is uses spectrophotometry here: https://www.recycledgoods.com/perkin-elmer-lambda-18-uv-vis-spectrophotometer/'}, + 'Shimadzu UV-1201': {'instrument_further_details':'No manual or specifications available but confirmation it is uses spectrophotometry here: http://www.medwow.com/med/spectrophotometer/shimadzu/uv-1201/12483.model-spec'}, + 'Thermo Aquakem 200': {'instrument_manual_name':'Thermo_Aquekem_200_250_600_Specs.pdf'}, + 'Thermo Aquakem 250': {'instrument_manual_name':'Thermo_Aquekem_200_250_600_Specs.pdf'}, + 'Thermo Aquakem 600': {'instrument_manual_name':'Thermo_Aquekem_200_250_600_Specs.pdf'}, + } +}, +#--------------------- +#ion chromatography (IC) + +#Ion chromatography (or ion-exchange chromatography) is a chromatography process that separates ions and polar molecules based on their affinity to the ion exchanger. +#It works on almost any kind of charged molecule—including large proteins, small nucleotides, and amino acids. However, ion chromatography must be done in conditions that are one unit away from the isoelectric point of a protein. +#The two types of ion chromatography are anion-exchange and cation-exchange. +#Cation-exchange chromatography is used when the molecule of interest is positively charged. The molecule is positively charged because the pH for chromatography is less than the pI. In this type of chromatography, the stationary phase is negatively charged and positively charged molecules are loaded to be attracted to it. +#Anion-exchange chromatography is when the stationary phase is positively charged and negatively charged molecules (meaning that pH for chromatography is greater than the pI) are loaded to be attracted to it. + +#Typical Operation: +#1. A sample of the mixture to be analyzed (analyte) is injected into a carrier fluid (the eluent). +#2. The combination is passed through a column containing a stationary fixed material (adsorbent). +#3. Compounds contained in the analyte are then partitioned between the stationary adsorbent and the moving eluent/analyte mixture. +#4. Different dissolved materials adhere to the adsorbent with different forces. The ones that adhere strongly are moved through the adsorbent more slowly as the eluent flows over them. As the eluent flows through the column the components of the analyte will move down the column at different speeds and therefore separate from one another. +#5. A detector is used to analyze the output at the end of the column. There are various detectors, typically they use an electrical conductivity detector. +#6. Each time analyte molecules/ions emerge from the chromatography column the detector generates a measurable signal which is usually printed out as a peak on the chromatogram. +#7. A suppressor is used to reduce the background conductance of the eluent and at the same time enhance the conductance of the sample ions. + +#Not QA accepted measurement technique for NO/NO2/NOx/SO2 due to dominance of other more accurate techniques in measuring these species + +#See details of method for NH3:https://www.atmos-meas-tech.net/7/2733/2014/amt-7-2733-2014.html' + +'ion chromatography':{'abbreviation':'IC', 'sampling_type':'injection', 'measured_parameters':['NO','NO2','NOx','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Dionex DX-120': { 'instrument_manual_name':'Dionex_DX-120_Manual.pdf'}, + 'Dionex DX-300': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ion chromatography here: https://shop.labexchange.com/en/dionex-dx-300-47283.html'}, + 'Dionex DX-600': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ion chromatography here: https://books.google.es/books?id=9Yq9BgAAQBAJ&pg=PA97&lpg=PA97&dq=ic+dionex+600&source=bl&ots=lUbV9Iwed7&sig=ACfU3U3gUbLCaUNYglSBZQeHrWmVITMVoA&hl=en&sa=X&ved=2ahUKEwigsonXt9roAhUVAWMBHafJAXwQ6AEwEHoECAkQMQ#v=onepage&q=ic%20dionex%20600&f=false'}, + 'Dionex 2010i': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses ion chromatography here: https://books.google.es/books?id=fortCAAAQBAJ&pg=PA395&lpg=PA395&dq=dionex+2010i&source=bl&ots=qObKPXBKMt&sig=ACfU3U13WHkWJOW7eD9NSNHuggZFjQnGVA&hl=en&sa=X&ved=2ahUKEwiZ2obZiKLgAhW4BGMBHYu7DHMQ6AEwDXoECAEQAQ#v=onepage&q=dionex%202010i&f=false'}, + 'Metrohm 881 compact IC pro':{ 'instrument_manual_name':'Metrohm_881_compact_IC_pro.pdf'}, + 'Metrohm MARGA': {'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['HCl','HNO2','HNO3','NH3','SO2','Ca++','PM10_Ca++','PM2.5_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','K+','PM10_K+','PM2.5_K+','Mg++','PM10_Mg++','PM2.5_Mg++','Na+','PM10_Na+','PM2.5_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['HCl','HNO2','HNO3','NH3','SO2','Ca++','PM10_Ca++','PM2.5_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','K+','PM10_K+','PM2.5_K+','Mg++','PM10_Mg++','PM2.5_Mg++','Na+','PM10_Na+','PM2.5_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--'], 'documented_lower_limit_of_detection':{'HCl':np.NaN,'HNO2':np.NaN,'HNO3':np.NaN,'NH3':np.NaN,'SO2':np.NaN,'Ca++':'0.09','PM10_Ca++':'0.09','PM2.5_Ca++':'0.09','Cl-':'0.01','PM10_Cl-':'0.01','PM2.5_Cl-':'0.01','K+':'0.09','PM10_K+':'0.09','PM2.5_K+':'0.09','Mg++':'0.06','PM10_Mg++':'0.06','PM2.5_Mg++':'0.06','Na+':'0.05','PM10_Na+':'0.05','PM2.5_Na+':'0.05','NH4+':'0.05','PM10_NH4+':'0.05','PM2.5_NH4+':'0.05','NO3-':'0.05','PM10_NO3-':'0.05','PM2.5_NO3-':'0.05','SO4--':'0.04','PM10_SO4--':'0.04','PM2.5_SO4--':'0.04','SO4--_NSS':'0.04','PM10_SO4--_NSS':'0.04','PM2.5_SO4--_NSS':'0.04','SO4--_SS':'0.04','PM10_SO4--_SS':'0.04','PM2.5_SO4--_SS':'0.04'}, 'documented_flow_rate':'16.67', 'instrument_manual_name':'Metrohm_MARGA_Specs.pdf'}, + 'Shimadzu CDD-10Avp': { 'instrument_manual_name':'Shimadzu CDD-10Avp-Asp_Manual.pdf'}, + 'Shimadzu CDD-10Asp': { 'instrument_manual_name':'Shimadzu CDD-10Avp-Asp_Manual.pdf'}, + 'Thermo Dionex Aquion': { 'instrument_manual_name':'Thermo_Dionex_Aquion_Specs.pdf'}, + 'Thermo ICS-1000': { 'instrument_manual_name':'Thermo_ICS-1000_Manual.pdf'}, + 'Thermo ICS-1100': { 'instrument_manual_name':'Thermo_ICS-1100_Manual.pdf'}, + 'Thermo ICS-2000': { 'instrument_manual_name':'Thermo_ICS-2000_Manual.pdf'}, + 'Thermo ICS-2100': { 'instrument_manual_name':'Thermo_ICS-2100_Manual.pdf'}, + 'Thermo ICS-3000': { 'instrument_manual_name':'Thermo_ICS-3000_Manual.pdf'}, + 'Thermo ICS-5000': { 'instrument_manual_name':'Thermo_ICS-5000_Manual.pdf'}, + 'Thermo ICS-6000': { 'instrument_manual_name':'Thermo_ICS-6000_Specs.pdf'}, + 'Waters Alliance': { 'instrument_manual_name':'Waters_Alliance_IC_Specs.pdf'} + } +}, + +#------------------------------------ +#continuous flow analysis (CFA) + +#In continuous flow analysis (CFA), a sample is injected into a flowing carrier solution passing rapidly through small-bore tubing. +#The sample is mixed with a reagent, which reacts with the sample to develop a color and determine the sample concentration (typically by spectrophotometry). +#The use of carefully controlled flow conditions ensures that the color development reaction is reproducible, so that the color measurement need not wait until the reaction has gone to completion. +#There are several technologies of CFA such as segmented flow analysis (SFA), which uses turbulent flow conditions that allow for complete sample dispersion. +#Other technologies include flow injected analysis (FIA) and sequential injection analysis, which uses laminar flow existing in the narrow-bore tubing to mix with the reagent to eliminate the need for air bubble partitioning. +#Most continuous flow analyzers depend on color reactions using a flow through photometer, however, also methods have been developed that use ISE, flame photometry, ICAP, fluorometry, and so forth. + +'continuous flow analysis':{'abbreviation':'CFA', 'sampling_type':'injection', 'sample_preparation_type':'reagent reaction', 'measured_parameters':['NO','NO2','NOx','SO2','NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['NH3','HNO3','PAN','HCl','HF','H2S','HCHO','Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Bran+Luebbe Autoanalyzer 3':{'measured_parameters':['NH3','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','K+','PM10_K+','PM2.5_K+','PM1_K+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'qa_accepted_parameters':['NH3','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','K+','PM10_K+','PM2.5_K+','PM1_K+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'instrument_manual_name':'Bran+Luebbe_Autoanalyzer_3_Specs.pdf'}, + 'Foss FIAstar 5000': {'measured_parameters':['NH3','Al','PM10_Al','PM2.5_Al','PM1_Al','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'qa_accepted_parameters':['NH3','Al','PM10_Al','PM2.5_Al','PM1_Al','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'instrument_manual_name':'Foss_FIAstar_5000_Specs.pdf'}, + 'SEAL AA500': { 'instrument_manual_name':'SEAL_AA500_Specs.pdf'}, + 'Thermo Gallery': {'measured_parameters':['SO2','NH3','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'],'qa_accepted_parameters':['NH3','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'instrument_manual_name':'Thermo_Gallery_Specs.pdf'}, + 'Thermo Gallery Plus': {'measured_parameters':['SO2','NH3','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'],'qa_accepted_parameters':['NH3','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'instrument_manual_name':'Thermo_Gallery_Specs.pdf'} + } +}, + + +#--------------------- +#titration (TI) + +#Titration is a common laboratory method of quantitative chemical analysis that is used to determine the concentration of an identified analyte. +#Since volume measurements play a key role in titration, it is also known as volumetric analysis. +#A reagent, called the titrant or titrator is prepared as a standard solution. +#A known concentration and volume of titrant reacts with a solution of analyte or titrand to determine concentration. +#The volume of titrant reacted is called titration volume. +#Titration can be also done automatically, in a continuous process. + +#Typical measurement operation: +#1. A typical titration begins with a beaker or Erlenmeyer flask containing a very precise volume of the analyte and a small amount of indicator (such as phenolphthalein) placed underneath a calibrated burette or chemistry pipetting syringe containing the titrant. +#2. Small volumes of the titrant are then added to the analyte and indicator until the indicator changes color in reaction to the titrant saturation threshold, reflecting arrival at the endpoint of the titration. +#3. Depending on the endpoint desired, single drops or less than a single drop of the titrant can make the difference between a permanent and temporary change in the indicator. +#4. When the endpoint of the reaction is reached, the volume of reactant consumed is measured and used to calculate the concentration of analyte by: Ca = Ct*Vt*M / Va ;where Ca is the concentration of the analyte, typically in molarity; Ct is the concentration of the titrant, typically in molarity; Vt is the volume of the titrant used, typically in liters; M is the mole ratio of the analyte and reactant from the balanced chemical equation; and Va is the volume of the analyte used, typically in liters. + +#Unless additional information is given, make assumption titration uses instrumental injection of sample species, following chemical reaction with a reagent. + +#Not QA accepted measurement technique for SO2 due to dominance of other more accurate techniques in measuring this species + +#See more details about method for SO2:https://www3.epa.gov/ttnemc01/ctm/ctm013B.pdf + +'titration':{'abbreviation':'TI', 'sampling_type':'injection', 'measured_parameters':['SO2'], 'qa_accepted_parameters':[], + 'instruments':{} +}, + +#------------------------------------ +#thermal reduction - chemiluminescence (TR-CL) + +#Indirect method for the measurement of nitrate (NO3-) through the conversion of NO3- to NOy by thermal reduction, which is then measured by chemiluminescence, as a result of the reaction of NO with ozone (NO+O3 --> NO2*+O2). +#The nitrate is converted by drawing a continuous stream of sample across a hot reactive surface that reduces nitrate particles in the sample stream to NOy +#The concentrations of nitrate in the ambient air are then quantified by comparing the signal produced when aerosol-laden sample is drawn directly into the converter to a background signal that is produced when the sample stream is run through a high-efficiency particulate aerosol filter that removes the nitrate before conversion. +#The difference in signal between the filtered and unfiltered sample can be attributed to the NOy that is formed from nitrate particles in the unfiltered sample stream. +#By routinely switching between the filtered and unfiltered sample streams, the instrument readings can be continuously adjusted or corrected for changes in background signal that might be produced by traces of NOy or other interfering gases. +#This frequent adjustment for changes in background signal improves the system stability, which in turn improves the limit of detection. + +'thermal reduction - chemiluminescence':{'abbreviation':'TR-CL', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], 'qa_accepted_parameters':['NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-'], + 'instruments':{ + 'Rupprecht and Patashnick 8400N':{'measured_parameters':['PM2.5_NO3-'], 'qa_accepted_parameters':['PM2.5_NO3-'], 'documented_resolution':'0.2', 'instrument_further_details':'No manual or specifications available but confirmation it is uses thermal reduction - chemiluminescence here: https://lampx.tugraz.at/~tunnel2016/history/Tunnel_2002_CD/PDF/16-Rosenberger.pdf'} + } +}, + +#------------------------------------ +#thermal reduction - ultraviolet fluorescence (TR-UVF) + +#Indirect method for the measurement of sulphate (SO4--) through the conversion of SO4-- to SO2 by thermal reduction, which is then measured by ultraviolet fluorescence. +#The sulphate is converted by drawing a continuous stream of sample across a hot reactive surface that reduces sulphate particles in the sample stream to sulfur dioxide gas. +#The concentrations of sulphate in the ambient air are then quantified by comparing the signal produced when aerosol-laden sample is drawn directly into the converter to a background signal that is produced when the sample stream is run through a high-efficiency particulate aerosol filter that removes the sulfate before conversion. +#The difference in signal between the filtered and unfiltered sample can be attributed to sulfur dioxide that is formed from sulfate particles in the unfiltered sample stream. +#By routinely switching between the filtered and unfiltered sample streams, the instrument readings can be continuously adjusted or corrected for changes in background signal that might be produced by traces of SO2 or other interfering gases. +#This frequent adjustment for changes in background signal improves the system stability, which in turn improves the limit of detection. + +'thermal reduction - ultraviolet fluorescence':{'abbreviation':'TR-UVF', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{ + 'Rupprecht and Patashnick 8400S':{'measured_parameters':['PM2.5_SO4--','PM2.5_SO4--_NSS','PM2.5_SO4--_SS'], 'qa_accepted_parameters':['PM2.5_SO4--','PM2.5_SO4--_NSS','PM2.5_SO4--_SS'], 'documented_resolution':'0.2', 'instrument_further_details':'No manual or specifications available but confirmation it is uses thermal reduction - ultraviolet fluorescence here: https://lampx.tugraz.at/~tunnel2016/history/Tunnel_2002_CD/PDF/16-Rosenberger.pdf'}, + 'Thermo 5020': { 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'50.0', 'documented_span_drift':'1.0%/week', 'documented_flow_rate':'1.2', 'instrument_manual_name':'Thermo_5020_Specs.pdf'}, + 'Thermo 5020i': { 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'4000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'0.4-0.5', 'instrument_manual_name':'Thermo_5020i_Manual.pdf'} + } +}, + +##------------------------------------ +#aerosol mass spectrometry (AMS) + +#This method is a variation of the Mass Spectrometry method to analyse gas-phase species, specific for aerosols. +#In Aerosol Mass Spectrometry, aerosol particles are – together with a small fraction (10−7) of a carrier gas – directed onto the tungsten vaporizer, typically heated to a temperature of 550–600 ◦C. +#Non-refractory material flash-vaporises, and the emerging vapor is electron-impact-ionised (70 eV) for subsequent analysis with a quadrupole or a time-of-flight mass spectrometer. +#In addition to the measurement of the aerosol beam (“beam-open” mass spectrum), also the instrument background is measured with the aerosol beam blocked (“beam-closed” mass spectrum). +#The particle contribution is calculated from the difference of both measurements (“difference” spectrum), assuming that all particle components vaporize quickly compared to the beam-open–beam-closed cycle length. +#For calculation of mass concentrations of species from the difference spectrum, each individual m/z is associated with one or several of these species. +#For the standard analysis of the unit mass resolution spectra, these associations are listed in the “frag table”, which needs to be adapted for special measurement situations by the user. +#Measurements with the high-resolution time-of-flight AMS (HR-ToF-AMS) allow the quantification of individual signals in the spectra with certain elemental composition. +#For measurements of the continental or urban background aerosol the assumptions behind this procedure are typically well met and the AMS provides robust quantitative information on the sub-micron aerosol composition. +#However, under certain conditions, e.g., when measuring close to anthropogenic sources or in the marine environment, the limitations of these assumptions are sometimes reached and the standard analysis could result in misinterpretation of the mass spectra. +#The method can be performed online (sampling ambient air) or offline (through injection). +#It is assumed unless otherwise stated that instrumental sampling is done via injection. + +'aerosol mass spectrometry':{'abbreviation':'AMS', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'qa_accepted_parameters':['Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS'], + 'instruments':{ + 'Aerodyne CTOF AMS': {'measured_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--'], 'qa_accepted_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--','PM2.5_SO4--_NSS','PM1_SO4--_NSS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'documented_lower_limit_of_detection':{'PM2.5_Cl-':np.NaN,'PM1_Cl-':np.NaN,'PM2.5_NO3-':'0.0012','PM1_NO3-':'0.0012','PM2.5_NH4+':'0.024','PM1_NH4+':'0.024','PM2.5_SO4--':'0.0024','PM1_SO4--':'0.0024','PM2.5_SO4--_NSS':'0.0024','PM1_SO4--_NSS':'0.0024','PM2.5_SO4--_SS':'0.0024','PM1_SO4--_SS':'0.0024'}, 'documented_flow_rate':'0.85', 'instrument_manual_name':'Aerodyne_AMS_Specs.pdf'}, + 'Aerodyne HRTOF AMS': {'measured_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--'], 'qa_accepted_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--','PM2.5_SO4--_NSS','PM1_SO4--_NSS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'documented_lower_limit_of_detection':{'PM2.5_Cl-':np.NaN,'PM1_Cl-':np.NaN,'PM2.5_NO3-':'0.0029','PM1_NO3-':'0.0029','PM2.5_NH4+':'0.058','PM1_NH4+':'0.058','PM2.5_SO4--':'0.0058','PM1_SO4--':'0.0058','PM2.5_SO4--_NSS':'0.0058','PM1_SO4--_NSS':'0.0058','PM2.5_SO4--_SS':'0.0058','PM1_SO4--_SS':'0.0058'}, 'documented_flow_rate':'0.85', 'instrument_manual_name':'Aerodyne_AMS_Specs.pdf'}, + 'Aerodyne quadrupole ACSM':{'measured_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--'], 'qa_accepted_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--','PM2.5_SO4--_NSS','PM1_SO4--_NSS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'documented_lower_limit_of_detection':{'PM2.5_Cl-':'0.02','PM1_Cl-':'0.02','PM2.5_NO3-':'0.02','PM1_NO3-':'0.02','PM2.5_NH4+':'0.5','PM1_NH4+':'0.5','PM2.5_SO4--':'0.04','PM1_SO4--':'0.04','PM2.5_SO4--_NSS':'0.04','PM1_SO4--_NSS':'0.04','PM2.5_SO4--_SS':'0.04','PM1_SO4--_SS':'0.04'}, 'documented_flow_rate':'0.085', 'instrument_manual_name':'Aerodyne_quadrupole_ACSM_Specs.pdf'}, + 'Aerodyne eTOF ACSM': {'measured_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--'], 'qa_accepted_parameters':['PM2.5_Cl-','PM1_Cl-','PM2.5_NO3-','PM1_NO3-','PM2.5_NH4+','PM1_NH4+','PM2.5_SO4--','PM1_SO4--','PM2.5_SO4--_NSS','PM1_SO4--_NSS','PM2.5_SO4--_SS','PM1_SO4--_SS'], 'documented_lower_limit_of_detection':{'PM2.5_Cl-':'0.003','PM1_Cl-':'0.003','PM2.5_NO3-':'0.007','PM1_NO3-':'0.007','PM2.5_NH4+':'0.06','PM1_NH4+':'0.06','PM2.5_SO4--':'0.006','PM1_SO4--':'0.006','PM2.5_SO4--_NSS':'0.006','PM1_SO4--_NSS':'0.006','PM2.5_SO4--_SS':'0.006','PM1_SO4--_SS':'0.006'}, 'documented_flow_rate':'0.085', 'instrument_manual_name':'Aerodyne_eTOF_ACSM_Specs.pdf'}, + } +}, +#------------------------------------ +#gravimetry (GR) + +#An air pump draws ambient air at a constant flow rate into a specially shaped inlet where particulate matter is separated into size fractions. +#Particulate matter is then collected on a filter. Each filter is weighed before and after use, to determine the net mass gain due to collected matter. +#The total volume of air filtered is known from the constant air flow, and the difference in filter weights is used to calculate the particulate matter concentration in micrograms per cubic meter (μg/m3) of air. + +#Known Interference: +#Particulate matter may be lost during filter handling and weighing procedures, especially if filter is exposed to warming. +#Gaseous species may contaminate filters. +#Humidity and absorbed water may be difficult to control both during operations and when handling filters. +#Removing filters and transporting to a lab for analysis may affect results. +#Meteorological conditions may affect flow rate. + +'gravimetry':{'abbreviation':'GR', 'sampling_type':'manual', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{} +}, + +#------------------------------------ +#tapered element oscillating microbalance - gravimetry (TEOM-GR) + +#The TEOM - Gravimetric method essentially involves a true “gravimetric” instrument that draws (then heats) ambient air through a filter at constant flow rate, continuously weighing the filter and calculating near real-time mass concentrations of particulate matter. +#The TEOM uses a hollow glass tube as a microbalance. Incoming particles are deposited on a filter at the tip of the tube, and the added mass causes a change in its oscillation frequency which is detected electronically. +#The element is periodically cycled to return it to its natural frequency. TEOM devices operate continuously and do not need filter changes as frequently as high-volume air samplers. + +#Typical operation: +#1. Air is drawn through a tapered glass element with a filter attached. +#2. The element oscillates according to a characteristic frequency, that decreases as mass accumulates on the attached filter. +#3. Measurement of the change in frequency converts to measurement of the accumulated mass. + +'tapered element oscillating microbalance - gravimetry':{'abbreviation':'TEOM-GR', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{ + 'Thermo 1400': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses tapered element oscillating microbalance - gravimetry here: https://uk-air.defra.gov.uk/assets/documents/reports/empire/lsoman/LSO_manual_2012_18_R&P_TEOM1400.pdf'}, + 'Thermo 1400a': { 'documented_flow_rate':'3.0', 'instrument_manual_name':'Thermo_1400a_Manual.pdf'}, + 'Thermo 1400ab':{ 'documented_lower_limit_of_detection':'0.06', 'documented_upper_limit_of_detection':'5000000', 'documented_precision':'1.5', 'documented_accuracy':'0.75%', 'documented_resolution':'0.1', 'documented_flow_rate':'0.5-4.0', 'instrument_manual_name':'Thermo_1400ab_Specs.pdf'}, + 'Thermo 1405': { 'documented_upper_limit_of_detection':'1000000', 'documented_precision':'2.0', 'documented_accuracy':'0.75%', 'documented_resolution':'0.1', 'documented_flow_rate':'3.0', 'instrument_manual_name':'Thermo_1405_Specs.pdf'}, + 'Thermo 1405D': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_flow_rate':'3.0', 'instrument_manual_name':'Thermo_1405D_Manual.pdf'} + } +}, + +#------------------------------------ +#tapered element oscillating microbalance - filter dynamics measurement system - gravimetry (TEOM-FDMS-GR) + +#The Filter Dynamics Measurement System (FDMS) is a hybrid of the TEOM system which is able to measure the semi-volatile fraction of airborne particulate matter. +#This can be important in the study of primary and secondary PM and to ensure there are no losses of these semi volatile fractions due to sampling conditions. +#TEOM instruments with FDMS alternate between a base cycle and a reference cycle, the latter of which measures the mass loss of the filter when clean air is passed through it, allowing the mass loss during the base cycle to be estimated. +#It is important that the air conditioning system not cycle over the same period as the TEOM instrument, because this can cause aliasing. + +'tapered element oscillating microbalance - filter dynamics measurement system - gravimetry':{'abbreviation':'TEOM-FDMS-GR', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{ + 'Thermo 1405-DF':{'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_upper_limit_of_detection':'1000000', 'documented_precision':'2.0', 'documented_resolution':'0.1', 'documented_flow_rate':'1.67-12.0', 'instrument_manual_name':'Thermo_1405-DF_Specs.pdf'}, + 'Thermo 1405F': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_flow_rate':'3.0', 'instrument_manual_name':'Thermo_1405F_Manual.pdf'} + } +}, + +#------------------------------------ +#quartz crystal microbalance - gravimetry (QCM-GR) + +#The quartz crystal microbalance - gravimetry method is a very sensitive mass deposition sensor based on the piezoelectric properties of the quartz crystal. +#Particles are deposited by inertial impaction (or another method) onto the surface of a quartz crystal. +#The natural resonant frequency of the crystal is monitored and compared with that of a clean reference crystal. +#As particle mass increases, the frequency decreases. + +'quartz crystal microbalance - gravimetry':{'abbreviation':'QCM-GR', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{} +}, + +#------------------------------------ +#pressure drop tape sampling (PDTS) + +#Pressure drop tape sampling measures particles by monitoring the pressure drop across a porous membrane filter (fluoropore). +#The method was originally developed at Harvard University (Babich et al., 1997). +#The pressure drop is linearly correlated to the particle mass deposited on the filter. +#The filter face veolocity is chosen such that pore obstruction by interception is the dominant cause of particle related pressure drop change over time. +#The monitor exposes a new segment of filter tape every 20-60 minutes for particle collection. + +'pressure drop tape sampling':{'abbreviation':'PDTS', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{ + 'CAMMS':{'instrument_further_details':'No manual or specifications available but confirmation it is uses pressure drop tape sampling here: https://books.google.es/books?id=fXFbDCpB88sC&pg=SA3-PA15&lpg=SA3-PA15&dq=CAMMS+Mass+pressure+drop&source=bl&ots=zYpHrfTg-T&sig=ACfU3U0d2zQC9YMTfgYELcs6HQmwW0IVgA&hl=en&sa=X&ved=2ahUKEwiNw_bhrK72AhWa7rsIHRz5BgkQ6AF6BAgUEAM#v=onepage&q=CAMMS%20Mass%20pressure%20drop&f=false'} + } +}, + +#------------------------------------ +#beta-attenuation (BA) + +#Beta particles (electrons with energies in the 0.01 to 0.1 MeV range) are attenuated according to an approximate exponential function when they pass through particulate deposits on a filter tape. +#Automated samplers (analyzers) use a continuous filter tape, first measuring the attenuation by the unexposed tape, and then measuring the attenuation after the tape has passed through the ambient air flow. +#The attenuation measurement converts to a measure of the mass on the filter, so that the filters do not require later laboratory analysis for the mass variable. For some devices, the beta particle source is 14C. + +#Known Interference: +#Particulate matter may be lost due to filter tape advance and vibration, especially if filter is exposed to warming. +#Gaseous species may contaminate filters. +#Humidity and absorbed water may be difficult to control during operations. +#Meteorological conditions may affect flow rate. +#Although on-site real-time mass measurement offers significant improvements over the filter removal and laboratory analysis process, the beta emission and detection process present additional on-site maintenance requirements. + +'beta-attenuation':{'abbreviation':'BA', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1'], 'qa_accepted_parameters':['PM10','PM2.5','PM1'], + 'instruments':{ + 'ADM 9000': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://pubmed.ncbi.nlm.nih.gov/28094548/'}, + 'Airpointer-PMBA': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'1000000.0', 'documented_resolution':'0.1', 'documented_zero_drift':'1.0/day', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Airpointer_Specs.pdf'}, + 'Andersen FH621-N': { 'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'10000', 'documented_accuracy':'2.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://cdiac.ess-dive.lbl.gov/programs/NARSTO/Compendium_combined.pdf; see details about detection limits here: https://books.google.es/books?id=gDJEBAAAQBAJ&pg=PT323&lpg=PT323&dq=andersen+fh621-n&source=bl&ots=fU7hu5zKUU&sig=ACfU3U1TC8JhHedeoUMYXqfHdPIfrrN0rw&hl=en&sa=X&ved=2ahUKEwi--YrC_oPgAhVi5OAKHaf2CEcQ6AEwAnoECAcQAQ#v=onepage&q=andersen%20fh621-n&f=false'}, + 'Dasibi 7001': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: http://www.sistemapiemonte.it/ambiente/srqa/stazioni/pdf/151.pdf'}, + 'DKK-TOA FPM-377': {'measured_parameters':['PM2.5'], 'qa_accepted_parameters':['PM2.5'], 'documented_upper_limit_of_detection':'5000', 'instrument_further_details':'Information was found online:https://www.directindustry.com/prod/dkk-toa-corporation/product-13577-1326921.html'}, + 'Eberline FH62-1': { 'documented_accuracy':'2.0', 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: http://adsabs.harvard.edu/abs/2012AtmEn..54...18Gf'}, + 'Environnement SA MP101M': { 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Environnement_SA_MP101M_Specs.pdf'}, + 'Environnement SA MPSI100': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://eurekamag.com/pdf/008/008897460.pdf'}, + 'FAI Swam 5a': { 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'10000', 'documented_uncertainty':'1.0', 'documented_flow_rate':'13.33-41.6667', 'instrument_manual_name':'FAI_Swam_5a_specs.pdf', 'measuring_instrument_further_details':'See more details here: http://fai-instruments.net/swam-dual-channel-2/?lang=en'}, + 'Horiba APDA350E': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://books.google.es/books?id=wYUUzLCIMzsC&pg=PA112&lpg=PA112&dq=horiba+apda+350e&source=bl&ots=uvOvFFezdD&sig=ACfU3U041o7NZz92BUIgpBh1x0CLKwY5lQ&hl=en&sa=X&ved=2ahUKEwjfo6_x4ojgAhUFQhoKHeuAAlgQ6AEwCHoECAEQAQ#v=onepage&q=horiba%20apda%20350e&f=false'}, + 'Horiba APDA351': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://dd.eionet.europa.eu/vocabularyconcept/aq/measurementequipment/horibaAPDA351/view'}, + 'Horiba APDA351E': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://pdfs.semanticscholar.org/fc4c/3b522b04166381468138e590ac4b866759d3.pdf'}, + 'Horiba APDA371': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'4.8', 'documented_upper_limit_of_detection':'10000', 'documented_resolution':'0.1', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Horiba_APDA371_Specs.pdf'}, + 'Horiba APDA3750A': {'measured_parameters':['PM2.5'], 'qa_accepted_parameters':['PM2.5'], 'documented_upper_limit_of_detection':'10000', 'documented_precision':'2.0%', 'documented_accuracy':'5.0%', 'documented_span_drift':'3.0%/day', 'documented_flow_rate':'16.7', 'instrument_further_details':'Specifications here: https://www-horiba-com.translate.goog/jp/process-environmental/products-jp/ambient/details_09/apda-3750a-ambient-dust-monitor-pm2-5-19081/?_x_tr_sl=ja&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=sc'}, + 'Horiba FH621-R': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://scindeks-clanci.ceon.rs/data/pdf/1451-9372/2008/1451-93720801005J.pdf'}, + 'Kimoto 168S': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://www.dri.edu/images/stories/editors/eafeditor/Watsonetal2010SCAQMDFugDustReport.pdf'}, + 'Kimoto PM-712': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_upper_limit_of_detection':{'PM10':'5000','PM2.5':'1000'}, 'documented_precision':'2.0%', 'documented_accuracy':'5.0%', 'documented_zero_drift':'5.0/day', 'documented_span_drift':'3.0%/day', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Kimoto_PM-712_Specs.pdf'}, + 'Kimoto PM-717': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://www.kimoto-electric.co.jp/topics/article/pm25test.html'}, + 'Kimoto SPM-613D': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://www3.epa.gov/ttnamti1/files/2006conference/tisch.pdf'}, + 'Kimoto SPM-613F': { 'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'1000', 'documented_precision':'2.0%', 'documented_accuracy':'3.0%', 'documented_zero_drift':'3.0/day', 'documented_span_drift':'2.0%/day', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Kimoto_SPM-613-F_Manual.pdf'}, + 'Met One BAM1020': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'4.8', 'documented_upper_limit_of_detection':'10000', 'documented_uncertainty':'1.0', 'documented_resolution':'0.24', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Met_One_BAM1020_Manual.pdf'}, + 'Met One BAM1022': { 'documented_flow_rate':'16.7', 'instrument_manual_name':'Met_One_BAM1022_Specs.pdf'}, + 'Met One E-BAM': { 'documented_flow_rate':'16.7', 'instrument_manual_name':'Met_One_E-BAM_Specs.pdf'}, + 'Met One E-BAM Plus': { 'documented_flow_rate':'16.7', 'instrument_manual_name':'Met_One_E-BAM_Plus_Specs.pdf'}, + 'OPSIS SM200': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'1000', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'OPSIS_SM200_Specs'}, + 'Sibata BAM102': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://www.nrc.gov/docs/ML1104/ML110400420.pdf'}, + 'Teledyne 602 BetaPlus': { 'documented_lower_limit_of_detection':'2.0', 'documented_upper_limit_of_detection':'2000', 'documented_resolution':'0.1', 'documented_flow_rate':'16.6667-41.6667', 'instrument_manual_name':'Teledyne_602_BetaPlus_Manual.pdf'}, + 'Thermo 5014i': { 'documented_lower_limit_of_detection':'4.0', 'documented_upper_limit_of_detection':'10000', 'documented_precision':'2.0<80.0 5.0>=80.0', 'documented_accuracy':'5.0%', 'documented_resolution':'0.1', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Thermo_5014i_Manual.pdf'}, + 'Thermo FH62 C14': { 'documented_lower_limit_of_detection':'4.0', 'documented_upper_limit_of_detection':'10000', 'documented_precision':'2.0', 'documented_resolution':'1.0', 'documented_flow_rate':'0.6', 'instrument_manual_name':'Thermo_FH62_C14_Specs.pdf'}, + 'Thermo Andersen FH62 I-R': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'3.0', 'documented_upper_limit_of_detection':'10000', 'documented_accuracy':'1.0', 'documented_resolution':'1.0', 'documented_flow_rate':'16.666667', 'instrument_further_details':'Instrument was called Eberline FH62 I-R previously, specifications for that instrument are here: https://www.breckland.gov.uk/media/1176/The-Detailed-Assessment-for-PM10-2004/pdf/The_Detailed_Assessment_for_PM10_2004.pdf'}, + 'Verewa F701': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'5.0', 'documented_upper_limit_of_detection':'10000', 'documented_flow_rate':'16.666667', 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: http://www.ecomonitoring.pl/pylomierz%20-%20imisja.html'}, + 'Verewa F701-20': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'10000', 'documented_accuracy':'2.0%', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Verewa_F701-20_Manual.pdf'}, + 'Verewa F703': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://books.google.es/books?id=zx6YBwAAQBAJ&pg=SL13-PA29&lpg=SL13-PA29&dq=Verewa+F703&source=bl&ots=zS_cDXxd_x&sig=ACfU3U2QDSpJnu-ns_aORl3mN9x_SrGYeQ&hl=en&sa=X&ved=2ahUKEwjuhNf38IbgAhXxoXEKHeP6BDoQ6AEwC3oECAQQAQ#v=onepage&q=Verewa%20F703&f=false'}, + 'Wedding and Associates Beta':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses beta-attenuation here: https://uk-air.defra.gov.uk/assets/documents/reports/empire/quarg/quarg_11.pdf'} + } +}, + +#------------------------------------ +#nephelometry (NP) + +#Nephelometry is based on the bulk scattering of visible light by an air sample. It is a mature technology and provides reliable measurements of the spectral (aerosol) scattering coefficient of the air (unit Mm‐1). +#An integrating nephelometer combines the light from all scattering angles to produce a spectral scattering coefficient for the wavelength of light used. +#The signal obtained by integrating nephelometer measurements is closely proportional to the cosine weighted scattering function, which is equal to the scattering part of the Lambert‐Beer extinction coefficient. +#The scattering coefficient is not linearly proportional to aerosol mass concentration, but a more complex function of aerosol composition, shape, density, size distribution, and index of refraction. +#Thus to convert the scattering coefficient to a mass concentration, assumptions are needed to be made regarding the type of aerosol present, and environmental factors (k-factors). +#K-factors are typically determined by the user by running the nephelometer next to an air sampling pump and comparing results. +#The correction factors necessary may have a significant seasonal and spatial variability (Chow et al. 2006); hence nephelometry is best suited in environments with a rather stable aerosol composition. + +'nephelometry':{'abbreviation':'NP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'Ambilabs 2-WIN': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_450nm':'0.3','AERO_LIGHT_SCAT_COEFF_525nm':'0.3','AERO_LIGHT_SCAT_COEFF_635nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'0.3'}, 'documented_upper_limit_of_detection':{'PM10':'100000.0','PM2.5':'100000.0','PM1':'100000.0','AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0'}, 'documented_flow_rate':'5.0', 'instrument_manual_name':'Ambilabs_2-WIN_Specs.pdf'}, + 'Ecotech 9003': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_470nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_630nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_470nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_630nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_470nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_630nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_470nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_630nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_470nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_630nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_470nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_630nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_470nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_630nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_470nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_630nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_450nm':'0.4','AERO_LIGHT_SCAT_COEFF_470nm':'0.4','AERO_LIGHT_SCAT_COEFF_520nm':'0.4','AERO_LIGHT_SCAT_COEFF_525nm':'0.4','AERO_LIGHT_SCAT_COEFF_630nm':'0.4','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.4','PM10_AERO_LIGHT_SCAT_COEFF_470nm':'0.4','PM10_AERO_LIGHT_SCAT_COEFF_520nm':'0.4','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'0.4','PM10_AERO_LIGHT_SCAT_COEFF_630nm':'0.4','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.4','PM2.5_AERO_LIGHT_SCAT_COEFF_470nm':'0.4','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm':'0.4','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'0.4','PM2.5_AERO_LIGHT_SCAT_COEFF_630nm':'0.4','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.4','PM1_AERO_LIGHT_SCAT_COEFF_470nm':'0.4','PM1_AERO_LIGHT_SCAT_COEFF_520nm':'0.4','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'0.4','PM1_AERO_LIGHT_SCAT_COEFF_630nm':'0.4'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','AERO_LIGHT_SCAT_COEFF_470nm':'2000.0','AERO_LIGHT_SCAT_COEFF_520nm':'2000.0','AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','AERO_LIGHT_SCAT_COEFF_630nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_470nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_520nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_630nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_470nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_630nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_470nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_520nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_630nm':'2000.0'}, 'instrument_manual_name':'Ecotech_9003_Specs.pdf', 'instrument_further_details':'Manual suggests measurement at 520nm and optional measurement at 470nm and 630nm upon request. However, have reported wavelengths at 450nm and 525nm also.'}, + 'Ecotech Aurora 1000': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_450nm':'0.25','AERO_LIGHT_SCAT_COEFF_525nm':'0.25','AERO_LIGHT_SCAT_COEFF_635nm':'0.25','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.25','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'0.25','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'0.25','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.25','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'0.25','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'0.25','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.25','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'0.25','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'0.25'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0'}, 'documented_flow_rate':'5.0', 'instrument_manual_name':'Ecotech_Aurora_1000_Manual.pdf'}, + 'Ecotech Aurora 3000': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.1','AERO_LIGHT_SCAT_COEFF_450nm':'0.1','AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.1','AERO_LIGHT_SCAT_COEFF_525nm':'0.1','AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.1','AERO_LIGHT_SCAT_COEFF_635nm':'0.1','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.1','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.1','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.1','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'0.1','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.1','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'0.1','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.1','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.1','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.1','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'0.1','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.1','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'0.1','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.1','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.1','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.1','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'0.1','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.1','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'0.1'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','AERO_LIGHT_BACKSCAT_COEFF_525nm':'20000.0','AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','AERO_LIGHT_BACKSCAT_COEFF_635nm':'20000.0','AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'20000.0'}, 'documented_flow_rate':'5.0', 'instrument_manual_name':'Ecotech_Aurora_3000_Manual.pdf'}, + 'Ecotech Aurora 4000': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','AERO_LIGHT_SCAT_COEFF_450nm':'0.3','AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.3','AERO_LIGHT_SCAT_COEFF_525nm':'0.3','AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.3','AERO_LIGHT_SCAT_COEFF_635nm':'0.3','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'0.1','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'0.3','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'0.3','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'0.3'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'2000.0','AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','AERO_LIGHT_BACKSCAT_COEFF_525nm':'2000.0','AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','AERO_LIGHT_BACKSCAT_COEFF_635nm':'2000.0','AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm':'2000.0','PM10_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm':'2000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'2000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_525nm':'2000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm':'2000.0','PM1_AERO_LIGHT_SCAT_COEFF_635nm':'2000.0'}, 'documented_flow_rate':'5.0', 'instrument_manual_name':'Ecotech_Aurora_4000_Manual.pdf'}, + 'Meteorology Research Inc. 4-W': { 'instrument_further_details':'No manual or specifications available', 'measuring_assumption':True}, + 'Meteorology Research Inc. 1550':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses nephelometry here: https://www.rti.org/sites/default/files/resources/bk-0003-1109-chapter09.pdf'}, + 'MS Electron 3W-02': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm'], 'instrument_further_details':'No manual or specifications available but confirmation it is uses nephelometry here: http://carg.atmos.washington.edu/sys/research/CLAMS/TabCLAMS.pdf'}, + 'Optec NGN-2': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_550nm':'10.0','PM10_AERO_LIGHT_SCAT_COEFF_550nm':'10.0','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm':'10.0','PM1_AERO_LIGHT_SCAT_COEFF_550nm':'10.0'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_550nm':'24000.0','PM10_AERO_LIGHT_SCAT_COEFF_550nm':'24000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm':'24000.0','PM1_AERO_LIGHT_SCAT_COEFF_550nm':'24000.0'}, 'documented_accuracy':{'AERO_LIGHT_SCAT_COEFF_550nm':'10.0%','PM10_AERO_LIGHT_SCAT_COEFF_550nm':'10.0%','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm':'10.0%','PM1_AERO_LIGHT_SCAT_COEFF_550nm':'10.0%'}, 'instrument_manual_name':'Optec_NGN-2_Manual.pdf'}, + 'Radiance Research 903': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_530nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_SCAT_COEFF_530nm'], 'documented_lower_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_530nm':'1.0'}, 'documented_upper_limit_of_detection':{'AERO_LIGHT_SCAT_COEFF_530nm':'1000.0'}, 'instrument_manual_name':'Radiance_Research_903_Manual.pdf'}, + 'TSI 3563': {'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm'], 'documented_upper_limit_of_detection':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','AERO_LIGHT_BACKSCAT_COEFF_550nm':'20000.0','AERO_LIGHT_SCAT_COEFF_550nm':'20000.0','AERO_LIGHT_BACKSCAT_COEFF_700nm':'20000.0','AERO_LIGHT_SCAT_COEFF_700nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_550nm':'20000.0','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm':'20000.0','PM10_AERO_LIGHT_SCAT_COEFF_700nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm':'20000.0','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm':'20000.0','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_550nm':'20000.0','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm':'20000.0','PM1_AERO_LIGHT_SCAT_COEFF_700nm':'20000.0'}, 'documented_resolution':{'AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','AERO_LIGHT_SCAT_COEFF_450nm':'0.3','AERO_LIGHT_BACKSCAT_COEFF_550nm':'0.2','AERO_LIGHT_SCAT_COEFF_550nm':'0.2','AERO_LIGHT_BACKSCAT_COEFF_700nm':'0.2','AERO_LIGHT_SCAT_COEFF_700nm':'0.2','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM10_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm':'0.2','PM10_AERO_LIGHT_SCAT_COEFF_550nm':'0.2','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm':'0.2','PM10_AERO_LIGHT_SCAT_COEFF_700nm':'0.2','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm':'0.2','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm':'0.2','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm':'0.2','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm':'0.2','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm':'0.3','PM1_AERO_LIGHT_SCAT_COEFF_450nm':'0.3','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm':'0.2','PM1_AERO_LIGHT_SCAT_COEFF_550nm':'0.2','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm':'0.2','PM1_AERO_LIGHT_SCAT_COEFF_700nm':'0.2'}, 'documented_flow_rate':'20-200', 'instrument_manual_name':'TSI_3563_Specs.pdf'} + } +}, + +#------------------------------------ +#nephelometry - laser spectrometry (NP-LS) + +#In order to accurately calculate k-factors to convert the aerosol scattering coeffient to a mass concentration, a laser spectrometry can be used simultaneously to measure the size and number concentration of airborne particles. +#The spectrometry works by using intensity of light scattered from a laser to measure the particle size, at mutiple defined size bins simultaneously. + +'nephelometry - laser spectrometry':{'abbreviation':'NP-LS', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'Airpointer-PM':{'documented_lower_limit_of_detection':'1.0', 'documented_upper_limit_of_detection':'1000.0', 'documented_precision':'1.0', 'documented_zero_drift':'1.0/day', 'documented_span_drift':'1.0%/day', 'documented_flow_rate':'2.0', 'instrument_manual_name':'Airpointer_Specs.pdf'} + } +}, + +#------------------------------------ +#light scattering photometry (LSP) + +#Light scattering photometers do not integrate the light from all scattered angles, but only view a portion of the available scattering angles. +#Like nephelometry, it produces a bulk scattering coefficient of an air sample with similar time resolution and range. +#In general they are calibrated with a standard test aerosol such as Arizona Test Dust, but typically these test aerosols have significantly different optical properties from real ambient air aerosols. +#Again, therefore, assumptions about the type of aerosol present, and environmental factors, are needed to convert the scattering coefficient to a mass concentration, and uncertainties tend to be higher than for nephelometers. +#See here for distinction between nephelometry and light scattering photometry: https://db-airmontech.jrc.ec.europa.eu/download/PM_Mass_MMTI_OpticalDevices.pdf + +'light scattering photometry':{'abbreviation':'LSP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'Comde Derenda APM-2':{'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'instrument_manual_name':'Comde_Derenda_APM-2_Specs.pdf'}, + 'Horiba APDA372': { 'documented_upper_limit_of_detection':'10000.0', 'documented_flow_rate':'4.8', 'instrument_manual_name':'Horiba_APDA372_Specs.pdf'}, + 'Unitec LSPM10': {'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_upper_limit_of_detection':'20000.0', 'documented_accuracy':'1.0%', 'documented_zero_drift':'0.1%/day', 'documented_span_drift':'0.1%/day', 'documented_resolution':'0.1', 'documented_flow_rate':'15.0-40.0', 'instrument_manual_name':'Unitec_LSPM10_Manual.pdf'} + } +}, + +#------------------------------------ +#optical particle counter (OPC) + +#Optical particle counters differ from nephelometry and light scattering photometry in being based on measuring the light scattered by individual particles. +#The light scattered by individual particles is picked up as (typically) a discrete signal, so that the size of each particle can be gauged from the intensity of the signal, while the number concentration of particles can be gauged from the number of signals and the air flow rate through the light beam volume. +#In general, therefore, a size spectrum of particles will be obtained, so that information about specific size fractions, such as PM10 and PM2.5, can be obtained simultaneously. +#These can then be converted to mass concentrations by making assumptions about the particle density. +#Uncertainties arise from the determination of the size of the volume of air being examined by the laser, scattering from more than one particle at the same time (coincidence), and the conversions from intensity to size and then to mass. +#Nevertheless, performance can be comparable with other automatic methods for PM10 and PM2.5. + +'optical particle counter':{'abbreviation':'OPC', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'Grimm 107': { 'documented_flow_rate':'1.2', 'instrument_manual_name':'Grimm_107_Specs.pdf', 'measuring_instrument_further_details':'Portable version of Grimm 180.'}, + 'Grimm 180': { 'documented_flow_rate':'1.2', 'instrument_manual_name':'Grimm_180_Manual.pdf'}, + 'Grimm 190': { 'instrument_further_details':'No manual or specifications available but confirmation it is uses optical particle counter here: https://core.ac.uk/download/pdf/52132153.pdf'}, + 'Grimm 365': { 'documented_flow_rate':'1.2', 'instrument_manual_name':'Grimm_365_Specs.pdf'}, + 'Palas Fidas 200': { 'documented_upper_limit_of_detection':'10000.0', 'documented_flow_rate':'5.0', 'instrument_manual_name':'Palas_Fidas_200_Specs.pdf'}, + 'Palas Fidas 200E':{ 'documented_upper_limit_of_detection':'10000.0', 'documented_flow_rate':'5.0', 'instrument_manual_name':'Palas_Fidas_200_Specs.pdf'}, + 'Palas Fidas 200S':{ 'documented_upper_limit_of_detection':'10000.0', 'documented_flow_rate':'5.0', 'instrument_manual_name':'Palas_Fidas_200_Specs.pdf'}, + 'Teledyne 640': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5', 'documented_flow_rate':'5.0', 'instrument_manual_name':'Teledyne_640_Manual.pdf'}, + 'Teledyne 640x': {'documented_lower_limit_of_detection':'0.1', 'documented_upper_limit_of_detection':'10000.0', 'documented_precision':'0.5', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Teledyne_640x_Manual.pdf'}, + 'Turnkey Osiris': {'documented_lower_limit_of_detection':'0.01', 'documented_upper_limit_of_detection':'6000.0', 'documented_resolution':'0.1', 'documented_flow_rate':'0.6', 'instrument_manual_name':'Turnkey_Osiris_Specs.pdf'} + + } +}, + +#------------------------------------ +#beta-attenuation - nephelometry (BA-NP) + +#Hybrid of beta-attenuation and nephelometry methods enhancing the overall performance. +#Has accuracy of the beta-attenuation method with high time resolution of a nephelometer. +#see https://www3.epa.gov/ttnamti1/files/2006conference/goohssharp.pdf for more information + +'beta-attenuation - nephelometry':{'abbreviation':'BA-NP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'Thermo 5030 SHARP':{'measured_parameters':['PM10','PM2.5'], 'qa_accepted_parameters':['PM10','PM2.5'], 'documented_lower_limit_of_detection':'0.5', 'documented_upper_limit_of_detection':'10000', 'documented_precision':'2.0<80.0 5.0>=80.0', 'documented_accuracy':'5.0%', 'documented_span_drift':'0.02%/day', 'documented_flow_rate':'16.666667', 'instrument_manual_name':'Thermo_5030_SHARP_Specs.pdf'} + } +}, + +#------------------------------------ +#differential mobility particle sizer (DMPS) + +#Optical techniques are limited in being unable to detect particles smaller than 50-100nm, and are also susceptible to sizing errors resulting from variations in particle shape and refractive index. +#Differential mobility techniques are able to measure much smaller particles, down to 2.5nm and are not sensitive to differences in refractive index, but are not able to achieve the same temporal resolution as optical instruments, and are also sensitive to variations in particle shape. +#The Differential Mobility Particle Sizer couples a differential mobility analyzer (DMA), which classifies charged particles according to their mobility in an electric field, and a condensation particle counter (CPC) to count particles of a specific mobility. +#In the atmosphere most aerosol are charged, often with multiple elementary charges, in order for classification by electrical mobility to be meaningful in terms of particle size, the aerosol must be given a known charge distribution. +#This is done by exposing the particles to a stream of beta radiation, resulting in a charge distribution known as a Fuchs distribution. +#This distribution has known fractions of the aerosol population which are singly, doubly and triply charged etc. +#When viewing the output from a DMA set to select a single electrical mobility with an optical particle counter, multiply charged peaks can clearly be seen. +#Clearly when performing a scan, the presence of multiply charged particles has the potential to affect the results. +#This is generally dealt with by physically limiting the maximum particle size which may enter the DMA (this is usually done with an impactor) to just above the maximum size which is to be scanned. +#Thus there can be no multiply charged particles present in the largest size bins. In turn multiply charged particles may be removed from smaller size bins based on the known charge distribution and the measured number concentration of these larger particles. + +'differential mobility particle sizer':{'abbreviation':'DMPS', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{}, +}, + +#------------------------------------ +#scanning mobility particle sizer (SMPS) + +#The Scanning Mobility Particle Sizer is based on the principal of the mobility of a charged particle in an electric field. +#Particles entering the system are neutralized (using a radioactive source) such that they have a Fuchs equilibrium charge distribution. +#They then enter a Differential Mobility Analyser (DMA) where the aerosol is classified according to electrical mobility, with only particles of a narrow range of mobility exiting through the output slit. +#This monodisperse distribution then goes to a Condensation Particle Counter which determines the particle concentration at that size. +#The DMA consists of a cylinder, with a negatively charged rod at the center, the main flow through the DMA is particle free 'sheath' air. +#It is important that this flow is laminar. The particle flow is injected at the outside edge of the DMA, particles with a positive charge move accross the sheath flow towards the central rod, at a rate determined by their electrical mobility. +#Particles of a given mobility exit through the sample slit at the top of the DMA, while all other particles exit with the exhaust flow. The size of particle exiting through the slit being determined by the particles size, charge, central rod voltage, and flow within the DMA. +#By (in the case of the SMPS) exponentially scanning the voltage on the central rod, a full particle size distribution is built up. +#SMPS is a variation of DMPS, with some advantages. A major advantage is it’s ease of portability and significantly lower power consumption. It also can produce aerosol spectra with a much higher temporal resolution, though the sampling statistics suffer especially if fast scans are carried out under clean ambient conditions. + +'scanning mobility particle sizer':{'abbreviation':'SMPS', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], 'qa_accepted_parameters':['PM10','PM2.5','PM1','AERO_LIGHT_BACKSCAT_COEFF_450nm','AERO_LIGHT_BACKSCAT_COEFF_520nm','AERO_LIGHT_BACKSCAT_COEFF_525nm','AERO_LIGHT_BACKSCAT_COEFF_530nm','AERO_LIGHT_BACKSCAT_COEFF_532nm','AERO_LIGHT_BACKSCAT_COEFF_550nm','AERO_LIGHT_BACKSCAT_COEFF_635nm','AERO_LIGHT_BACKSCAT_COEFF_700nm','AERO_LIGHT_BACKSCAT_COEFF_850nm','AERO_LIGHT_SCAT_COEFF_450nm','AERO_LIGHT_SCAT_COEFF_520nm','AERO_LIGHT_SCAT_COEFF_525nm','AERO_LIGHT_SCAT_COEFF_530nm','AERO_LIGHT_SCAT_COEFF_532nm','AERO_LIGHT_SCAT_COEFF_550nm','AERO_LIGHT_SCAT_COEFF_635nm','AERO_LIGHT_SCAT_COEFF_700nm','AERO_LIGHT_SCAT_COEFF_850nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM10_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM10_AERO_LIGHT_SCAT_COEFF_450nm','PM10_AERO_LIGHT_SCAT_COEFF_520nm','PM10_AERO_LIGHT_SCAT_COEFF_525nm','PM10_AERO_LIGHT_SCAT_COEFF_530nm','PM10_AERO_LIGHT_SCAT_COEFF_532nm','PM10_AERO_LIGHT_SCAT_COEFF_550nm','PM10_AERO_LIGHT_SCAT_COEFF_635nm','PM10_AERO_LIGHT_SCAT_COEFF_700nm','PM10_AERO_LIGHT_SCAT_COEFF_850nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM2.5_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM2.5_AERO_LIGHT_SCAT_COEFF_450nm','PM2.5_AERO_LIGHT_SCAT_COEFF_520nm','PM2.5_AERO_LIGHT_SCAT_COEFF_525nm','PM2.5_AERO_LIGHT_SCAT_COEFF_530nm','PM2.5_AERO_LIGHT_SCAT_COEFF_532nm','PM2.5_AERO_LIGHT_SCAT_COEFF_550nm','PM2.5_AERO_LIGHT_SCAT_COEFF_635nm','PM2.5_AERO_LIGHT_SCAT_COEFF_700nm','PM2.5_AERO_LIGHT_SCAT_COEFF_850nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_450nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_520nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_525nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_530nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_532nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_550nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_635nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_700nm','PM1_AERO_LIGHT_BACKSCAT_COEFF_850nm','PM1_AERO_LIGHT_SCAT_COEFF_450nm','PM1_AERO_LIGHT_SCAT_COEFF_520nm','PM1_AERO_LIGHT_SCAT_COEFF_525nm','PM1_AERO_LIGHT_SCAT_COEFF_530nm','PM1_AERO_LIGHT_SCAT_COEFF_532nm','PM1_AERO_LIGHT_SCAT_COEFF_550nm','PM1_AERO_LIGHT_SCAT_COEFF_635nm','PM1_AERO_LIGHT_SCAT_COEFF_700nm','PM1_AERO_LIGHT_SCAT_COEFF_850nm'], + 'instruments':{ + 'TROPOS':{'instrument_manual_name':'TROPOS_Manual.pdf'}} +}, + +#------------------------------------ +#thermal analysis (TA) + +#Thermal analysis (TA) differentiates between organic carbon (OC) and light-absorbing carbon (LAC) by oxidising collected samples to CO2 at an intermediate temperature and at a high final burn temperature. +#Because thermal analysis does not yield a true value of LAC, the refractory component it measures takes a different name: elemental carbon (EC). (This has no relationship to a chemist’s definition of “elemental.”) +#Thermal methods rely on the assumption that organic carbon is volatile, and the strongly light absorbing carbon is stable or refractory at elevated temperatures. +#It assumes that LAC in a sample is unchanged until exposed to both elevated temperatures and an oxidant, so that carbon driven off at low temperatures or in the absence of oxygen must be OC. +#The method physically determines OC, EC and total carbon (TC) by measurement of CO2 by infrared detection. +#By heating in stages it is possible to attribute carbon broken down at lower temperatures to OC, and those at higher temperatures to EC. +#Ideally, TA would be a separation-and-detection technique similar to chromatography, but failures of separation have hampered its interpretation. +#Some OC undergoes pyrolysis or charring in the absence of oxygen, forming pyrolyzed carbon (“charring”) instead of volatilizing (Huntzicker et al., 1982). +#TA applies no correction for this. + +'thermal analysis':{'abbreviation':'TA', 'sampling_type':'injection', 'measured_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], 'qa_accepted_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], + 'instruments':{ + 'Rupprecht and Patashnick 5400':{'sampling_type':'continuous injection', 'sample_preparation_type':'filter', 'documented_flow_rate':'16.7', 'instrument_further_details':'No manual or specifications available but confirmation it is uses thermal-optical analysi here: https://archive.epa.gov/nrmrl/archive-etv/web/pdf/01_vr_rupp_5400c.pdf'} + } +}, + +#------------------------------------ +#thermal-optical analysis - unknown protocol (TOA-UNK) + +#Thermal-optical analysis (TOA) is the most widely used method to measure organic and elemental carbon in the scientific community. +#It uses the same principals as thermal analysis but builds upon them by using laser monitoring to correct for the transformation of non-absorbing carbon into pyrolytic carbon that absorbs light. +#Additionally, samples are oxidised at various steps on a temperature ramp (rather than just 2), to provide more information for OC/EC split. +#The sample usually becomes blacker as charring occurs in an inert atmosphere, and the blackness decreases as the pyrolyzed carbon burns later in the analysis. +#This change is detected by monitoring either transmittance or reflectance (sometimes both). When the filter’s transmittance or reflectance returns to the original value, it is assumed that the remaining material is EC. +#This point is colloquially termed the OC/EC split. +#There have been wide discourse regarding the OC/EC split definition, with different protocols having their own temperature ramps and step durations. +#There are currently 3 well established protocols for the handling of the apportionment between EC and OC: +# NIOSH 5040 +# IMPROVE-A +# EUSAAR2 + +#TOA instruments can be operated following any of these protocols, therefore for clarity, a separate method is given referencing each of these these protocols +#https://www.sciencedirect.com/science/article/pii/S1309104215302415#bib0020 +#https://www.sciencedirect.com/science/article/pii/S1352231018300578#bib3 + +'thermal-optical analysis - unknown protocol':{'abbreviation':'TOA-UNK', 'sampling_type':'injection', 'measured_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], 'qa_accepted_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], + 'instruments':{ + 'DRI Model 2001': {'instrument_manual_name':'DRI_Model_2001_Manual.pdf'}, + 'Sunset OCEC Model 4':{'instrument_manual_name':'Sunset_OCEC_4_Specs.pdf'}, + 'Sunset OCEC Model 5':{'instrument_manual_name':'Sunset_OCEC_5l_Manual.pdf', 'instrument_further_details':'See more details here:http://www.sunlab.com/wp-content/uploads/Lab-Instrument-brochure.pdf'} + } +}, + +#------------------------------------ +#thermal-optical analysis - NIOSH 5040 (TOA-N) + +'thermal-optical analysis - NIOSH 5040':{'abbreviation':'TOA-N', 'sampling_type':'injection', 'measured_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], 'qa_accepted_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], + 'instruments':{ + 'DRI Model 2001': {'instrument_manual_name':'DRI_Model_2001_Manual.pdf'}, + 'Sunset OCEC Model 4':{'instrument_manual_name':'Sunset_OCEC_4_Specs.pdf'}, + 'Sunset OCEC Model 5':{'instrument_manual_name':'Sunset_OCEC_5l_Manual.pdf', 'instrument_further_details':'See more details here:http://www.sunlab.com/wp-content/uploads/Lab-Instrument-brochure.pdf'} + } +}, + +#------------------------------------ +#thermal-optical analysis - IMPROVE-A (TOA-I) + +'thermal-optical analysis - IMPROVE-A':{'abbreviation':'TOA-I', 'sampling_type':'injection', 'measured_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], 'qa_accepted_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], + 'instruments':{ + 'DRI Model 2001': {'instrument_manual_name':'DRI_Model_2001_Manual.pdf'}, + 'Sunset OCEC Model 4':{'instrument_manual_name':'Sunset_OCEC_4_Specs.pdf'}, + 'Sunset OCEC Model 5':{'instrument_manual_name':'Sunset_OCEC_5l_Manual.pdf', 'instrument_further_details':'See more details here:http://www.sunlab.com/wp-content/uploads/Lab-Instrument-brochure.pdf'} + } +}, + +#------------------------------------ +#thermal-optical analysis - EUSAAR2 (TOA-E) + +'thermal-optical analysis - EUSAAR2':{'abbreviation':'TOA-E', 'sampling_type':'injection', 'measured_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], 'qa_accepted_parameters':['C','PM10_C','PM2.5_C','PM1_C','EC','PM10_EC','PM2.5_EC','PM1_EC','OC','PM10_OC','PM2.5_OC','PM1_OC'], + 'instruments':{ + 'DRI Model 2001': {'instrument_manual_name':'DRI_Model_2001_Manual.pdf'}, + 'Sunset OCEC Model 4':{'instrument_manual_name':'Sunset_OCEC_4_Specs.pdf'}, + 'Sunset OCEC Model 5':{'instrument_manual_name':'Sunset_OCEC_5l_Manual.pdf', 'instrument_further_details':'See more details here:http://www.sunlab.com/wp-content/uploads/Lab-Instrument-brochure.pdf'} + } +}, + +#------------------------------------ +#aethalometer (ATH) + +#The aethalometer is an instrument designed for the measurement of black carbon deposit collected continuously deposited on quartz fiber filter (designed by Magee Scientific). +#The 'aethalometer' is the dominant market instrument (designed by Magee Scientific), of which there are multiple versions. +#It measures the concentration of optically absorbing (‘black’) suspended particulates in a gas colloid stream; commonly visualised as smoke or haze, often seen in ambient air under polluted conditions. +#The word aethalometer is derived from the Classical Greek verb ‘aethaloun’, meaning ‘to blacken with soot’. +#The gas stream (frequently ambient air) passes through a filter material which traps the suspended particulates, creating a deposit of increasing density. +#A light beam projected through the deposit is attenuated by those particles which are absorbing (‘black’) rather than scattering (‘white’). +#Measurements are made at successive regular time intervals. The increase in attenuation from one measurement to the next is proportional to the increase in the density of optically absorbing material on the filter: which, in turn, is proportional to the concentration of the material in the sampled air stream. +#The sample is collected as a spot on a roll of filter tape. +#When the density of the deposit spot reaches a pre-set limit, the tape advances to a fresh spot and the measurements continue. +#Measurement of the sample gas flow rate and knowledge of the instrument’s optical and mechanical characteristics permit a calculation of the average concentration of absorbing particles in the gas stream during the sampling period. +#Aethalometers may operate on time-base periods as rapid as 1 second, providing quasi-real-time data. Comparison of aethalometer data with other physical and chemical analyses allows the output to be expressed as a concentration of black carbon. +#More information here: https://www.tandfonline.com/doi/full/10.1080/027868290901972 + +'aethalometer':{'abbreviation':'ATH', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], + 'instruments':{ + 'Magee AE8': { 'instrument_further_details':'No manual or specifications available but confirmation instrument is aethalometer here: https://acp.copernicus.org/preprints/acp-2017-1117/acp-2017-1117-manuscript-version4.pdf Instrument is boradband, peaking at 830nm for EC: https://aaqr.org/articles/aaqr-15-05-simts-0358.pdf'}, + 'Magee AE16': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'instrument_further_details':'No manual or specifications available but confirmation instrument is aethalometer here: https://www.psi.ch/sites/default/files/import/lac/ProjectAddonCatcosOperationsEN/Aethalometer_book_2005.07.02.pdf'}, + 'Magee AE22': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'documented_resolution':{'BC':'0.1','PM10_BC':'0.1','PM2.5_BC':'0.1','PM1_BC':'0.1'}, 'documented_flow_rate':'2.0-6.0', 'instrument_manual_name':'Magee_AE31_Specs.pdf'}, + 'Magee AE30': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'instrument_further_details':'No manual or specifications available but confirmation instrument is aethalometer here: https://books.google.es/books?id=5btgEAAAQBAJ&pg=PA50&lpg=PA50&dq=magee+ae30&source=bl&ots=KYjCcR8cpP&sig=ACfU3U2a5-F3Pk0v2zEwLoG6ICBzir-egg&hl=en&sa=X&ved=2ahUKEwjphuPjraeAAxVQgf0HHbFtAoUQ6AF6BAgFEAM#v=onepage&q=magee%20ae30&f=false'}, + 'Magee AE31': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'documented_resolution':{'BC':'0.1','PM10_BC':'0.1','PM2.5_BC':'0.1','PM1_BC':'0.1'}, 'documented_flow_rate':'2.0-6.0', 'instrument_manual_name':'Magee_AE31_Specs.pdf'}, + 'Magee AE33': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'documented_lower_limit_of_detection':{'BC':'0.005','PM10_BC':'0.005','PM2.5_BC':'0.005','PM1_BC':'0.005'}, 'documented_upper_limit_of_detection':{'BC':'100.0','PM10_BC':'100.0','PM2.5_BC':'100.0','PM1_BC':'100.0'}, 'documented_resolution':{'BC':'0.03','PM10_BC':'0.03','PM2.5_BC':'0.03','PM1_BC':'0.03'}, 'documented_flow_rate':'2.0-5.0', 'instrument_manual_name':'Magee_AE33_Specs.pdf'}, + 'Magee AE42-2':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm'], 'documented_resolution':{'BC':'0.1','PM10_BC':'0.1','PM2.5_BC':'0.1','PM1_BC':'0.1'}, 'documented_flow_rate':'2.0-5.0', 'instrument_manual_name':'Magee_AE42_Specs.pdf'}, + 'Magee AE42-7':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_950nm'], 'documented_resolution':{'BC':'0.1','PM10_BC':'0.1','PM2.5_BC':'0.1','PM1_BC':'0.1'}, 'documented_flow_rate':'2.0-5.0', 'instrument_manual_name':'Magee_AE42_Specs.pdf'} + } +}, + +#------------------------------------ +#multi angle absorption photometer (MAAP) + +#The MAAP instrument (introduced with the Thermo-Scientific model 5012) was specifically developed to reduce the uncertainties in black carbon measurements caused by aerosol scattering. +#The MAAP measures black carbon mass loadings based on aerosol optical absorption. In common with the Aethalometer this measurement is made on particles collected on a filter substrate, however there are some important differences in how the instruments operate, as well as with the algorithms used to extract the absorption coefficient and mass loading. +#With the MAAP the optical absorption coefficient of aerosol collected on a filter is determined by radiative transfer considerations which include multiple scattering effects and absorption enhancement due to reflections from the filter. +#This calculation is based on the transmitted and reflected phase functions which are defined by directly measured values of transmission, direct and diffuse back scattering. +#Full details of the algorithms used are given by Petzold et al (2002 and 2004). +#Lab work showed that the diffuse back scatter component was a strong function of the fraction of scattering aerosol, being decreased (relative to the filter) for low scattering fractions and increased for high scattering fractions. +#This lab work also informed the choice of angles for the detectors used. + +#See here for more details: http://www.cas.manchester.ac.uk/restools/instruments/aerosol/maap/ + +#See references: +#Petzold A, Kramer H, and Schönlinner M, Continuous Measurement of Atmospheric Black Carbon Using a Multi-angle Absorption Photometer. Environmental Science and Pollution Research, Special Issue 4, 78-82, 2002. +#Petzold A and Schönlinner M, The Multi-angle absorption photometer – A new method for the measurement of aerosol light absorption and atmospheric black carbon. Journal of Aerosol Science, 35, 421-441, 2004. + +'multi angle absorption photometer':{'abbreviation':'MAAP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], + 'instruments':{ + 'Thermo 5012':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_670nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_670nm'], 'documented_lower_limit_of_detection':{'BC':'0.02','PM10_BC':'0.02','PM2.5_BC':'0.02','PM1_BC':'0.02','AERO_ABS_COEFF_670nm':'0.13','PM10_AERO_ABS_COEFF_670nm':'0.13','PM2.5_AERO_ABS_COEFF_670nm':'0.13','PM1_AERO_ABS_COEFF_670nm':'0.13'}, 'documented_upper_limit_of_detection':{'BC':'180.0','PM10_BC':'180.0','PM2.5_BC':'180.0','PM1_BC':'180.0'}, 'documented_flow_rate':'16.7', 'instrument_manual_name':'Thermo_5012_Manual.pdf'} + } +}, + +#------------------------------------ +#particulate soot absorption photometer (PSAP) + +#The PSAP instrument (manufactured by Radiance Research Inc.) measures the change in optical transmission of a filter as aerosol is deposited on the filter over time. +#The PSAP measures black carbon mass loadings based on aerosol optical absorption. In common with the Aethalometer this measurement is made on particles collected on a filter substrate, however there are some important differences in how the instruments operate, as well as with the algorithms used to extract the absorption coefficient and mass loading. +#There are currently 2 instrument types, 1 measuring at 1 wavelength (525nm), and one at 3 wavelengths (467, 530 and 660nm). +#The change in transmission from one measurement to the next is related to the optical absorption coefficient (bap m-1) of the aerosol deposited in this time. +#In turn this can be related to black carbon mass by dividing by the specific absorption for black carbon at the wavelength of the instrument. +#Comparisons between the PSAP aerosol optical absorption measurement and reference techniques presented by Bond et al (1999), show that the PSAP also responds to pure scattering particles and external mixtures of scattering and absorbing particles. +#This is because back scatter from scattering particles on the filter reduces the transmitted intensity. Bond et al show that the apparent absorption coefficient of purely scattering particles as measured by the PSAP is about 2% of their scattering coefficient. +#Additionally even when the PSAP measurement is corrected for errors in flow rate, collection spot area and the presence of scattering particles, the same series of experiments showed that PSAP optical absorption coefficients were about 20% higher than the reference measurement for the type of aerosol used. +#Thus PSAP data must be carefully calibrated and corrected based on measurements of aerosol scattering coefficient. + +#See reference: Bond TC, Anderson TL, Campbell D, Calibration and intercomparison of filter-based measurements of visible light absorption by aerosols. Aerosol Science and Technology 30, 582–600, 1999 + +'particulate soot absorption photometer':{'abbreviation':'PSAP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], + 'instruments':{ + 'ITM Custom': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm'], 'instrument_further_details':'No manual or specifications available but confirmation instrument is particulate soot absorption photometer here: https://amt.copernicus.org/articles/4/245/2011/amt-4-245-2011.pdf'}, + 'MISU PSAP-1W': {'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_522nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_522nm'], 'instrument_further_details':'No manual or specifications available but confirmation instrument is particulate soot absorption photometer here: https://amt.copernicus.org/articles/4/245/2011/amt-4-245-2011.pdf'}, + 'Radiance PSAP-1W':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_565nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_565nm'], 'instrument_further_details':'No manual or specifications available but confirmation instrument is particulate soot absorption photometer here: https://gml.noaa.gov/aero/instrumentation/psap.html'}, + 'Radiance PSAP-3W':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_660nm'], 'documented_resolution':{'AERO_ABS_COEFF_467nm':'0.3','PM10_AERO_ABS_COEFF_467nm':'0.3','PM2.5_AERO_ABS_COEFF_467nm':'0.3','PM1_AERO_ABS_COEFF_467nm':'0.3','AERO_ABS_COEFF_530nm':'0.3','PM10_AERO_ABS_COEFF_530nm':'0.3','PM2.5_AERO_ABS_COEFF_530nm':'0.3','PM1_AERO_ABS_COEFF_530nm':'0.3','AERO_ABS_COEFF_550nm':'0.3','PM10_AERO_ABS_COEFF_550nm':'0.3','PM2.5_AERO_ABS_COEFF_550nm':'0.3','PM1_AERO_ABS_COEFF_550nm':'0.3','AERO_ABS_COEFF_660nm':'0.3','PM10_AERO_ABS_COEFF_660nm':'0.3','PM2.5_AERO_ABS_COEFF_660nm':'0.3','PM1_AERO_ABS_COEFF_660nm':'0.3'}, 'documented_precision':{'AERO_ABS_COEFF_467nm':'0.1','PM10_AERO_ABS_COEFF_467nm':'0.1','PM2.5_AERO_ABS_COEFF_467nm':'0.1','PM1_AERO_ABS_COEFF_467nm':'0.1','AERO_ABS_COEFF_530nm':'0.1','PM10_AERO_ABS_COEFF_530nm':'0.1','PM2.5_AERO_ABS_COEFF_530nm':'0.1','PM1_AERO_ABS_COEFF_530nm':'0.1','AERO_ABS_COEFF_550nm':'0.1','PM10_AERO_ABS_COEFF_550nm':'0.1','PM2.5_AERO_ABS_COEFF_550nm':'0.1','PM1_AERO_ABS_COEFF_550nm':'0.1','AERO_ABS_COEFF_660nm':'0.1','PM10_AERO_ABS_COEFF_660nm':'0.1','PM2.5_AERO_ABS_COEFF_660nm':'0.1','PM1_AERO_ABS_COEFF_660nm':'0.1'}, 'documented_flow_rate':'1.0', 'instrument_manual_name':'Radiance_PSAP-3W_Manual.pdf'} + } +}, + +#------------------------------------ +#continuous light absorption photometer (CLAP) + +#The Continuous Light Absorption Photometer (CLAP) is a NOAA/GMD developed, filter-based method that measures light absorption by particles at three wavelengths (467, 528, 652 nm). +#The CLAP is functionally comparable to a widely-used commercial instrument, the Particle/Soot Absorption Photometer (PSAP), but does not suffer from the same operating limitations as the PSAP (data loss from overloaded filters, unheated optics block, internal black box processing of data). +#The choice of a functionally comparable design to the PSAP allowed measurements from the CLAP to use the well-established PSAP correction schemes that account for known imperfections in all filter-based absorption measurements. +#Ogren et al. (2017) describes the design, operation and uncertainties of the CLAP and presents comparisons with the PSAP at several NFAN sites. +#The primary advantages of the CLAP, compared to the PSAP, are that it is one-tenth the size, can sample for roughly eight times as long before the operator needs to change the filter, and is temperature-stabilized to reduce sensitivity to changes in room temperature. +#In addition, the computer software running on the internal microprocessor is completely open on the CLAP. These features make the CLAP much better suited for long-term monitoring applications, and currently NOAA-built CLAPs are deployed at 23 stations around the globe. +#During the initial field deployment of the NOAA-built CLAPs, they were run in parallel with PSAPs for over a year at multiple stations to confirm that the CLAPs and PSAPs give comparable results. Subsequently, NOAA has retired the PSAPs from service at its monitoring stations. + +'continuous light absorption photometer':{'abbreviation':'CLAP', 'sampling_type':'low volume continuous', 'sample_preparation_type':'filter', 'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_370nm','AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_470nm','AERO_ABS_COEFF_520nm','AERO_ABS_COEFF_522nm','AERO_ABS_COEFF_525nm','AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_530nm','AERO_ABS_COEFF_550nm','AERO_ABS_COEFF_565nm','AERO_ABS_COEFF_590nm','AERO_ABS_COEFF_637nm','AERO_ABS_COEFF_652nm','AERO_ABS_COEFF_660nm','AERO_ABS_COEFF_670nm','AERO_ABS_COEFF_880nm','AERO_ABS_COEFF_950nm','PM10_AERO_ABS_COEFF_370nm','PM10_AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_470nm','PM10_AERO_ABS_COEFF_520nm','PM10_AERO_ABS_COEFF_522nm','PM10_AERO_ABS_COEFF_525nm','PM10_AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_530nm','PM10_AERO_ABS_COEFF_550nm','PM10_AERO_ABS_COEFF_565nm','PM10_AERO_ABS_COEFF_590nm','PM10_AERO_ABS_COEFF_637nm','PM10_AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_660nm','PM10_AERO_ABS_COEFF_670nm','PM10_AERO_ABS_COEFF_880nm','PM10_AERO_ABS_COEFF_950nm','PM2.5_AERO_ABS_COEFF_370nm','PM2.5_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_470nm','PM2.5_AERO_ABS_COEFF_520nm','PM2.5_AERO_ABS_COEFF_522nm','PM2.5_AERO_ABS_COEFF_525nm','PM2.5_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_530nm','PM2.5_AERO_ABS_COEFF_550nm','PM2.5_AERO_ABS_COEFF_565nm','PM2.5_AERO_ABS_COEFF_590nm','PM2.5_AERO_ABS_COEFF_637nm','PM2.5_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_660nm','PM2.5_AERO_ABS_COEFF_670nm','PM2.5_AERO_ABS_COEFF_880nm','PM2.5_AERO_ABS_COEFF_950nm','PM1_AERO_ABS_COEFF_370nm','PM1_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_470nm','PM1_AERO_ABS_COEFF_520nm','PM1_AERO_ABS_COEFF_522nm','PM1_AERO_ABS_COEFF_525nm','PM1_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_530nm','PM1_AERO_ABS_COEFF_550nm','PM1_AERO_ABS_COEFF_565nm','PM1_AERO_ABS_COEFF_590nm','PM1_AERO_ABS_COEFF_637nm','PM1_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_660nm','PM1_AERO_ABS_COEFF_670nm','PM1_AERO_ABS_COEFF_880nm','PM1_AERO_ABS_COEFF_950nm'], + 'instruments':{ + 'NOAA CLAP':{'measured_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_652nm'], 'qa_accepted_parameters':['BC','PM10_BC','PM2.5_BC','PM1_BC','AERO_ABS_COEFF_467nm','PM10_AERO_ABS_COEFF_467nm','PM2.5_AERO_ABS_COEFF_467nm','PM1_AERO_ABS_COEFF_467nm','AERO_ABS_COEFF_528nm','PM10_AERO_ABS_COEFF_528nm','PM2.5_AERO_ABS_COEFF_528nm','PM1_AERO_ABS_COEFF_528nm','AERO_ABS_COEFF_652nm','PM10_AERO_ABS_COEFF_652nm','PM2.5_AERO_ABS_COEFF_652nm','PM1_AERO_ABS_COEFF_652nm'], 'documented_lower_limit_of_detection':{'AERO_ABS_COEFF_467nm':'0.02','PM10_AERO_ABS_COEFF_467nm':'0.02','PM2.5_AERO_ABS_COEFF_467nm':'0.02','PM1_AERO_ABS_COEFF_467nm':'0.02','AERO_ABS_COEFF_528nm':'0.02','PM10_AERO_ABS_COEFF_528nm':'0.02','PM2.5_AERO_ABS_COEFF_528nm':'0.02','PM1_AERO_ABS_COEFF_528nm':'0.02','AERO_ABS_COEFF_652nm':'0.02','PM10_AERO_ABS_COEFF_652nm':'0.02','PM2.5_AERO_ABS_COEFF_652nm':'0.02','PM1_AERO_ABS_COEFF_652nm':'0.02'}, 'documented_precision':{'AERO_ABS_COEFF_467nm':'4.0%','PM10_AERO_ABS_COEFF_467nm':'4.0%','PM2.5_AERO_ABS_COEFF_467nm':'4.0%','PM1_AERO_ABS_COEFF_467nm':'4.0%','AERO_ABS_COEFF_528nm':'4.0%','PM10_AERO_ABS_COEFF_528nm':'4.0%','PM2.5_AERO_ABS_COEFF_528nm':'4.0%','PM1_AERO_ABS_COEFF_528nm':'4.0%','AERO_ABS_COEFF_652nm':'4.0%','PM10_AERO_ABS_COEFF_652nm':'4.0%','PM2.5_AERO_ABS_COEFF_652nm':'4.0%','PM1_AERO_ABS_COEFF_652nm':'4.0%'}, 'documented_flow_rate':'1.0', 'instrument_further_details':'Specifications given in paper: https://amt.copernicus.org/articles/10/4805/2017/amt-10-4805-2017.pdf'} + } +}, + +#------------------------------------ +#flame atomic absorption spectroscopy (F-AAS) + +#Atomic absorption spectroscopy (AAS) detects elements in either liquid or solid samples through the application of characteristic wavelengths of electromagnetic radiation from a light source. +#Individual elements will absorb wavelengths differently, and these absorbances are measured against standards. In effect, AAS takes advantage of the different radiation wavelengths that are absorbed by different atoms. +#In AAS, analytes are first atomized so that their characteristic wavelengths are emitted and recorded. Then, during excitation, electrons move up one energy level in their respective atoms when those atoms absorb a specific energy. +#As electrons return to their original energy state, they emit energy in the form of light. +#This light has a wavelength that is characteristic of the element. Depending on the light wavelenth and its intensity, specific elements can be detected and their concentrations measured. +#Applying the Beer-Lambert law directly in AA spectroscopy is difficult due to variations in the atomization efficiency from the sample matrix, and nonuniformity of concentration and path length of analyte atoms. +#Flame atomic absorption spectrometry (F-AAS) is where the sample is first atomised using flames, principally a air-acetylene flame with a temperature of about 2300 °C and a nitrous oxide system (N2O)-acetylene flame with a temperature of about 2700 °C. +#The latter flame, in addition, offers a more reducing environment, being ideally suited for analytes with high affinity to oxygen. +#Liquid or dissolved samples are typically used with flame atomizers. +#The sample solution is aspirated by a pneumatic analytical nebulizer, transformed into an aerosol, which is introduced into a spray chamber, where it is mixed with the flame gases and conditioned in a way that only the finest aerosol droplets (< 10 μm) enter the flame. +#This conditioning process is responsible that only about 5% of the aspirated sample solution reaches the flame, but it also guarantees a relatively high freedom from interference. +#See here for more information: https://sites.chem.colostate.edu/diverdi/C433/experiments/iron%20analysis/references/aas%20methods%20-%20agilent.pdf + +'flame atomic absorption spectroscopy':{'abbreviation':'F-AAS', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'GBC 932': {'instrument_further_details':'No manual or specifications available but confirmation it is uses flame atomic absorption spectroscopy here: http://www.speciation.net/Database/Instruments/GBC-Scientific-Equipment-Ltd/932-Plus--Atomic-Absorption-Spectrometer-;i3193'}, + 'Perkin Elmer AAnalyst 600':{'instrument_manual_name':'Perkin_Elmer_AAnalyst_600_800_Specs.pdf'}, + 'Perkin Elmer AAnalyst 700':{'instrument_manual_name':'Perkin_Elmer_AAnalyst_700_Specs.pdf'}, + 'Perkin Elmer AAnalyst 800':{'instrument_manual_name':'Perkin_Elmer_AAnalyst_600_800_Specs.pdf'}, + 'Varian SpectrAA 50': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 55': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 110': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 220': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 880': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian 240 AA': {'instrument_manual_name':'Varian_240_AA_Specs.pdf'} + } +}, + +#------------------------------------ +#graphite furnace atomic absorption spectroscopy (GF-AAS) + +#Graphite furnace atomic absorption spectroscopy (GF-AAS) (also known as Electrothermal Atomic Absorption Spectroscopy (ET-AAS)) is a type of spectrometry that uses a graphite-coated furnace to vaporize the sample. +#In GF-AAS, samples are deposited in a small graphite or pyrolytic carbon coated graphite tube, which can then be heated to vaporize and atomize the analyte. +#The main advantages of the graphite furnace comparing to flame atomic absorption are the following: +#-The detection limits for the graphite furnace fall in the ppb range for most elements +#-Interference problems are minimized with the development of improved instrumentation +#-The graphite furnace can determine most elements measurable by flame atomic absorption in a wide variety of matrices. + +'graphite furnace atomic absorption spectroscopy':{'abbreviation':'GF-AAS', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Perkin Elmer AAnalyst 600': {'instrument_manual_name':'Perkin_Elmer_AAnalyst_600_800_Specs.pdf'}, + 'Perkin Elmer AAnalyst 700': {'instrument_manual_name':'Perkin_Elmer_AAnalyst_700_Specs.pdf'}, + 'Perkin Elmer AAnalyst 800': {'instrument_manual_name':'Perkin_Elmer_AAnalyst_600_800_Specs.pdf'}, + 'Perkin Elmer 4110 ZL': {'instrument_further_details':'No manual or specifications available but confirmation it is uses graphite furnace atomic absorption spectroscopy here: https://www.labx.com/product/perkin-elmer-4100zl-atomic-absorption'}, + 'Unicam Solar 989 QZ': {'instrument_further_details':'No manual or specifications available but confirmation it is uses graphite furnace atomic absorption spectroscopy here: https://www.sedgeochem.uni-bremen.de/aas.html'}, + 'Varian SpectrAA 50': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 55': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 110': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 220': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 400 GTA-96':{'instrument_further_details':'No manual or specifications available but confirmation it is uses graphite furnace atomic absorption spectroscopy here: http://www.labwrench.com/?equipment.view/equipmentNo/20158/Varian/SpectrAA-400/'}, + 'Varian SpectrAA 880': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 880z': {'instrument_further_details':'No manual or specifications available but confirmation it is uses graphite furnace atomic absorption spectroscopy here: http://www.medwow.com/med/atomic-absorption/varian/spectraa-880z/2927.model-spec'}, + 'Varian 240 AA': {'instrument_manual_name':'Varian_240_AA_Specs.pdf'} + } +}, + +#------------------------------------ +#cold vapour atomic absorption spectroscopy (CV-AAS) + +#Cold vapour atomic absorption spectroscopy (CV-AAS) is a method limited to the determination of mercury, due to it being the only metallic element to have a large enough vapor pressure at ambient temperature. +#Because of this, it has an important use in determining organic mercury compounds in samples and their distribution in the environment. +#The method initiates by converting mercury into Hg2+ by oxidation from nitric and sulfuric acids, followed by a reduction of Hg2+ with tin(II) chloride. +#The mercury, is then swept into a long-pass absorption tube by bubbling a stream of inert gas through the reaction mixture. +#The concentration is determined by measuring the absorbance of this gas at 253.7 nm. Detection limits for this technique are in the parts-per-billion range making it an excellent mercury detection atomization method. +#See here for determination of Cd using this method also: https://www.ncbi.nlm.nih.gov/pubmed/19071344 + +'cold vapour atomic absorption spectroscopy':{'abbreviation':'CV-AAS', 'sampling_type':'injection', 'measured_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'qa_accepted_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], + 'instruments':{ + 'Envea UT-3000': {'sampling_type':'continuous injection', 'sample_preparation_type':'filter;preconcentration', 'instrument_manual_name':'Envea_UT-3000_Specs.pdf'}, + 'Varian SpectrAA 50': { 'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 55': { 'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 110':{ 'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 220':{ 'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 880':{ 'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian 240 AA': { 'instrument_manual_name':'Varian_240_AA_Specs.pdf'} + } +}, + +#------------------------------------ +#hydride generation atomic absorption spectroscopy (HG-AAS) + +#The hydride generation atomic absorption spectroscopy (HG-AAS) method is specialised for the measurement of specific elements. +#The technique provides a means of introducing samples containing arsenic, antimony, selenium, bismuth, and lead into an atomizer in the gas phase. +#With these elements, hydride atomization enhances detection limits by a factor of 10 to 100 compared to alternative methods. +#Hydride generation occurs by adding an acidified aqueous solution of the sample to a 1% aqueous solution of sodium borohydride, all of which is contained in a glass vessel. +#The volatile hydride generated by the reaction that occurs is swept into the atomization chamber by an inert gas, where it undergoes decomposition. +#This process forms an atomized form of the analyte, which can then be measured by absorption or emission spectrometry. +#See more information here: https://www.sciencedirect.com/topics/chemistry/hydride-generation + +'hydride generation atomic absorption spectroscopy':{'abbreviation':'HG-AAS', 'sampling_type':'injection', 'measured_parameters':['As','PM10_As','PM2.5_As','PM1_As','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se'], 'qa_accepted_parameters':['As','PM10_As','PM2.5_As','PM1_As','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se'], + 'instruments':{ + 'Varian SpectrAA 50': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 55': {'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 110':{'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 220':{'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian SpectrAA 880':{'instrument_manual_name':'Varian_SpectrAA_50_55_110_220_Specs.pdf'}, + 'Varian 240 AA': {'instrument_manual_name':'Varian_240_AA_Specs.pdf'} + } +}, + +#------------------------------------ +#flame atomic emission spectroscopy (F-AES) + +#Atomic emission spectroscopy (AES) is a method of chemical analysis that uses the intensity of light emitted from a flame, plasma, arc, or spark at a particular wavelength to determine the quantity of an element in a sample. +#The wavelength of the atomic spectral line gives the identity of the element while the intensity of the emitted light is proportional to the number of atoms of the element. + +#AAS and AES are similar methods but the differences are as follows: +#-Light Source: In AAS, a monochromatic light source is used to provide energy for the excitation of electrons. In the case of AES, it is a flame that is often used. +#-Atomization: In AAS, there is a separate chamber for atomization of the sample. However, in AES, atomization takes place step by step upon the introduction of the sample to the flame. +#-Principle of operation: In AAS, when monochromatic light is bombarded through the sample the atoms absorb energy, and the extent of absorption is recorded. In AES, the sample which gets atomised in the flame then absorbs the energy through the electrons which get excited. Later this energy is released upon the relaxation of the atoms and is measured by the instrument as the emitted energy. + +#In flame atomic emission spectroscopy (F-AES) a sample of a material (analyte) is brought into the flame as a gas, sprayed solution, or directly inserted into the flame by use of a small loop of wire, usually platinum. +#The heat from the flame evaporates the solvent and breaks chemical bonds to create free atoms. The thermal energy also excites the atoms into excited electronic states that subsequently emit light when they return to the ground electronic state. +#Each element emits light at a characteristic wavelength, which is dispersed by a grating or prism and detected in the spectrometer. + +'flame atomic emission spectroscopy':{'abbreviation':'F-AES', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{} +}, + +#------------------------------------ +#inductively coupled plasma atomic emission spectroscopy (ICP-AES) + +#Inductively coupled plasma atomic emission spectroscopy (ICP-AES), also referred to as inductively coupled plasma optical emission spectrometry (ICP-OES), is an analytical technique used for the detection of chemical elements. +#It is a type of emission spectroscopy that uses the inductively coupled plasma to produce excited atoms and ions that emit electromagnetic radiation at wavelengths characteristic of a particular element. +#It is a flame technique with a flame temperature in a range from 6000 to 10,000 K. +#The intensity of this emission is indicative of the concentration of the element within the sample. + +'inductively coupled plasma atomic emission spectroscopy':{'abbreviation':'ICP-AES', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Agilent 5100': {'instrument_manual_name':'Agilent_5100_Specs.pdf'}, + 'Perkin Elmer Optima 7300': {'instrument_manual_name':'PerkinElmerOptima7300_Specs.pdf'}, + 'Thermo IRIS Intrepid II': {'instrument_further_details':'No manual or specifications available but confirmation it is uses inductively coupled plasma atomic emission spectroscopy here: http://www.speciation.net/Database/Instruments/Thermo-Scientific/IRIS-Intrepid-II-;i123'}, + 'Thermo Jarrell Ash Atomscan 16': {'instrument_further_details':'No manual or specifications available but confirmation it is uses inductively coupled plasma atomic emission spectroscopy here: https://caeonline.com/buy/spectrometers/thermo-jarrell-ash-baird-atomscan-16/9115986'}, + 'Thermo Jarrell Ash IRIS Advantage':{'instrument_further_details':'No manual or specifications available but confirmation it is uses inductively coupled plasma atomic emission spectroscopy here: https://www.spectralabsci.com/equipment/thermo-jarrell-ash-iris-advantage-inductively-coupled-plasma-optical-emission-spectrometer/'}, + 'Varian Vista-Pro': {'instrument_manual_name':'Varian_Vista-Pro_Specs.pdf'} + } +}, + +#------------------------------------ +#cold vapour atomic fluorescence spectroscopy (CV-AFS) + +#Cold vapour atomic fluorescence spectroscopy (CV-AFS) is a subset of the analytical technique known as atomic fluorescence spectroscopy (AFS). +#Used in the measurement of trace amounts of volatile heavy metals such as mercury, cold vapour AFS makes use of the unique characteristic of mercury that allows vapour measurement at room temperature. +#Free mercury atoms in a carrier gas are excited by a collimated ultraviolet light source at a wavelength of 253.7 nanometres. +#The excited atoms re-radiate their absorbed energy (fluoresce) at this same wavelength. Unlike the directional excitation source, the fluorescence is omnidirectional and may thus be detected using a photomultiplier tube or UV photodiode. +#Gold coated traps may be used to collect mercury in ambient air or other media. +#The traps are then heated, releasing the mercury from the gold while passing argon through the cartridge. +#This preconcentrates the mercury, increasing sensitivity, and also transfers the mercury into an inert gas. +#See more information for measurement of Hg here: https://ec.europa.eu/environment/air/pdf/pp_mercury4.pdf + +'cold vapour atomic fluorescence spectroscopy':{'abbreviation':'CV-AFS', 'sampling_type':'injection', 'measured_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'qa_accepted_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], + 'instruments':{ + 'Tekran 2537A': {'sampling_type':'continuous injection', 'sample_preparation_type':'preconcentration', 'measured_parameters':['Hg-TGM'], 'qa_accepted_parameters':['Hg-TGM'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_upper_limit_of_detection':{'Hg-TGM':'10.0'}, 'documented_flow_rate':'0.5-1.5', 'instrument_further_details':'Specifications here: https://speciation.net/Database/Instruments/Tekran-Instruments-Corporation/Model-2537A-Mercury-Vapor-Analyzer-;i306'}, + 'Tekran 2537A-1130': {'sampling_type':'continuous injection', 'sample_preparation_type':'denuder;filter;preconcentration', 'measured_parameters':['Hg-GEM','Hg-GOM','Hg-TGM'], 'qa_accepted_parameters':['Hg-GEM','Hg-GOM','Hg-TGM'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_upper_limit_of_detection':{'Hg-TGM':'10.0'}, 'documented_flow_rate':'0.5-1.5', 'instrument_manual_name':'Tekran1130_Specs.pdf'}, + 'Tekran 2537A-1130-1135':{'sampling_type':'continuous injection', 'sample_preparation_type':'denuder;filter;preconcentration', 'measured_parameters':['Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'qa_accepted_parameters':['Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_upper_limit_of_detection':{'Hg-TGM':'10.0'}, 'documented_flow_rate':'0.5-1.5', 'instrument_manual_name':'Tekran1135_Specs.pdf'}, + 'Tekran 2537X': {'sampling_type':'continuous injection', 'sample_preparation_type':'preconcentration', 'measured_parameters':['Hg-TGM'], 'qa_accepted_parameters':['Hg-TGM'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_flow_rate':'0.7-1.5', 'instrument_manual_name':'Tekran2537X_Specs.pdf'}, + 'Tekran 2537X-1130': {'sampling_type':'continuous injection', 'sample_preparation_type':'denuder;filter;preconcentration', 'measured_parameters':['Hg-GEM','Hg-GOM','Hg-TGM'], 'qa_accepted_parameters':['Hg-GEM','Hg-GOM','Hg-TGM'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_flow_rate':'0.7-1.5', 'instrument_manual_name':'Tekran1130_Specs.pdf'}, + 'Tekran 2537X-1130-1135':{'sampling_type':'continuous injection', 'sample_preparation_type':'denuder;filter;preconcentration', 'measured_parameters':['Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'qa_accepted_parameters':['Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'documented_lower_limit_of_detection':{'Hg-TGM':'0.0001'}, 'documented_flow_rate':'10.0', 'instrument_manual_name':'Tekran1135_Specs.pdf'} + } +}, + +#------------------------------------ +#gas chromatography - cold vapour atomic fluorescence spectroscopy (GC-CV-AFS) + +#Combination of gas chromatography and cold vapour atomic fluorescence spectroscopy for increased speciation + +'gas chromatography - cold vapour atomic fluorescence spectroscopy':{'abbreviation':'GC-CV-AFS', 'sampling_type':'injection', 'measured_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], 'qa_accepted_parameters':['Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg'], + 'instruments':{} +}, + +#------------------------------------ +#inductively coupled plasma mass spectrometry (ICP-MS) + +#Inductively coupled plasma mass spectrometry (ICP-MS) is a type of mass spectrometry which is capable of detecting metals and several non-metals at concentrations as low as one part per quadrillion on non-interfered low-background isotopes. +#This is achieved by ionizing the sample with inductively coupled plasma and then using a mass spectrometer to separate and quantify those ions. +#Compared to atomic absorption spectroscopy, ICP-MS has greater speed, precision, and sensitivity. +#However, compared with other types of mass spectrometry, such as thermal ionization mass spectrometry (TIMS) and glow discharge mass spectrometry (GD-MS), ICP-MS introduces many interfering species: argon from the plasma, component gases of air that leak through the cone orifices, and contamination from glassware and the cones. + +'inductively coupled plasma mass spectrometry':{'abbreviation':'ICP-MS', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Agilent 7500': {'instrument_manual_name':'Agilent_7500_Specs.pdf'}, + 'Agilent 7700': {'instrument_manual_name':'Agilent_7700_Specs.pdf'}, + 'Agilent 7700e': {'instrument_manual_name':'Agilent_7700_Specs.pdf'}, + 'Agilent 7700s': {'instrument_manual_name':'Agilent_7700_Specs.pdf'}, + 'Agilent 7700x': {'instrument_manual_name':'Agilent_7700_Specs.pdf'}, + 'Agilent 7800': {'instrument_manual_name':'Agilent_7800_Specs.pdf'}, + 'Agilent 7900': {'instrument_manual_name':'Agilent_7900_Specs.pdf'}, + 'Agilent 8900': {'instrument_manual_name':'Agilent_8900_Specs.pdf'}, + 'Perkin Elmer ELAN DRC II':{'instrument_manual_name':'Perkin_Elmer_ELAN_DRC_II_specs.pdf'}, + 'Perkin Elmer ELAN 6000': {'instrument_further_details':'No manual or specifications available but confirmation it is uses inductively coupled plasma mass spectrometry here: http://www.speciation.net/Database/Instruments/PerkinElmer-SCIEX/ELAN-6000-;i533'}, + 'Thermo Finnigan ELEMENT2':{'instrument_manual_name':'Thermo_Finnigan_ELEMENT2_Specs.pdf'}, + 'Thermo iCAP RQ': {'instrument_manual_name':'Thermo_iCAP_RQ_Specs.pdf'}, + 'Thermo XSERIES': {'instrument_further_details':'No manual or specifications available but confirmation it is uses inductively coupled plasma mass spectrometry here: https://profcontrol.de/Thermo-Scientific-X-Series-ICP-MS-Quadrupole-Mass-Spectrometer_1'}, + 'Thermo XSERIES 2': {'instrument_manual_name':'Thermo_XSERIES_2_Specs.pdf'}, + } +}, + +#------------------------------------ +#X-ray fluorescence spectroscopy (XRFS) + +#X-Ray Fluorescence Spectroscopy (XRFS) is an analytical technique that uses the interaction of x-rays with a material to determine its elemental composition. XRF is suitable for solids, liquids and powders, and in most circumstances is non-destructive. +#There are two main XRF methodologies - energy dispersive (EDXRF) and wavelength dispersive (WDXRF). Each method has its own advantages and disadvantages. +#The sample is irradiated with x-rays which causes the emission of fluorescent x-rays to emerge from the sample. +#The range of detectable elements varies according to instrument configuration and set up, but typically EDXRF covers all elements from sodium (Na) to uranium (U), whilst WDXRF can extend this down to beryllium (Be). Concentrations can range from 100% down to ppm and in some cases sub-ppm levels. +#Limits of detection depend upon the specific element and the sample matrix, but as a general rule, heavier elements will have better detection limits. +#The key components of a typical XRF spectrometer are: 1. Source of X-Rays used to irradiate the sample. 2. Sample. 3. Detection of the emitted fluorescent X-Rays. 4. The resulting XRF spectrum shows intensity of X-Rays (usually in counts per second) as a function of energy (usually in eV). + +'X-ray fluorescence spectroscopy':{'abbreviation':'XRFS', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{ + 'Pall Xact 620': {'sampling_type':'continuous injection', 'sample_preparation_type':'filter', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Pall_Xact_620_Specs.pdf'}, + 'Pall Xact 625': {'sampling_type':'continuous injection', 'sample_preparation_type':'filter', 'documented_flow_rate':'16.7', 'instrument_manual_name':'Pall_Xact_625_Specs.pdf'}, + 'Philips PW2400':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses X-ray fluorescence spectroscopy here:http://sr-sc-8f00.unifr.ch/geoscience/geology/assets/files/Site%20Science%20de%20la%20terre/PDFLabo/PW2400.pdf'} + } +}, + +#------------------------------------ +#particle induced X-ray emission (PIXE) + +#particle induced X-ray emission is a powerful and relatively simple analytical technique that can be used to identify and quantify trace elements typically ranging from Al to U. +#After high energy ion bombardment, X-rays are emitted which can be measured. +#Sample irradiation is usually performed by means of protons or alpha particles produced by an accelerator. +#X-ray detection is usually done by energy dispersive semiconductor detectors such as Si(Li) or High Purity Germanium detectors. +#Varies from X-ray fluorescence spectroscopy as x-ray emission is induced by a particle, not X-rays. + +'particle induced X-ray emission':{'abbreviation':'PIXE', 'sampling_type':'injection', 'measured_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','BC','PM10_BC','PM2.5_BC','PM1_BC','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','MSA','PM10_MSA','PM2.5_MSA','PM1_MSA','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','NH4NO3','PM10_NH4NO3','PM2.5_NH4NO3','PM1_NH4NO3','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], 'qa_accepted_parameters':['Al','PM10_Al','PM2.5_Al','PM1_Al','As','PM10_As','PM2.5_As','PM1_As','C','PM10_C','PM2.5_C','PM1_C','Ca++','PM10_Ca++','PM2.5_Ca++','PM1_Ca++','Cd','PM10_Cd','PM2.5_Cd','PM1_Cd','Cl-','PM10_Cl-','PM2.5_Cl-','PM1_Cl-','Co','PM10_Co','PM2.5_Co','PM1_Co','Cr','PM10_Cr','PM2.5_Cr','PM1_Cr','Cu','PM10_Cu','PM2.5_Cu','PM1_Cu','Fe','PM10_Fe','PM2.5_Fe','PM1_Fe','Hg-GEM','Hg-GOM','Hg-TGM','Hg','PM10_Hg','PM2.5_Hg','PM1_Hg','K+','PM10_K+','PM2.5_K+','PM1_K+','Mg++','PM10_Mg++','PM2.5_Mg++','PM1_Mg++','Mn','PM10_Mn','PM2.5_Mn','PM1_Mn','Na+','PM10_Na+','PM2.5_Na+','PM1_Na+','NH4+','PM10_NH4+','PM2.5_NH4+','PM1_NH4+','Ni','PM10_Ni','PM2.5_Ni','PM1_Ni','NO3-','PM10_NO3-','PM2.5_NO3-','PM1_NO3-','OC','PM10_OC','PM2.5_OC','PM1_OC','Pb','PM10_Pb','PM2.5_Pb','PM1_Pb','Se','PM10_Se','PM2.5_Se','PM1_Se','SO4--','PM10_SO4--','PM2.5_SO4--','PM1_SO4--','SO4--_NSS','PM10_SO4--_NSS','PM2.5_SO4--_NSS','PM1_SO4--_NSS','SO4--_SS','PM10_SO4--_SS','PM2.5_SO4--_SS','PM1_SO4--_SS','V','PM10_V','PM2.5_V','PM1_V','Zn','PM10_Zn','PM2.5_Zn','PM1_Zn'], + 'instruments':{} +}, + +#------------------------------------ +#photometry - direct (P-D) + +#remote photometry involves measurements of spectral sun/moon irradiance (direct) and sky radiances (sky) +#sun photometry is a passive remote-sensing measurement technique in which mainly collimated light generally not scattered or absorbed by the atmosphere illuminates a photodiode detector and this light energy is converted to a digital signal. +#The digital signal (V) measured by the instrument is proportional to the solar irradiance. +#A sensor head fitted with 25 cm collimators is attached to a 40 cm robot base which systematically points the sensor head at the Sun, the sky and the moon according to a preprogrammed routine. +#The measurements are made in eight spectral bands requiring approximately 10 seconds. +#Eight interference filters at wavelengths of 340, 380, 440, 500, 670, 870, 940 and 1020 nm are located in a filter wheel which is rotated by a direct drive stepping motor. +#The 940 nm channel is used for column water abundance determination. A preprogrammed sequence of measurements is taken by these instruments starting at an air mass of 7 in the morning and ending at an air mass of 7 in the evening. +#Optical depth is calculated from spectral extinction of direct beam radiation at each wavelength based on the Beer-Bouguer Law. Attenuation due to Rayleigh scatter, and absorption by ozone, and gaseous pollutants is estimated and removed to isolate the aerosol optical depth (AOD). +#A sequence of three such measurements are taken 30 seconds apart creating a triplet observation per wavelength. +#During the large air mass periods direct sun measurements are made at 0.25 air mass intervals, while at smaller air masses the interval between measurements is typically 15 minutes. +#The time variation of clouds is usually greater than that of aerosols causing an observable variation in the triplets that can be used to screen clouds in many cases. +#Additionally the 15-minute interval allows a longer temporal frequency check for cloud contamination. + +#The latest models can also perform nighttime measurements of the spectral lunar irradiance. +#See paper here for detailed description of the methodology verified for a specific instrument: +#https://www.atmos-meas-tech.net/9/631/2016/amt-9-631-2016.pdf + +#See paper here for more details on the methodology applied at a specific station: +#https://www.atmos-meas-tech.net/10/3007/2017/amt-10-3007-2017.pdf + +'photometry - direct':{'abbreviation':'P-D', 'sampling_type':'remote', 'measured_parameters':['AOD_380nm','AOD_440nm','AOD_500nm','AOD_500nm_COARSE','AOD_500nm_FINE','FINE_MODE_FRAC_500nm','AOD_550nm','AOD_675nm','AOD_870nm','AOD_1020nm','AE_440-870nm'], 'qa_accepted_parameters':['AOD_380nm','AOD_440nm','AOD_500nm','AOD_500nm_COARSE','AOD_500nm_FINE','FINE_MODE_FRAC_500nm','AOD_550nm','AOD_675nm','AOD_870nm','AOD_1020nm','AE_440-870nm'], + 'instruments':{ + 'Cimel CE318-1':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses photometry - direct here: https://aeronet.gsfc.nasa.gov/new_web/system_descriptions_instrument.html'}, + 'Cimel CE318-2':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses photometry - direct here: https://aeronet.gsfc.nasa.gov/new_web/system_descriptions_instrument.html'}, + 'Cimel CE318-N':{'documented_precision':'0.1%', 'instrument_manual_name':'Cimel_CE318N_Manual.pdf'}, + 'Cimel CE318-T':{'documented_precision':'0.1%', 'instrument_manual_name':'Cimel_CE318T_Manual.pdf'} + } +}, + +#------------------------------------ +#photometry - sky (P-S) + +#In addition to the direct solar irradiance measurements remote photometric instruments makes with a field of view of 1.2 degrees, these instruments measure the sky radiance in four spectral bands (440, 670, 870 and 1020 nm) along the solar principal plane (i.e., at constant azimuth angle, with varied scattering angles) up to nine times a day and along the solar almucantar (i.e., at constant elevation angle, with varied azimuth angles) up to six times a day. +#The approach is to acquire aureole and sky radiances observations through a large range of scattering angles from the sun through a constant aerosol profile to retrieve size distribution, phase function and aerosol optical depth. +#More than eight almucantar sequences are made daily at an optical air mass of 4, 3, 2 and 1.7 both morning and afternoon. Sky radiance measurements are inverted with the Dubovik and Nakajima inversions to provide aerosol properties of size distribution and phase function over the particle size range of 0.1 to 5 um. +#The robot mounted sensor head is parked pointed near-nadir when idle to prevent contamination of the optical windows from rain and foreign particles. + +'photometry - sky':{'abbreviation':'P-S', 'sampling_type':'remote', 'measured_parameters':['EXTAOD_440nm','EXTAOD_440nm_COARSE','EXTAOD_440nm_FINE','EXTAOD_675nm','EXTAOD_675nm_COARSE','EXTAOD_675nm_FINE','EXTAOD_870nm','EXTAOD_870nm_COARSE','EXTAOD_870nm_FINE','EXTAOD_1020nm','EXTAOD_1020nm_COARSE','EXTAOD_1020nm_FINE','EXTAE_440-870nm','ABSAOD_440nm','ABSAOD_675nm','ABSAOD_870nm','ABSAOD_1020nm','ABSAE_440-870nm','SSA_440nm','SSA_675nm','SSA_870nm','SSA_1020nm','ASY_440nm','ASY_440nm_COARSE','ASY_440nm_FINE','ASY_675nm','ASY_675nm_COARSE','ASY_675nm_FINE','ASY_870nm','ASY_870nm_COARSE','ASY_870nm_FINE','ASY_1020nm','ASY_1020nm_COARSE','ASY_1020nm_FINE','SPH','RIN_REAL_440nm','RIN_REAL_675nm','RIN_REAL_870nm','RIN_REAL_1020nm','RIN_IMAG_440nm','RIN_IMAG_675nm','RIN_IMAG_870nm','RIN_IMAG_1020nm','VCONC','VCONC_FINE','VCONC_COARSE','VCONC_BIN1','VCONC_BIN2','VCONC_BIN3','VCONC_BIN4','VCONC_BIN5','VCONC_BIN6','VCONC_BIN7','VCONC_BIN8','VCONC_BIN9','VCONC_BIN10','VCONC_BIN11','VCONC_BIN12','VCONC_BIN13','VCONC_BIN14','VCONC_BIN15','VCONC_BIN16','VCONC_BIN17','VCONC_BIN18','VCONC_BIN19','VCONC_BIN20','VCONC_BIN21','VCONC_BIN22'], 'qa_accepted_parameters':['EXTAOD_440nm','EXTAOD_440nm_COARSE','EXTAOD_440nm_FINE','EXTAOD_675nm','EXTAOD_675nm_COARSE','EXTAOD_675nm_FINE','EXTAOD_870nm','EXTAOD_870nm_COARSE','EXTAOD_870nm_FINE','EXTAOD_1020nm','EXTAOD_1020nm_COARSE','EXTAOD_1020nm_FINE','EXTAE_440-870nm','ABSAOD_440nm','ABSAOD_675nm','ABSAOD_870nm','ABSAOD_1020nm','ABSAE_440-870nm','SSA_440nm','SSA_675nm','SSA_870nm','SSA_1020nm','ASY_440nm','ASY_440nm_COARSE','ASY_440nm_FINE','ASY_675nm','ASY_675nm_COARSE','ASY_675nm_FINE','ASY_870nm','ASY_870nm_COARSE','ASY_870nm_FINE','ASY_1020nm','ASY_1020nm_COARSE','ASY_1020nm_FINE','SPH','RIN_REAL_440nm','RIN_REAL_675nm','RIN_REAL_870nm','RIN_REAL_1020nm','RIN_IMAG_440nm','RIN_IMAG_675nm','RIN_IMAG_870nm','RIN_IMAG_1020nm','VCONC','VCONC_FINE','VCONC_COARSE','VCONC_BIN1','VCONC_BIN2','VCONC_BIN3','VCONC_BIN4','VCONC_BIN5','VCONC_BIN6','VCONC_BIN7','VCONC_BIN8','VCONC_BIN9','VCONC_BIN10','VCONC_BIN11','VCONC_BIN12','VCONC_BIN13','VCONC_BIN14','VCONC_BIN15','VCONC_BIN16','VCONC_BIN17','VCONC_BIN18','VCONC_BIN19','VCONC_BIN20','VCONC_BIN21','VCONC_BIN22'], + 'instruments':{ + 'Cimel CE318-1':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses photometry - direct here: https://aeronet.gsfc.nasa.gov/new_web/system_descriptions_instrument.html'}, + 'Cimel CE318-2':{ 'instrument_further_details':'No manual or specifications available but confirmation it is uses photometry - direct here: https://aeronet.gsfc.nasa.gov/new_web/system_descriptions_instrument.html'}, + 'Cimel CE318-N':{'documented_precision':'0.1%', 'instrument_manual_name':'Cimel_CE318N_Manual.pdf'}, + 'Cimel CE318-T':{'documented_precision':'0.1%', 'instrument_manual_name':'Cimel_CE318T_Manual.pdf'} + } +}, + +#------------------------------------ +#unknown methodology + +'unknown':{'abbreviation':'UNK', 'measured_parameters':[], 'qa_accepted_parameters':[], + 'instruments':{} +} +} + +###--------------------------------------------------------------------------------------------------### +#DEFINE STANDARD COUNTRY DEFINITION INFORMATION +###--------------------------------------------------------------------------------------------------### + +#dictionary that stores country ISO3166-1 codes with associated country names + +country_ISO3166_to_name = { +'AF': 'Afghanistan', +'AX': 'Åland Islands', +'AL': 'Albania', +'DZ': 'Algeria', +'AS': 'American Samoa', +'AD': 'Andorra', +'AO': 'Angola', +'AI': 'Anguilla', +'AQ': 'Antarctica', +'AG': 'Antigua and Barbuda', +'AR': 'Argentina', +'AM': 'Armenia', +'AW': 'Aruba', +'AU': 'Australia', +'AT': 'Austria', +'AZ': 'Azerbaijan', +'BS': 'Bahamas', +'BH': 'Bahrain', +'BD': 'Bangladesh', +'BB': 'Barbados', +'BY': 'Belarus', +'BE': 'Belgium', +'BZ': 'Belize', +'BJ': 'Benin', +'BM': 'Bermuda', +'BT': 'Bhutan', +'BO': 'Bolivia', +'BQ': 'Bonaire, Sint Eustatius and Saba', +'BA': 'Bosnia and Herzegovina', +'BW': 'Botswana', +'BV': 'Bouvet Island', +'BR': 'Brazil', +'IO': 'British Indian Ocean Territory', +'BN': 'Brunei', +'BG': 'Bulgaria', +'BF': 'Burkina Faso', +'BI': 'Burundi', +'KH': 'Cambodia', +'CM': 'Cameroon', +'CA': 'Canada', +'CV': 'Cape Verde', +'KY': 'Cayman Islands', +'CF': 'Central African Republic', +'TD': 'Chad', +'CL': 'Chile', +'CN': 'China', +'CX': 'Christmas Island', +'CC': 'Cocos Islands', +'CO': 'Colombia', +'KM': 'Comoros', +'CG': 'Republic of the Congo', +'CD': 'Democratic Republic of the Congo', +'CK': 'Cook Islands', +'CR': 'Costa Rica', +'CI': "Côte d'Ivoire", +'HR': 'Croatia', +'CU': 'Cuba', +'CW': 'Curaçao', +'CY': 'Cyprus', +'CZ': 'Czech Republic', +'DK': 'Denmark', +'DJ': 'Djibouti', +'DM': 'Dominica', +'DO': 'Dominican Republic', +'EC': 'Ecuador', +'EG': 'Egypt', +'SV': 'El Salvador', +'GQ': 'Equatorial Guinea', +'ER': 'Eritrea', +'EE': 'Estonia', +'ET': 'Ethiopia', +'FK': 'Falkland Islands', +'FO': 'Faroe Islands', +'FJ': 'Fiji', +'FI': 'Finland', +'FR': 'France', +'GF': 'French Guiana', +'PF': 'French Polynesia', +'TF': 'French Southern Territories', +'GA': 'Gabon', +'GM': 'Gambia', +'GE': 'Georgia', +'DE': 'Germany', +'GH': 'Ghana', +'GI': 'Gibraltar', +'GR': 'Greece', +'GL': 'Greenland', +'GD': 'Grenada', +'GP': 'Guadeloupe', +'GU': 'Guam', +'GT': 'Guatemala', +'GG': 'Guernsey', +'GN': 'Guinea', +'GW': 'Guinea-Bissau', +'GY': 'Guyana', +'HT': 'Haiti', +'HM': 'Heard Island and McDonald Islands', +'VA': 'Vatican', +'HN': 'Honduras', +'HK': 'Hong Kong', +'HU': 'Hungary', +'IS': 'Iceland', +'IN': 'India', +'ID': 'Indonesia', +'IR': 'Iran', +'IQ': 'Iraq', +'IE': 'Ireland', +'IM': 'Isle of Man', +'IL': 'Israel', +'IT': 'Italy', +'JM': 'Jamaica', +'JP': 'Japan', +'JE': 'Jersey', +'JO': 'Jordan', +'KZ': 'Kazakhstan', +'KE': 'Kenya', +'KI': 'Kiribati', +'KP': 'North Korea', +'KR': 'South Korea', +'KW': 'Kuwait', +'KG': 'Kyrgyzstan', +'LA': "Lao People's Democratic Republic", +'LV': 'Latvia', +'LB': 'Lebanon', +'LS': 'Lesotho', +'LR': 'Liberia', +'LY': 'Libya', +'LI': 'Liechtenstein', +'LT': 'Lithuania', +'LU': 'Luxembourg', +'MO': 'Macao', +'MK': 'North Macedonia', +'MG': 'Madagascar', +'MW': 'Malawi', +'MY': 'Malaysia', +'MV': 'Maldives', +'ML': 'Mali', +'MT': 'Malta', +'MH': 'Marshall Islands', +'MQ': 'Martinique', +'MR': 'Mauritania', +'MU': 'Mauritius', +'YT': 'Mayotte', +'MX': 'Mexico', +'FM': 'Micronesia', +'MD': 'Moldova', +'MC': 'Monaco', +'MN': 'Mongolia', +'ME': 'Montenegro', +'MS': 'Montserrat', +'MA': 'Morocco', +'MZ': 'Mozambique', +'MM': 'Myanmar', +'NA': 'Namibia', +'NR': 'Nauru', +'NP': 'Nepal', +'NL': 'Netherlands', +'NC': 'New Caledonia', +'NZ': 'New Zealand', +'NI': 'Nicaragua', +'NE': 'Niger', +'NG': 'Nigeria', +'NU': 'Niue', +'NF': 'Norfolk Island', +'MP': 'Northern Mariana Islands', +'NO': 'Norway', +'OM': 'Oman', +'PK': 'Pakistan', +'PW': 'Palau', +'PS': 'Palestinian Territory', +'PA': 'Panama', +'PG': 'Papua New Guinea', +'PY': 'Paraguay', +'PE': 'Peru', +'PH': 'Philippines', +'PN': 'Pitcairn', +'PL': 'Poland', +'PT': 'Portugal', +'PR': 'Puerto Rico', +'QA': 'Qatar', +'RE': 'Réunion', +'RO': 'Romania', +'RU': 'Russia', +'RW': 'Rwanda', +'BL': 'Saint Barthélemy', +'SH': 'Saint Helena, Ascension and Tristan da Cunha', +'KN': 'Saint Kitts and Nevis', +'LC': 'Saint Lucia', +'MF': 'Saint Martin', +'PM': 'Saint Pierre and Miquelon', +'VC': 'Saint Vincent and the Grenadines', +'WS': 'Samoa', +'SM': 'San Marino', +'ST': 'Sao Tome and Principe', +'SA': 'Saudi Arabia', +'SN': 'Senegal', +'RS': 'Serbia', +'SC': 'Seychelles', +'SL': 'Sierra Leone', +'SG': 'Singapore', +'SX': 'Sint Maarten', +'SK': 'Slovakia', +'SI': 'Slovenia', +'SB': 'Solomon Islands', +'SO': 'Somalia', +'ZA': 'South Africa', +'GS': 'South Georgia and the South Sandwich Islands', +'SS': 'South Sudan', +'ES': 'Spain', +'LK': 'Sri Lanka', +'SD': 'Sudan', +'SR': 'Suriname', +'SJ': 'Svalbard and Jan Mayen', +'SZ': 'Swaziland', +'SE': 'Sweden', +'CH': 'Switzerland', +'SY': 'Syria', +'TW': 'Taiwan', +'TJ': 'Tajikistan', +'TZ': 'Tanzania', +'TH': 'Thailand', +'TL': 'Timor-Leste', +'TG': 'Togo', +'TK': 'Tokelau', +'TO': 'Tonga', +'TT': 'Trinidad and Tobago', +'TN': 'Tunisia', +'TR': 'Turkey', +'TM': 'Turkmenistan', +'TC': 'Turks and Caicos Islands', +'TV': 'Tuvalu', +'UG': 'Uganda', +'UA': 'Ukraine', +'AE': 'United Arab Emirates', +'GB': 'United Kingdom', +'US': 'United States', +'UM': 'United States Minor Outlying Islands', +'UY': 'Uruguay', +'UZ': 'Uzbekistan', +'VU': 'Vanuatu', +'VE': 'Venezuela', +'VN': 'Vietnam', +'VG': 'British Virgin Islands', +'VI': 'U.S. Virgin Islands', +'WF': 'Wallis and Futuna', +'EH': 'Western Sahara', +'XK': 'Kosovo', +'YE': 'Yemen', +'ZM': 'Zambia', +'ZW': 'Zimbabwe', +'CS': 'Serbia and Montenegro' +} + +#dictionary that stores country FIPS 10-4 codes with associated country names + +country_FIPS104_to_name = { +'AN': 'Andorra', +'AE': 'United Arab Emirates', +'AF': 'Afghanistan', +'AC': 'Antigua and Barbuda', +'AV': 'Anguilla', +'AL': 'Albania', +'AM': 'Armenia', +'AO': 'Angola', +'AY': 'Antarctica', +'AR': 'Argentina', +'AQ': 'American Samoa', +'AU': 'Austria', +'AS': 'Australia', +'AA': 'Aruba', +'AJ': 'Azerbaijan', +'BK': 'Bosnia and Herzegovina', +'BB': 'Barbados', +'BG': 'Bangladesh', +'BE': 'Belgium', +'UV': 'Burkina Faso', +'BU': 'Bulgaria', +'BA': 'Bahrain', +'BY': 'Burundi', +'BN': 'Benin', +'TB': 'Saint Barthélemy', +'BD': 'Bermuda', +'BX': 'Brunei', +'BL': 'Bolivia', +'BR': 'Brazil', +'BF': 'Bahamas', +'BT': 'Bhutan', +'BV': 'Bouvet Island', +'BC': 'Botswana', +'BO': 'Belarus', +'BH': 'Belize', +'CA': 'Canada', +'CH': 'China', +'CK': 'Cocos Islands', +'CG': 'Democratic', +'CT': 'Central African Republic', +'CF': 'Republic of the Congo', +'CG': 'Democratic Republic of the Congo', +'SZ': 'Switzerland', +'IV': "Côte d'Ivoire", +'CW': 'Cook Islands', +'CI': 'Chile', +'CM': 'Cameroon', +'CO': 'Colombia', +'CS': 'Costa Rica', +'CU': 'Cuba', +'CV': 'Cape Verde', +'UC': 'Curaçao', +'KT': 'Christmas Island', +'CY': 'Cyprus', +'EZ': 'Czech Republic', +'GM': 'Germany', +'DJ': 'Djibouti', +'DA': 'Denmark', +'DO': 'Dominica', +'DR': 'Dominican Republic', +'AG': 'Algeria', +'EC': 'Ecuador', +'EN': 'Estonia', +'EG': 'Egypt', +'WI': 'Western Sahara', +'ER': 'Eritrea', +'SP': 'Spain', +'ET': 'Ethiopia', +'FI': 'Finland', +'FG': 'French Guiana', +'FJ': 'Fiji', +'FK': 'Falkland Islands', +'FM': 'Micronesia', +'FO': 'Faroe Islands', +'FR': 'France', +'FS': 'French Southern Territories', +'GB': 'Gabon', +'UK': 'United Kingdom', +'GJ': 'Grenada', +'GG': 'Georgia', +'FG': 'French', +'GK': 'Guernsey', +'GH': 'Ghana', +'GI': 'Gibraltar', +'GL': 'Greenland', +'GA': 'Gambia', +'GV': 'Guinea', +'GP': 'Guadeloupe', +'EK': 'Equatorial Guinea', +'GR': 'Greece', +'SX': 'South Georgia and the South Sandwich Islands', +'GT': 'Guatemala', +'GQ': 'Guam', +'PU': 'Guinea-Bissau', +'GY': 'Guyana', +'HK': 'Hong Kong', +'HM': 'Heard Island and McDonald Islands', +'HO': 'Honduras', +'HR': 'Croatia', +'HA': 'Haiti', +'HU': 'Hungary', +'ID': 'Indonesia', +'EI': 'Ireland', +'IS': 'Israel', +'IM': 'Isle of Man', +'IN': 'India', +'IO': 'British Indian Ocean Territory', +'IZ': 'Iraq', +'IR': 'Iran', +'IC': 'Iceland', +'IT': 'Italy', +'JE': 'Jersey', +'JM': 'Jamaica', +'JO': 'Jordan', +'JA': 'Japan', +'KE': 'Kenya', +'KG': 'Kyrgyzstan', +'CB': 'Cambodia', +'KR': 'Kiribati', +'CN': 'Comoros', +'SC': 'Saint Kitts and Nevis', +'KN': 'North Korea', +'KS': 'South Korea', +'KV': 'Kosovo', +'KU': 'Kuwait', +'CJ': 'Cayman Islands', +'KZ': 'Kazakhstan', +'LA': 'Laos', +'LE': 'Lebanon', +'ST': 'Saint Lucia', +'LS': 'Liechtenstein', +'CE': 'Sri Lanka', +'LI': 'Liberia', +'LT': 'Lesotho', +'LH': 'Lithuania', +'LU': 'Luxembourg', +'LG': 'Latvia', +'LY': 'Libya', +'MO': 'Morocco', +'MN': 'Monaco', +'MD': 'Moldova', +'MJ': 'Montenegro', +'RN': 'Saint Martin', +'MA': 'Madagascar', +'RM': 'Marshall Islands', +'MK': 'North Macedonia', +'ML': 'Mali', +'BM': 'Myanmar', +'MG': 'Mongolia', +'MC': 'Macao', +'CQ': 'Northern Mariana Islands', +'MB': 'Martinique', +'MR': 'Mauritania', +'MH': 'Montserrat', +'MT': 'Malta', +'MP': 'Mauritius', +'MV': 'Maldives', +'MI': 'Malawi', +'MX': 'Mexico', +'MY': 'Malaysia', +'MZ': 'Mozambique', +'WA': 'Namibia', +'NC': 'New Caledonia', +'NG': 'Niger', +'NF': 'Norfolk Island', +'NI': 'Nigeria', +'NU': 'Nicaragua', +'NL': 'Netherlands', +'NO': 'Norway', +'NP': 'Nepal', +'NR': 'Nauru', +'NE': 'Niue', +'NZ': 'New Zealand', +'MU': 'Oman', +'PM': 'Panama', +'PE': 'Peru', +'FP': 'French Polynesia', +'PP': 'Papua New Guinea', +'RP': 'Philippines', +'PK': 'Pakistan', +'PL': 'Poland', +'SB': 'Saint Pierre and Miquelon', +'PC': 'Pitcairn', +'RQ': 'Puerto Rico', +'WE': 'Palestinian Territory', +'PO': 'Portugal', +'PS': 'Palau', +'PA': 'Paraguay', +'QA': 'Qatar', +'RE': 'Réunion', +'RO': 'Romania', +'RI': 'Serbia', +'RS': 'Russia', +'RW': 'Rwanda', +'SA': 'Saudi Arabia', +'BP': 'Solomon Islands', +'SE': 'Seychelles', +'SU': 'Sudan', +'OD': 'South Sudan', +'SW': 'Sweden', +'SN': 'Singapore', +'SH': 'Saint Helena, Ascension and Tristan da Cunha', +'SI': 'Slovenia', +'SV': 'Svalbard and Jan Mayen', +'LO': 'Slovakia', +'SL': 'Sierra Leone', +'SM': 'San Marino', +'SG': 'Senegal', +'SO': 'Somalia', +'NS': 'Suriname', +'TP': 'Sao Tome and Principe', +'ES': 'El Salvador', +'NN': 'Sint Maarten', +'SY': 'Syria', +'WZ': 'Swaziland', +'TK': 'Turks and Caicos Islands', +'CD': 'Chad', +'FS': 'French', +'TO': 'Togo', +'TH': 'Thailand', +'TI': 'Tajikistan', +'TL': 'Tokelau', +'TT': 'Timor-Leste', +'TX': 'Turkmenistan', +'TS': 'Tunisia', +'TN': 'Tonga', +'TU': 'Turkey', +'TD': 'Trinidad and Tobago', +'TV': 'Tuvalu', +'TW': 'Taiwan', +'TZ': 'Tanzania', +'UP': 'Ukraine', +'UG': 'Uganda', +'UM': 'United States Minor Outlying Islands', +'US': 'United States', +'UY': 'Uruguay', +'UZ': 'Uzbekistan', +'VT': 'Vatican', +'VC': 'Saint Vincent and the Grenadines', +'VE': 'Venezuela', +'VI': 'British Virgin Islands', +'VQ': 'U.S. Virgin Islands', +'VM': 'Vietnam', +'NH': 'Vanuatu', +'WF': 'Wallis and Futuna', +'WS': 'Samoa', +'YM': 'Yemen', +'MF': 'Mayotte', +'SF': 'South Africa', +'ZA': 'Zambia', +'ZI': 'Zimbabwe', +'YI': 'Serbia and Montenegro'} +###--------------------------------------------------------------------------------------------------### +###--------------------------------------------------------------------------------------------------### diff --git a/download_scripts/JAPAN_NIES_download.py b/download_scripts/JAPAN_NIES_download.py new file mode 100644 index 0000000000000000000000000000000000000000..32181136062748781ee8d952cb8892545e9d669d --- /dev/null +++ b/download_scripts/JAPAN_NIES_download.py @@ -0,0 +1,486 @@ +from selenium import webdriver +from bs4 import BeautifulSoup +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +import requests +import time +from datetime import date +from datetime import timedelta +import zipfile + +import os.path +import os +import pathlib +import pandas as pd +import numpy as np +import shutil +import csv +import json +import urllib + + +def switch_panels(driver, tab_index, max_time_wait): + print('Started downloading {}'.format(tab_index)) + + if tab_index == 0: + mon_year = '"tab-pane fade active show"' + hour = '"tab-pane fade"' + bur = '"tab-pane fade"' + meta = '"tab-pane fade"' + + search_btn = 'my_search_button' + create_btn = 'my_create_archive' + download_btn = 'my_download_archive' + + elif tab_index == 1: + mon_year = '"tab-pane fade"' + hour = '"tab-pane fade active show"' + bur = '"tab-pane fade"' + meta = '"tab-pane fade"' + + search_btn = 't_search_button' + create_btn = 't_create_archive' + download_btn = 't_download_archive' + + elif tab_index == 2: + mon_year = '"tab-pane fade"' + hour = '"tab-pane fade"' + bur = '"tab-pane fade active show"' + meta = '"tab-pane fade"' + + search_btn = 'tg_search_button' + create_btn = 'tg_create_archive' + download_btn = 'tg_download_archive' + + elif tab_index == 3: + mon_year = '"tab-pane fade"' + hour = '"tab-pane fade"' + bur = '"tab-pane fade"' + meta = '"tab-pane fade active show"' + + search_btn = 'ms_search_button' + create_btn = 'ms_create_archive' + download_btn = 'ms_download_archive' + + else: + print("Error when switching tabs") + + # switch panels + tab = driver.find_element(By.ID, 'monthly-yearly-panel') + driver.execute_script("arguments[0].removeAttribute('class')", tab) + driver.execute_script("arguments[0].setAttribute('class', {})".format(mon_year), tab) + + tab = driver.find_element(By.ID, 'time-gov-panel') + driver.execute_script("arguments[0].removeAttribute('class')", tab) + driver.execute_script("arguments[0].setAttribute('class', {})".format(bur), tab) + + tab = driver.find_element(By.ID, 'time-panel') + driver.execute_script("arguments[0].removeAttribute('class')", tab) + driver.execute_script("arguments[0].setAttribute('class', {})".format(hour), tab) + + tab = driver.find_element(By.ID, 'measuring-station-panel') + driver.execute_script("arguments[0].removeAttribute('class')", tab) + driver.execute_script("arguments[0].setAttribute('class', {})".format(meta), tab) + + print('Switched tabs {}'.format(tab_index)) + + # click buttons + WebDriverWait(driver, max_time_wait).until(EC.element_to_be_clickable((By.ID, search_btn))) # wait till loaded + search_button = driver.find_element(By.ID, search_btn) + driver.execute_script("arguments[0].click();", search_button) + + WebDriverWait(driver, max_time_wait).until(EC.element_to_be_clickable((By.ID, create_btn))) # wait till loaded + create_archive = driver.find_element(By.ID, create_btn) + driver.execute_script("arguments[0].click();", create_archive) + + WebDriverWait(driver, max_time_wait*2).until(EC.element_to_be_clickable((By.ID, download_btn))) # wait till loaded + download_button = driver.find_element(By.ID, download_btn) + driver.execute_script("arguments[0].click();", download_button) + + print('Downloading {}'.format(tab_index)) + + time.sleep(5) + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + cities = {1: "Hokkaido", 2: "Aomori", 3: "Iwate", 4: "Miyagi", 5: "Akita", 6: "Yamagata", 7: "Fukushima", 8: "Ibaraki", 9: "Tochigi", 10: "Gunma", 11: "Saitama", 12: "Chiba", 13: "Tokyo", + 14: "Kanagawa", 15: "Niigata", 16: "Toyama", 17: "Ishikawa", 18: "Fukui", 19: "Yamanashi", 20: "Nagano", 21: "Gifu", 22: "Shizuoka", 23: "Aichi", 24: "Mie", 25: "Shiga", 26: "Kyoto", + 27: "Osaka", 28: "Hyogo", 29: "Nara", 30: "Wakayama", 31: "Tottori", 32: "Shimane", 33: "Okayama", 34: "Hiroshima", 35: "Yamaguchi", 36:"Tokushima", 37:"Kagawa", 38:"Ehime", + 39:"Kochi", 40:"Fukuoka", 41:"Saga", 42:"Nagasaki", 43:"Kumamoto", 44:"Oita", 45: "Miyazaki", 46:"Kagoshima", 47:"Okinawa"} + + + if mode == 'all': + baseurl = 'https://tenbou.nies.go.jp/download/' + bdate = date(1971, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + + # rename old 1.6 folder + shutil.move('{}/JAPAN_NIES/original_files/{}/'.format(dl_root, version), '{}/JAPAN_NIES/original_files/{}/'.format(dl_root, '1.6_old')) + + # create new directory + os.makedirs('{}/JAPAN_NIES/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = '{}/JAPAN_NIES/original_files/{}/'.format(dl_root, version) + + # create date array, daily; format to YYYYMMDD + years = pd.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + driver.get(baseurl) + time.sleep(2) + + # monthly tab ========================================================================================================== + + # switch to monthly/yearly button + switch_panels(driver, 0, max_time_per_dl) # 0 stands for monthly tab + + time.sleep(10) + filename = [file for file in os.listdir(download_location) if os.path.isfile(os.path.join(download_location, file))][0] + if 'crdownload' in filename: + filename = str(filename[:-11]) # cut out crdownload + else: + pass + + # create monthly folder + os.makedirs('{}/JAPAN_NIES/original_files/{}/'.format(dl_root,version)+'monthly/', exist_ok=True) + + while not os.path.exists(download_location.format(version)+filename): + time.sleep(1) + + if os.path.isfile(download_location.format(version)+filename): + print('{} download successful'.format("monthly/yearly data")) + + # unzip + with zipfile.ZipFile(download_location.format(version)+filename, 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'monthly/') + + os.remove(download_location.format(version)+filename) + + # sort files + monthly_files = os.listdir(download_location.format(version)+'monthly/') + + for year in years: + os.makedirs('{}/JAPAN_NIES/original_files/{}/'.format(dl_root,version)+'monthly/'+year+'/', exist_ok=True) + for file in monthly_files: + if year in file[:6]: + # unzip again + with zipfile.ZipFile(download_location.format(version)+'monthly/{}'.format(file), 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'monthly/{}/{}.txt'.format(year, file[:-4])) + os.remove(download_location.format(version)+'monthly/{}'.format(file)) + + time.sleep(2) + + # time tab ========================================================================================================== + switch_panels(driver, 1, max_time_per_dl) # 1 stands for hourly tab + + os.makedirs('{}/JAPAN_NIES/original_files/{}/'.format(dl_root, version)+'hourly/', exist_ok=True) + + # wait until download finished + time.sleep(10) # time for the file fo appear in directory + filename = [file for file in os.listdir(download_location.format(version)) if os.path.isfile(os.path.join(download_location.format(version), file))][0] + if 'crdownload' in filename: + filename = str(filename[:-11]) # cut out crdownload + else: + pass + print(filename) + + while not os.path.exists(download_location.format(version)+filename): + time.sleep(1) + + if os.path.isfile(download_location.format(version)+filename): + print('{} download successful'.format("hourly data")) + + # unzip + with zipfile.ZipFile(download_location.format(version)+filename, 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'hourly/') + + #os.remove(download_location.format(version)+filename) + + # sort files + hourly_files = os.listdir(download_location.format(version)+'hourly/') + + for file in hourly_files: + # unzip again + with zipfile.ZipFile(download_location.format(version)+'hourly/{}'.format(file), 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'hourly/') + os.remove(download_location.format(version)+'hourly/{}'.format(file)) + + hourly_folders = list(pathlib.Path(download_location.format(version)+'hourly/').rglob('*.zip')) #os.listdir(download_location.format(version)+'hourly/') + + for folder in hourly_folders: + # unzip again + with zipfile.ZipFile(folder, 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'hourly/') # takes 10 mins! + os.remove(folder) + + # put all files in single new directory, delete everything else + hourly_files_all = list(pathlib.Path(download_location.format(version)+'hourly/').rglob('*.txt')) + os.makedirs('{}/JAPAN_NIES/original_files/{}/temp/'.format(dl_root,version), exist_ok=True) + + for file in hourly_files_all: + filename = os.path.split(file)[-1] + shutil.move(file, '{}/JAPAN_NIES/original_files/{}/temp/{}'.format(dl_root,version, filename)) + + shutil.rmtree(download_location.format(version)+'hourly/') + + hourly_files_all = os.listdir('{}/JAPAN_NIES/original_files/{}/temp/'.format(dl_root,version)) + for city in cities: + for year in range(2009, 2022): + for file in hourly_files_all: + if ((int(file[1:3]) == city) and (int(file[3:7]) == year)): + os.makedirs('{}/JAPAN_NIES/original_files/{}/hourly/{}/{}/'.format(dl_root,version, cities[city], year), exist_ok=True) + shutil.move('{}/JAPAN_NIES/original_files/{}/temp/'.format(dl_root,version)+file, '{}/JAPAN_NIES/original_files/{}/hourly/{}/{}/{}'.format(dl_root,version, cities[city], year, file)) + + + shutil.rmtree(download_location.format(version)+'temp/') + time.sleep(2) + + # bureau tab ========================================================================================================== + switch_panels(driver, 2, max_time_per_dl) # 1 stands for bureau tab + + os.makedirs('{}/JAPAN_NIES/original_files/{}/'.format(dl_root,version)+'bureau/', exist_ok=True) + + # wait until download finished + time.sleep(10) # time for the file fo appear in directory + filename = [file for file in os.listdir(download_location.format(version)) if os.path.isfile(os.path.join(download_location.format(version), file))][0] + print(filename) + if 'crdownload' in filename: + filename = str(filename[:-11]) # cut out crdownload + else: + pass + print(filename) + + while not os.path.exists(download_location.format(version)+filename): + time.sleep(1) + + if os.path.isfile(download_location.format(version)+filename): + print('{} download successful'.format("bureau data")) + + # unzip + with zipfile.ZipFile(download_location.format(version)+filename, 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'bureau/') + + os.remove(download_location.format(version)+filename) + + # sort files + bureau_files = os.listdir(download_location.format(version)+'bureau/') + + for file in bureau_files: + with zipfile.ZipFile(download_location.format(version)+'bureau/{}'.format(file), 'r') as zip_ref: + zip_ref.extractall(download_location.format(version)+'bureau/') + os.remove(download_location.format(version)+'bureau/{}'.format(file)) + + time.sleep(2) + + # check + bureau_files = os.listdir(download_location.format(version)+'bureau/') + bureau_files_remaining = [filename for filename in bureau_files if filename.endswith('.csv')] + for remaining_file in bureau_files_remaining: + year = os.path.split(remaining_file)[-1][:4] + os.makedirs('{}/JAPAN_NIES/original_files/{}/bureau/{}/'.format(dl_root,version, year), exist_ok=True) + shutil.move(remaining_file, '{}/JAPAN_NIES/original_files/{}/bureau/{}/'.format(dl_root,version, year)) + + driver.close() + + + # remove old data + shutil.rmtree('{}/JAPAN_NIES/original_files/{}/'.format(dl_root, '1.6_old')) + + + + elif mode == 'nrt': + bdate = start.strftime('%Y%m') + edate = stop.strftime('%Y%m') + + download_location = dl_root+'/JAPAN_NIES/original_files/nrt/{}_{}/nrt_{}.json' + baseurl = 'https://soramame.env.go.jp/soramame/api/data_search?Start_YM={}&End_YM={}&TDFKN_CD={}' + + regions = [str(x) for x in list(range(1, 48))] # region codes + + for region in regions: + + os.makedirs('{}/JAPAN_NIES/original_files/nrt/{}_{}/'.format(dl_root,region.zfill(2), cities[int(region)]), exist_ok=True) + url = baseurl.format(bdate, edate, region.zfill(2)) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format(region.zfill(2), cities[int(region)], region.zfill(2)), 'wb') as outfile: + outfile.write(r.content) + #urllib.request.urlretrieve(url, download_location.format(region.zfill(2), cities[int(region)], region.zfill(2), bdate)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl * 2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + else: + print('time mode inapplicable') + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://tenbou.nies.go.jp/download/' + last_year_meta_av = 2021 + today = date.today() + + os.makedirs('{}/JAPAN_NIES/metadata/{}/network_provided/temp/'.format(dl_root,version), exist_ok=True) + download_location = '{}/JAPAN_NIES/metadata/{}/network_provided/temp/'.format(dl_root,version) + + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + driver.get(baseurl) + time.sleep(2) + + # station tab ========================================================================================================== + # switch to station button + switch_panels(driver, 3, max_time_per_dl) # 3 stands for station tab + time.sleep(5) + + filename = [file for file in os.listdir(download_location) if not file.endswith('.txt')][0] #os.path.isfile(os.path.join(download_location, file))] + print(filename) + if 'crdownload' in filename: + filename = str(filename[:-11]) # cut out crdownload + else: + pass + + while not os.path.exists(download_location+filename): + time.sleep(1) + + if os.path.isfile(download_location+filename): + print('metadata download successful') + + # unzip + with zipfile.ZipFile(download_location+filename, 'r') as zip_ref: + zip_ref.extractall(download_location) + + os.remove(download_location+filename) + + # list all files + meta_files = os.listdir(download_location) # zip files + + for file in meta_files: + year = file[2:6] + # unzip again + with zipfile.ZipFile(download_location+file, 'r') as zip_ref: + zip_ref.extractall(download_location) + os.remove(download_location+file) + + driver.close() + print("data downloaded and unzipped") + + # JSON ================================================================================== + # find english names of parameter + data1970 = pd.read_csv('{}/JAPAN_NIES/metadata/{}/network_provided/TM19700000.txt'.format(dl_root,version), sep=',', encoding='ISO-8859-1') + parameter_eng = list(data1970) + + # create json from original metadata files + years = pd.date_range(date(1971, 1, 1), date(last_year_meta_av+1, 1, 1), freq='Y') + json_metadata = {} + + for year in years: + print(year) + + data = pd.read_csv('{}/JAPAN_NIES/metadata/{}/network_provided/temp/TM{}0000.txt'.format(dl_root,version, year.strftime('%Y')), encoding='ISO-8859-1') + if len(data.columns) == len(parameter_eng): + data.columns = parameter_eng + else: + diff = len(data.columns) - len(parameter_eng) + if diff < 0: + data.columns = parameter_eng[:diff] + else: + parameter_eng += list(range(diff)) + data.columns = parameter_eng + print('Number of columns: ', len(data.columns)) + + data.to_csv('{}/JAPAN_NIES/metadata/{}/network_provided/temp/TM{}0000.txt'.format(dl_root,version, year.strftime('%Y')), encoding='ISO-8859-1', index=False, header=True) + + with open('{}/JAPAN_NIES/metadata/{}/network_provided/temp/TM{}0000.txt'.format(dl_root,version, year.strftime('%Y')), 'r', encoding='ISO-8859-1') as file: + csv_filedata = csv.DictReader(file, delimiter=',') + + for row in csv_filedata: + key = row['NIES_area_code'] + update_date = date(year.year, 1, 1).strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/JAPAN_NIES/metadata/{}/network_provided/JAPAN_NIES_META_{}.json'.format(dl_root,version, year.strftime('%Y')), 'w', encoding='ISO-8859-1') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + + # read standardised file to compare! + with open('{}/JAPAN_NIES/metadata/{}/network_provided/JAPAN_NIES_META_1970.json'.format(dl_root,version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + for year in years[1:]: + print(year) + + with open('{}/JAPAN_NIES/metadata/{}/network_provided/JAPAN_NIES_META_{}.json'.format(dl_root,version, year.strftime('%Y')), 'r', encoding='ISO-8859-1') as f: + json_metadata_now = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station]: # check if column exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print("Metadata parameter {} disappeared".format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/JAPAN_NIES/metadata/{}/processed/JAPAN_NIES_META.json'.format(dl_root,version), 'w', encoding='ISO-8859-1') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + # remove temp folder + shutil.rmtree('{}/JAPAN_NIES/metadata/{}/network_provided/temp/'.format(dl_root,version)) diff --git a/download_scripts/MEXICO_CDMX_download.py b/download_scripts/MEXICO_CDMX_download.py new file mode 100644 index 0000000000000000000000000000000000000000..f650134f15bb1a6610e4f0079c09ed544f827a3b --- /dev/null +++ b/download_scripts/MEXICO_CDMX_download.py @@ -0,0 +1,185 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path +import urllib +import tarfile +import shutil +import gzip +import csv +import json + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'http://www.aire.cdmx.gob.mx/opendata/anuales_horarios_gz/contaminantes_{}.csv.gz' + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + if mode == 'all': + bdate = date(1986, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + + os.makedirs('{}/MEXICO_CDMX/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = dl_root+'/MEXICO_CDMX/original_files/'+version+'/contaminantes_{}.csv.gz' + + elif mode == 'nrt': + print("No nrt MEXICO_CDMX") + exit() + + else: + print('time mode inapplicable') + + + # create date array, daily; format to YYYYMMDD + years = pd.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + + # download + for year in years: + url = base_url.format(year) + n_tries = 0 + errcode = 999 + try: + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + + if r.status_code == 200: + with open(download_location.format(year), 'wb') as f: + f.write(r.content) + urllib.request.urlretrieve(url, download_location.format(year)) + print('Downloaded {}'.format(url)) + # unzip + with gzip.open(download_location.format(year), 'rb') as f_in: + with open(download_location.format(year)[:-3], 'wb') as f_out: + shutil.copyfileobj(f_in, f_out) + # remove files + os.remove(download_location.format(year)) + + errcode = r.status_code + elif r.status_code == 404: + print("No data found, error 404, year {}".format(year)) + errcode = 200 + elif r.status_code == 403: + print("Permission denied for {}".format(year)) + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 # increase waiting time + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + except: + pass + time.sleep(10) + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'http://www.aire.cdmx.gob.mx/opendata/catalogos/cat_estacion.csv' + download_location = dl_root+"/MEXICO_CDMX/metadata/{}/network_provided/MEXICO_CDMX_META_{}.csv" + + n_tries = 0 + errcode = 999 + today = date.today() + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url_metadata, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format(version, '_unformatted'), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded metadata') + errcode = r.status_code + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 # increase waiting time + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # import it as pandas to clean header + meta_file = pd.read_csv(download_location.format(version, '_unformatted'), header=[1], encoding='ISO-8859-1') + meta_file.to_csv(download_location.format(version, today.strftime('%Y%m%d')), index=False) + os.remove(download_location.format(version, '_unformatted')) + + # create json from original metadata file + """json_metadata = {} + with open('{}/MEXICO_CDMX/metadata/{}/network_provided/MEXICO_CDMX_META.csv'.format(dl_root, version), 'r', encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['cve_estac'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/MEXICO_CDMX/metadata/{}/processed/MEXICO_CDMX_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location.format(version, today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['cve_estac'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/MEXICO_CDMX/metadata/{}/processed/MEXICO_CDMX_META.json'.format(dl_root, version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station].keys(): # check if column of csv exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('{} not in new metadata file'.format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + for parameter in json_metadata_now[station]: # loop through all the parameters + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + # is there a new parameter that wasn't in the old file? + if parameter in json_metadata[station].keys(): + pass # parameter (column) is already there + else: + print('{} is new'.format(parameter)) + json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + + # safe + with open('{}/MEXICO_CDMX/metadata/{}/processed/MEXICO_CDMX_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/MITECO_download.py b/download_scripts/MITECO_download.py new file mode 100644 index 0000000000000000000000000000000000000000..a7d19d14cc392d0b55ac63f3f57cd44ffe2a79cc --- /dev/null +++ b/download_scripts/MITECO_download.py @@ -0,0 +1,331 @@ +import requests +import time +import pandas as pd +from datetime import date +import os.path +import urllib +import shutil +import zipfile +import re +import glob +import csv +import json + +from selenium import webdriver +from bs4 import BeautifulSoup +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://www.miteco.gob.es/es/calidad-y-evaluacion-ambiental/temas/atmosfera-y-calidad-del-aire/calidad-del-aire/evaluacion-datos/datos/datos-2001-2021.html' + + if mode == 'all': + bdate = date(2001, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + os.makedirs('{}/MITECO/original_files/{}/'.format(dl_root,version), exist_ok=True) + download_location = '{}/MITECO/original_files/{}/'.format(dl_root,version) + + elif mode == 'nrt': + print("nrt not available MITECO") + + else: + print('time mode inapplicable') + + + # create date array; format to YYYYMMDD + years_until_2015 = pd.date_range(bdate, date(2015, 1, 1), freq='Y').strftime('%Y').tolist() + years_after_2015 = pd.date_range(date(2016, 1, 1), edate, freq='Y').strftime('%Y').tolist() + print(years_after_2015) + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(baseurl) + + # find zip links + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + zip_links = soup.find_all("a", href=re.compile(r".zip")) + + for zip_link in zip_links: + filename = zip_link.get("href").rpartition('/')[-1] + url = 'https://www.miteco.gob.es/{}'.format(zip_link.get("href")) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+filename) + print('Downloaded {}'.format(filename)) + # unzip + with zipfile.ZipFile(download_location+filename, 'r') as zip_ref: + zip_ref.extractall(download_location) + os.remove(download_location+filename) + + errcode = r.status_code + + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + + elif r.status_code == 403: + print("Permission denied for {}".format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # go to hyperlinks + + for year in years_after_2015: + + driver.get('https://www.miteco.gob.es/es/calidad-y-evaluacion-ambiental/temas/atmosfera-y-calidad-del-aire/calidad-del-aire/evaluacion-datos/datos/datos_oficiales_{}.html'.format(year)) + if year == '2022': + driver.get('https://www.miteco.gob.es/es/calidad-y-evaluacion-ambiental/temas/atmosfera-y-calidad-del-aire/calidad-del-aire/evaluacion-datos/datos/datos-oficiales-2022.html') + + time.sleep(3) + + html = driver.page_source + soup = BeautifulSoup(html, features="html.parser") + zip_links = soup.find_all("a", href=re.compile(r".zip")) + + + for zip_link in zip_links: + filename = zip_link.get("href").rpartition('/')[-1] + #print(filename) + url = 'https://www.miteco.gob.es/{}'.format(zip_link.get("href")) + + if year == '2022': + driver.get(url) + time.sleep(5) + # unzip + for zip_file in glob.glob(download_location+'*.zip'): + with zipfile.ZipFile(zip_file, 'r') as zip_ref: + zip_ref.extractall(download_location) + os.remove(zip_file) + + continue + + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+filename) + print('Downloaded {}'.format(filename)) + + # unzip + with zipfile.ZipFile(download_location+filename, 'r') as zip_ref: + zip_ref.extractall(download_location) + + os.remove(download_location+filename) + errcode = r.status_code + + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + + elif r.status_code == 403: + print("Permission denied for {}".format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # delete metadata + for metadata in glob.glob(download_location+'*.xls'): + os.remove(metadata) + + # move files around + alldirectories =[directory for directory in os.listdir(download_location) if not os.path.isfile(os.path.join(download_location, directory))] + for directory in alldirectories: + allfiles = os.listdir(os.path.join(download_location, directory)) + for f in allfiles: + os.rename(os.path.join(download_location, directory, f), os.path.join(download_location, f)) + try: + shutil.rmtree(os.path.join(download_location, directory)) + except: + pass + + driver.close() + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + last_year_meta_av = 2022 + url_metadata = 'https://www.miteco.gob.es/content/dam/miteco/es/calidad-y-evaluacion-ambiental/sgalsi/atm%C3%B3sfera-y-calidad-del-aire/evaluaci%C3%B3n-{}/Metainformacion{}.xlsx'.format(last_year_meta_av, last_year_meta_av) + #url_metadata = 'https://www.miteco.gob.es/es/calidad-y-evaluacion-ambiental/temas/atmosfera-y-calidad-del-aire/calidad-del-aire/evaluacion-datos/datos/datos-oficiales-2022.html' + download_location = dl_root+"/MITECO/metadata/"+version+"/network_provided/MITECO_META_{}.xlsx" + + today = date.today() + + r = requests.get(url_metadata, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + + + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + urllib.request.urlretrieve(url_metadata, download_location.format(today.strftime('%Y%m%d'))) + #with open(download_location.format(today.strftime('%Y%m%d')), 'wb') as outfile: + # outfile.write(r.content) + print('Downloaded metadata') + errcode = r.status_code + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # convert to csv + metadata = pd.read_excel('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.xlsx'.format(dl_root, version, today.strftime('%Y%m%d')), engine='openpyxl', sheet_name='Estaciones').fillna('') + metadata.to_csv('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.csv'.format(dl_root, version,today.strftime('%Y%m%d')), index=False, header=True, sep=';') + + os.remove(download_location.format(today.strftime('%Y%m%d'))) + shutil.copyfile('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.csv'.format(dl_root, version,today.strftime('%Y%m%d')), '{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.csv'.format(dl_root, version,last_year_meta_av)) + + + # create json from original metadata files + """years = pd.date_range(date(2001, 1, 1), date(last_year_meta_av+1, 1, 1), freq='Y') + + json_metadata = {} + for year in years: + print(year) + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.csv'.format(dl_root, version,year.strftime('%Y')), 'r', encoding='ISO-8859-1') as file: + csv_filedata = csv.DictReader(file, delimiter=';') + + for row in csv_filedata: + key = row['COD_ESTACION_DEM'] + update_date = date(year.year, 1, 1).strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.json'.format(dl_root, version,year.strftime('%Y')), 'w', encoding='ISO-8859-1') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False))""" + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.csv'.format(dl_root, version,today.strftime('%Y%m%d')), encoding='ISO-8859-1') as file: + csv_filedata = csv.DictReader(file, delimiter=';') + + for row in csv_filedata: + key = row['COD_ESTACION_DEM'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! process all years + """ + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_2001.json'.format(dl_root, version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + for year in years[1:]: + print(year) + + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.json'.format(dl_root, version,year.strftime('%Y')), 'r', encoding='ISO-8859-1') as f: + json_metadata_now = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station]: # check if column exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print("Metadata parameter {} disappeared".format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]})""" + + + # read standardized file to compare, process last year only + with open('{}/MITECO/metadata/{}/processed/MITECO_META.json'.format(dl_root, version), 'r', encoding='ISO-8859-1') as f: + json_metadata = json.loads(f.read()) + + #with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.json'.format(dl_root, version, today.strftime('%Y%m%d')), 'r', encoding='ISO-8859-1') as f: + # json_metadata_now = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station]: # check if column exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print("Metadata parameter {} disappeared".format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/MITECO/metadata/{}/processed/MITECO_META.json'.format(dl_root, version), 'w', encoding='ISO-8859-1') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) diff --git a/download_scripts/NOAA_ISD_download.py b/download_scripts/NOAA_ISD_download.py new file mode 100644 index 0000000000000000000000000000000000000000..86e36002092667a00f31a2fcabee698632d7b9ae --- /dev/null +++ b/download_scripts/NOAA_ISD_download.py @@ -0,0 +1,193 @@ +import certifi +import socket +import subprocess +from urllib.error import HTTPError, URLError +from urllib.request import urlopen +import re +import os +from datetime import date +from datetime import timedelta +import requests +import csv +import json +import time + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + if mode == 'all': + start_year = 1970 + end_year = 2024 + + elif mode == 'nrt': + start_year = start.strftime('%Y') + end_year = (stop + timedelta(days=365)).strftime('%Y') + version = mode + + else: + print('time mode inapplicable') + + #iterate through years + for year in range(int(start_year), int(end_year)): + print(year) + + link_url = 'https://www.ncei.noaa.gov/data/global-hourly/archive/isd' + + #catch server connection exceptions + read_url = False + while read_url == False: + try: + link_data = re.findall("href=[\"\'](.*?)[\"\']", urlopen(link_url, timeout=max_time_per_dl, cafile=certifi.where()).read().decode('utf-8-sig')) + read_url = True + except HTTPError as error: + print('Data not retrieved because %s\nURL: %s'%(error, link_url)) + except URLError as error: + print('Data not retrieved because %s\nURL: %s'%(error, link_url)) + except socket.timeout: + print('socket timed out - URL: %s'%(link_url)) + + #keep only links which end in .csv + link_list = ['{}/{}'.format(link_url,lnk) for lnk in link_data if 'isd_{}'.format(year) in lnk] + + #dir to save files + os.makedirs('{}/NOAA_ISD/original_files/{}/meteo/{}/'.format(dl_root, version, year), exist_ok=True) + specific_directory = '{}/NOAA_ISD/original_files/{}/meteo/{}/'.format(dl_root, version, year) + + #iterates through each link and downloads to required directory + #checks if remote file required already exists and needs updating + #handles issue of server hanging for 3 minutes spoaradically + + #try downloading each link a certain number of times before giving up + for link in link_list: + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) & (errcode != 0): + if n_tries == 0: + print('Checking/Downloading %s'%(link)) + else: + print('*** Previous check/download failed. Re-trying for %s'%(link)) + cmd = 'wget -N -P %s %s -q -o /dev/null'%(specific_directory,link) + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf8', shell=True) + status = process.communicate()[0] + errcode = process.returncode + if errcode != 0: + n_tries+=1 + + #untar file + lnk = link.split('/')[-1] + cmd = 'tar -xf {}/{} -C {}'.format(specific_directory,lnk,specific_directory) + print('Un-tarring file') + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf8', shell=True) + status = process.communicate()[0] + errcode = process.returncode + + #remove isd history + cmd = 'rm {}/isd-history*'.format(specific_directory) + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf8', shell=True) + status = process.communicate()[0] + errcode = process.returncode + + #remove tar file + cmd = 'rm {}/{}'.format(specific_directory,lnk) + process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding='utf8', shell=True) + status = process.communicate()[0] + errcode = process.returncode + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'https://www.ncei.noaa.gov/pub/data/noaa/isd-history.csv' + download_location = dl_root+"/NOAA_ISD/metadata/{}/network_provided/NOAA_ISD_META_{}.csv" + + n_tries = 0 + errcode = 999 + today = date.today() + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url_metadata, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location.format(version, today.strftime('%Y%m%d')), 'wb') as outfile: + outfile.write(r.content) + print('Downloaded metadata') + errcode = r.status_code + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 # increase waiting time + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + """ + # create json from original metadata file + json_metadata = {} + with open('{}/NOAA_ISD/metdata/{}/network_provided/NOAA_ISD_META.csv'.format(dl_root, version), 'r', encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['USAF'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/NOAA_ISD/metadata/{}/processed/NOAA_ISD_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location.format(version, today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['USAF'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/NOAA_ISD/metadata/{}/processed/NOAA_ISD_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station].keys(): # check if column of csv exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('{} not in new metadata file'.format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + for parameter in json_metadata_now[station]: # loop through all the parameters + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + # is there a new parameter that wasn't in the old file? + if parameter in json_metadata[station].keys(): + pass # parameter (column) is already there + else: + print('{} is new'.format(parameter)) + json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + + # safe + with open('{}/NOAA_ISD/metadata/{}/processed/NOAA_ISD_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/NZ_ECAN_download.py b/download_scripts/NZ_ECAN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..eca98b962d2fffeb5920e2661444e64a669315e2 --- /dev/null +++ b/download_scripts/NZ_ECAN_download.py @@ -0,0 +1,193 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path +import csv +import zipfile +import json + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'http://data.ecan.govt.nz/data/{}/Air/Air%20quality%20data%20for%20a%20monitored%20site%20({})/CSV?SiteId={}&StartDate={}&EndDate={}&zip=1' + #base_url = 'http://data.ecan.govt.nz/data/94/Air/Air quality data for a monitored site ({})/CSV?SiteId={}&StartDate={}&EndDate={}&zip=1' + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + # http://data.ecan.govt.nz/data/29/Air/Air%20quality%20data%20for%20a%20monitored%20site%20(10%20minute)/CSV?SiteId=3&StartDate=02%2F06%2F2024&EndDate=18%2F06%2F2024 + # http://data.ecan.govt.nz/data/98/Air/Air%20quality%20data%20for%20a%20monitored%20site%20(daily)/CSV?SiteId=&StartDate=&EndDate=&zip=1 + # http://data.ecan.govt.nz/data/94/Air/Air%20quality%20data%20for%20a%20monitored%20site%20(hourly)/CSV?SiteId=11&StartDate=03%2F06%2F2024&EndDate=18%2F06%2F2024&zip=1 + + + if mode == 'all': + bdate = date(1990, 1, 1) + edate = date.today() + timedelta(days=365) + + os.makedirs('{}/NZ_ECAN/original_files/{}/'.format(dl_root, version), exist_ok=True) + + elif mode == 'nrt': + bdate = start # if code is run after 2 am, data from previous day will be available + edate = stop + timedelta(days=365) # add 1 year so the recent year is included + + os.makedirs('{}/NZ_ECAN/original_files/nrt/'.format(dl_root), exist_ok=True) + + else: + print('time mode inapplicable') + + # read metadata + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + metadata = json.loads(f.read()) + + if mode == 'nrt': + version = mode # update version to nrt in order to store data in correct directory + + station_codes = list(metadata.keys()) + station_IDs = [i.split('_')[0] for i in station_codes] # cut out stations IDs + station_IDs = list(set(station_IDs)) # remove duplicates + + # create date array, daily; format YYYYMMDD + years = pd.date_range(bdate, edate, freq='Y') #.strftime('%Y%m%d').tolist() + print(years.strftime('%Y').tolist()) + temporal_resolutions = {'hourly': 94, 'daily': 98, '10 minute': 29} + + # download + for temporal_resolution in temporal_resolutions: + for station_ID in station_IDs: + + os.makedirs('{}/NZ_ECAN/original_files/{}/NZ_ECAN_{}/'.format(dl_root, version, station_ID), exist_ok=True) + download_location = '{}/NZ_ECAN/original_files/{}/NZ_ECAN_{}/'.format(dl_root, version, station_ID) + + for year in years: + # yearly files + start_date = date(year.year, 1, 1).strftime('%d/%m/%Y') + end_date = date(year.year, 12, 31).strftime('%d/%m/%Y') + file_name = temporal_resolution.replace(' ', '')+'_ID'+station_ID+'_'+year.strftime('%Y') + + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(base_url.format(temporal_resolutions[temporal_resolution], temporal_resolution, station_ID, start_date, end_date), timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location+file_name+'.zip', 'wb') as file: + file.write(r.content) + + # unzip + with zipfile.ZipFile(download_location+file_name+'.zip', 'r') as zip_file: + zip_file.extractall(download_location) + os.rename(download_location+'data.csv', download_location+file_name+'.csv') + os.remove(download_location+file_name+'.zip') + + print('Downloaded resolution {} station {} start {} end {}'.format(temporal_resolution, station_ID, start_date, end_date)) + errcode = r.status_code + + elif r.status_code == 404: + print('No resolution {} station {} start {} end {}'.format(temporal_resolution, station_ID, start_date, end_date)) + errcode = 200 #skip + elif r.status_code == 500: + print('Error 500 resolution {} station {} start {} end {}'.format(temporal_resolution, station_ID, start_date, end_date)) + errcode = 200 #skip + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading resolution {} station {} start {} end {}, {} times in {} seconds, error code {}'.format(temporal_resolution, station_ID, start_date, end_date, n_tries, max_time_per_dl, errcode)) + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + url_metadata = 'http://data.ecan.govt.nz/data/180/Air/Air%20quality%20all%20stations%20and%20monitor%20channels/CSV' + + os.makedirs(dl_root+"/NZ_ECAN/metadata/"+version+"/network_provided/", exist_ok=True) + os.makedirs(dl_root+"/NZ_ECAN/metadata/"+version+"/processed/", exist_ok=True) + + download_location = dl_root+"/NZ_ECAN/metadata/"+version+"/network_provided/NZ_ECAN_META.csv" + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + r = requests.get(url_metadata, headers=Headers, timeout=max_time_per_dl) + n_tries = 0 + errcode = 999 + today = date.today() + while (n_tries < n_max_tries) and (errcode != 200): + if r.status_code == 200: + with open(download_location, 'wb') as outfile: + outfile.write(r.content) + + print('Downloaded metadata') + errcode = r.status_code + + elif r.status_code == 404: + print("No metadata found, error 404") + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url_metadata, n_tries, max_time_per_dl, errcode)) + time.sleep(1) + + # create json from original metadata file + """json_metadata = {} + with open('{}/NZ_ECAN/metadata/{}/network_provided/NZ_ECAN_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['StationCode']+'_'+row['MonitorChannel'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4))""" + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location) as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['StationCode']+'_'+row['MonitorChannel'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("new {} --- old {}".format(json_metadata_now[station][parameter]['values'][0], json_metadata[station][parameter]['values'][-1])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) diff --git a/download_scripts/NZ_LAWA_download.py b/download_scripts/NZ_LAWA_download.py new file mode 100644 index 0000000000000000000000000000000000000000..c4f018066d0116eaf06bf66ce3a7cdd847791dd7 --- /dev/null +++ b/download_scripts/NZ_LAWA_download.py @@ -0,0 +1,59 @@ +import requests +import time +import pandas as pd +from datetime import date +from datetime import timedelta +import os.path +import csv +import zipfile +import json + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'https://www.lawa.org.nz/media/5261861/airqualitydownloaddata_2016-2022.xlsx' + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + if mode == 'all': + + os.makedirs('{}/NZ_LAWA/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = '{}/NZ_LAWA/original_files/{}/'.format(dl_root, version) + + elif mode == 'nrt': + print("No nrt NZ_LAWA") + exit() + + else: + print('time mode inapplicable') + + + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(base_url, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location+'data_LAWA.xlsx', 'wb') as file: + file.write(r.content) + + # convert ot csv + file = pd.read_excel(download_location+'data_LAWA.xlsx', sheet_name='Air Quality Data') + file.to_csv(download_location+'data_LAWA.csv', index=None, header=True) + + os.remove(download_location+'data_LAWA.xlsx') # delete excel file + + print('Downloaded LAWA') + errcode = r.status_code + + elif r.status_code == 404: + print('No LAWA data found') + errcode = 200 #skip + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading LAWA data {} times in {} seconds, error code {}'.format(n_tries, max_time_per_dl, errcode)) \ No newline at end of file diff --git a/download_scripts/UK_AIR_download.py b/download_scripts/UK_AIR_download.py new file mode 100644 index 0000000000000000000000000000000000000000..7c18b7447648a5570fcba29de28527bbf3a7b4b6 --- /dev/null +++ b/download_scripts/UK_AIR_download.py @@ -0,0 +1,472 @@ +from bs4 import BeautifulSoup +import requests +import time +from datetime import date +from datetime import timedelta +import os.path +import pandas as pd +import numpy as np +import csv +import json + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + base_url = 'https://uk-air.defra.gov.uk/data/atom-dls/{}/{}/atom.en.xml' + #base_url_til_1996 = 'https://uk-air.defra.gov.uk/data/atom-dls/observations/auto/GB_FixedObservations_{}_CRD.xml' + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + + if mode == 'all': + bdate = date(1970, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + timedelta(days = 365) + + os.makedirs('{}/UK_AIR/original_files/{}/'.format(dl_root,version), exist_ok=True) + download_location = '{}/UK_AIR/original_files/{}/'.format(dl_root,version) + + elif mode == 'nrt': + version = mode + bdate = start + edate = stop + timedelta(days = 365) + + os.makedirs('{}/UK_AIR/original_files/nrt/'.format(dl_root), exist_ok=True) + download_location = '{}/UK_AIR/original_files/nrt/'.format(dl_root) + + else: + print('time mode inapplicable') + + + # create date array, daily; format YYYYMMDD + years = pd.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + print(years) + download_feeds = ['auto', 'non-auto', 'aggregated'] + + + for download_feed in download_feeds: + + for year in years: + + os.makedirs('{}/UK_AIR/original_files/{}/{}/{}/'.format(dl_root, version, download_feed, year), exist_ok=True) + + # get feed for each year and mode + url = base_url.format(download_feed, year) + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + soup = BeautifulSoup(r.text, features="html.parser") + + # find link to station feed + station_feeds = soup.find_all(title="Feed containing the dataset in several formats") + for station_feed in station_feeds: + + if station_feed is not None: + station_feed_link = station_feed['href'] + + # request new page url + response = requests.get(station_feed_link, timeout=max_time_per_dl, headers=Headers) + if response.status_code == 200: + soup_dataset = BeautifulSoup(response.text, features="html.parser") + data_link = soup_dataset.find("link", type='application/gml+xml;charset=utf-8')['href'] + print(data_link) + station = data_link.split('_')[-1] + station = station.split('.')[0] + + # request download + res = requests.get(data_link, timeout=max_time_per_dl, headers=Headers) + if res.status_code == 200: + + # check if xml contains any data + soup_data = BeautifulSoup(res.text, features="html.parser") + if soup_data.find("om:om_observation") is not None: + + file = '{}/{}/{}/{}_{}_{}.xml'.format(download_location, download_feed, year, download_feed, year, station) + f = open(file, "w") + f.write(res.text) + f.close() + print('Download successful {}'.format(data_link)) + + else: + print('No data found in {}'.format(data_link)) + + else: + print('No xml file found for {}'.format(data_link)) + + else: + print('No dataset link found for {}'.format(station_feed_link)) + else: + print('No download feed for {}'.format(url)) + + +""" + response = requests.get(url, headers=Headers) + + soup = BeautifulSoup(response.text, features="html.parser") + #print(soup) + #members = soup.find_all(rdid='') + #members = soup.find_all('om:OM_Observation') + members = soup.find_all('gml:featuremember') + for member in members: + component = member.find('om:observedproperty') + if component is not None: + component_links = component['xlink:href'] + data = member.find('swe:values')""" + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + base_url = 'https://uk-air.defra.gov.uk/data/atom-dls/metadata/atom.en.xml' # base link to metadata: contains all available metadata links we might need, choose the ones we need + url_stations = 'https://uk-air.defra.gov.uk/data/atom-dls/metadata/D_GB_all_Station.xml' # link to Description of the configuration UK air quality monitoring stations + url_sap = 'https://uk-air.defra.gov.uk/data/atom-dls/metadata/D_GB_SamplingPoint.xml' + url_assess = 'https://uk-air.defra.gov.uk/data/atom-dls/metadata/C_GB_AssessmentRegime_retro.xml' + url_sample = 'https://uk-air.defra.gov.uk/data/atom-dls/metadata/D_GB_Sample.xml' + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + today = date.today() + + os.makedirs('{}/UK_AIR/metadata/{}/network_provided/'.format(dl_root, version), exist_ok=True) + download_location = '{}/UK_AIR/metadata/{}/network_provided/'.format(dl_root, version) + + + # get sampling point meta data and all other ------------------------------------------------------------------------------------------------- + urls = [url_sap, url_stations, url_assess, url_sample] + soups = [] + + for url in urls: + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + + if r.status_code == 200: + soups.append(BeautifulSoup(r.text, 'xml')) + errcode = r.status_code + + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + + elif r.status_code == 403: + print("Permission denied for {}".format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading metadata UK AIR') + + # create csv for all metadata + cols = ['Sampling Point ID', 'Version ID', 'Name', 'Latitude', 'Longitude', 'Start Date', 'End Date', 'Pollutant Eionet code', 'Pollutant Link Eionet', 'Station Code', 'Station Link UK', 'Station Classification Eionet', 'Station Classification Link'] + rows = [] + + # add sampling point meta data ---------------------------------------------------------------------------------------------- + stations = soups[0].find_all("aqd:AQD_SamplingPoint") + for station in stations: + sampling_point_ID = station.get('gml:id')[-5:] + version_ID = station.find('base:versionId').getText() + name = station.find("ef:name").getText() + lat = station.find('gml:pos').getText().split(' ')[0] + lon = station.find('gml:pos').getText().split(' ')[1] + start = station.find('gml:beginPosition').getText() + stop = station.find('gml:endPosition').getText() + pollutant = station.find('ef:observedProperty').get('xlink:href') + pollutant_ID = pollutant.split('/')[-1] + station_link = station.find('ef:broader').get('xlink:href') + station_ID = station_link.split('_')[-1] + station_class_link = station.find('aqd:stationClassification').get('xlink:href') + station_class = station_class_link.split('/')[-1] + + + rows.append({"Sampling Point ID": sampling_point_ID, + "Version ID": version_ID, + "Name": name, + "Latitude": lat, + "Longitude": lon, + "Start Date": start, + "End Date": stop, + "Pollutant Eionet code": pollutant_ID, + "Pollutant Link Eionet": pollutant, + "Station Code": station_ID, + "Station Link UK": station_link, + "Station Classification Eionet": station_class, + "Station Classification Link": station_class_link}) + + df = pd.DataFrame(rows, columns=cols) + + # add station metadata ----------------------------------------------------------------------------------- + df['Site name'] = np.nan + df['Altitude'] = np.nan + df['Environment Type Eionet'] = np.nan + df['Environment Type Eionet Link'] = np.nan + df['Site Info Link UK'] = np.nan + + stations = soups[1].find_all("aqd:AQD_Station") + + for station in stations: + station_code = station.find('aqd:natlStationCode').getText() + EU_station_code = station.find('aqd:EUStationCode').getText() + name = station.find("ef:name").getText() + alt = station.find('aqd:altitude').getText() + area_link = station.find('aqd:areaClassification').get('xlink:href') + area = area_link.split('/')[-1] + station_info = station.find('aqd:stationInfo').getText() + + for station_code_sp in set(df["Station Code"]): # loop over stations in sampling point metadata + if (station_code_sp == station_code) or (station_code_sp == EU_station_code): # match sampling point with corresponding station + df.loc[df['Station Code'] == station_code_sp, 'Site name'] = [str(name)] * len(df.loc[df['Station Code'] == station_code_sp]['Site name']) + df.loc[df['Station Code'] == station_code_sp, 'Altitude'] = [alt] * len(df.loc[df['Station Code'] == station_code_sp]['Site name']) + df.loc[df['Station Code'] == station_code_sp, 'Environment Type Eionet'] = [str(area)] * len(df.loc[df['Station Code'] == station_code_sp]['Site name']) + df.loc[df['Station Code'] == station_code_sp, 'Environment Type Eionet Link'] = [str(area_link)] * len(df.loc[df['Station Code'] == station_code_sp]['Site name']) + df.loc[df['Station Code'] == station_code_sp, 'Site Info Link UK'] = [str(station_info)] * len(df.loc[df['Station Code'] == station_code_sp]['Site name']) + + + + # add SAMPLE metadata ----------------------------------------------------------------------------------- + df['Inlet Height (m)'] = np.nan + df['Building Distance (m)'] = np.nan + df['Kerb Distance (m)'] = np.nan + + stations = soups[3].find_all("aqd:AQD_Sample") + + for station in stations: + try: + name_samp = station.find('gml:name').getText() + except: + continue + + try: + inletheight = station.find('aqd:inletHeight').getText() + except: + inletheight = None + + try: + builddis = station.find('aqd:buildingDistance').getText() + except: + builddis = None + + try: + kerbdis = station.find('aqd:kerbDistance').getText() + except: + kerbdis = None + + + for name in df["Name"]: # loop over sampling points + if name == name_samp: # match sampling point with corresponding station + df.loc[df['Name'] == name, 'Inlet Height (m)'] = inletheight + df.loc[df['Name'] == name, 'Building Distance (m)'] = builddis + df.loc[df['Name'] == name, 'Kerb Distance (m)'] = kerbdis + + + # add assessment regime metadata ----------------------------------------------------------------------------------- + df['Metric'] = np.nan + df['Assessment Type'] = np.nan + + stations = soups[2].find_all("aqd:AQD_AssessmentRegime") + + for station in stations: + try: + sampling_point_ID = station.find('aqd:samplingPointAssessmentMetadata').get('xlink:href').split('_')[-1] + except: + continue + + try: + metric = station.find('aqd:reportingMetric').get('xlink:href').split('/')[-1] + except: + metric = None + + try: + assessment_type = station.find('aqd:assessmentType').get('xlink:href').split('/')[-1] + except: + assessment_type = None + + + for samp_ID in df["Sampling Point ID"]: # loop over sampling points + if samp_ID == sampling_point_ID: # match sampling point with corresponding station + df.loc[df['Sampling Point ID'] == samp_ID, 'Metric'] = str(metric) + df.loc[df['Sampling Point ID'] == samp_ID, 'Assessment Type'] = str(assessment_type) + + + # write csv + df.drop_duplicates().to_csv(download_location+'UK_AIR_META_all_{}.csv'.format(today.strftime('%Y%m%d')), index=False) + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'UK_AIR_META_all_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['Sampling Point ID'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + """ + # create json from original metadata file + json_metadata = {} + with open('{}/UK_AIR/metadata/{}/network_provided/UK_AIR_META.csv'.format(dl_root, version), 'r', encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['station_code'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/UK_AIR/metadata/{}/processed/UK_AIR_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4))""" + + + # read standardised file to compare! + with open('{}/UK_AIR/metadata/{}/processed/UK_AIR_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if parameter in json_metadata_now[station].keys(): # check if column of csv exists in new file + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('{} not in new metadata file'.format(parameter)) + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + for parameter in json_metadata_now[station]: # loop through all the parameters + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + # is there a new parameter that wasn't in the old file? + if parameter in json_metadata[station].keys(): + pass # parameter (column) is already there + else: + print('{} is new'.format(parameter)) + json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + # safe + with open('{}/UK_AIR/metadata/{}/processed/UK_AIR_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata_now, indent=4)) + + + # get station metadata ---------------------------------------------------------------------------------------------------------------------- + # n_tries = 0 + # errcode = 999 + # while (n_tries < n_max_tries) and (errcode != 200): + # r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + + # if r.status_code == 200: + # soup = BeautifulSoup(r.text, 'xml') + # errcode = r.status_code + + # elif r.status_code == 404: + # print("No data found, error 404") + # errcode = 200 + + # elif r.status_code == 403: + # print("Permission denied for {}".format(url)) + # errcode = 200 + + # else: + # # try again + # print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + # errcode = r.status_code + # n_tries += 1 + # max_time_per_dl = max_time_per_dl*2 + # time.sleep(n_tries ** 2) # wait a lil more every time + + # if n_tries == n_max_tries: + # print('Failed downloading metadata UK AIR') + + + # cols = ['UK-AIR ID', 'EU Site ID', 'Version ID', 'Site Name', 'Latitude', 'Longitude', 'Altitude', 'Start Date', 'End Date', 'Environment Type', 'Station Info'] + # rows = [] + + # stations = soup.find_all("aqd:AQD_Station") + # for station in stations: + # station_code = station.find('aqd:natlStationCode').getText() + # EU_station_code = station.find('aqd:EUStationCode').getText() + # version_ID = station.find('base:versionId').getText() + # name = station.find("ef:name").getText() + # lat = station.find('gml:pos').getText().split(' ')[0] + # lon = station.find('gml:pos').getText().split(' ')[1] + # alt = station.find('aqd:altitude').getText() + # start = station.find('gml:beginPosition').getText() + # stop = station.find('gml:endPosition').getText() + # area = station.find('aqd:areaClassification').get('xlink:href') + # station_info = station.find('aqd:stationInfo').getText() + + # rows.append({"UK-AIR ID": station_code, + # "EU Site ID": EU_station_code, + # "Version ID": version_ID, + # "Site Name": name, + # "Latitude": lat, + # "Longitude": lon, + # "Altitude (m)": alt, + # "Start Date": start, + # "End Date": stop, + # "Environment Type": area, + # "Station Info": station_info}) + + # df = pd.DataFrame(rows, columns=cols) + # df.drop_duplicates().to_csv(download_location+'UK_AIR_META_station_{}.csv'.format(today.strftime('%Y%m%d')), index=False) + + # # create json in desired shape from current metadata file + # json_metadata_now = {} + # with open(download_location+'UK_AIR_META_station_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + # csv_filedata = csv.DictReader(file) + + # for row in csv_filedata: + # key = row['UK-AIR ID'] + # update_date = today.strftime('%Y-%m-%d') + # for parameter in row: + # row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + # json_metadata_now[key] = row + + # # read standardised file to compare! + # with open('{}/UK_AIR/metadata/{}/processed/UK_AIR_META_station.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + # json_metadata = json.loads(f.read()) + + # for station in json_metadata: # loop through all the old stations + # if station in json_metadata_now.keys(): # if station is in current meta data, go on + # for parameter in json_metadata[station]: + # if parameter in json_metadata_now[station].keys(): # check if column of csv exists in new file + # if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # # if different value, append the standardised metadeta file + # print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + # json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + # json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + # else: + # pass + # else: + # print('{} not in new metadata file'.format(parameter)) + # else: + # print('Station {} was abolished'.format(station)) + + # for station in json_metadata_now: # loop through all the new stations + # for parameter in json_metadata_now[station]: # loop through all the parameters + # if station in json_metadata.keys(): # if station is in old meta data + # pass # comparison was done before + # else: # new station appeared! + # print('New station {}'.format(station)) + # json_metadata.update({station: json_metadata_now[station]}) + # # is there a new parameter that wasn't in the old file? + # if parameter in json_metadata[station].keys(): + # pass # parameter (column) is already there + # else: + # print('{} is new'.format(parameter)) + # json_metadata[station].update({parameter: json_metadata_now[station][parameter]}) + + # # safe + # with open('{}/UK_AIR/metadata/{}/processed/UK_AIR_META_station.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/US_EPA_AQS_download.py b/download_scripts/US_EPA_AQS_download.py new file mode 100644 index 0000000000000000000000000000000000000000..1441b859ea4d521a94aab37abf6e94b73db964dc --- /dev/null +++ b/download_scripts/US_EPA_AQS_download.py @@ -0,0 +1,523 @@ +import os +import sys +import requests +import logging +import urllib +import datetime as dt +import json +import csv +import zipfile +import time +import pandas as pd +from pathlib import Path +from datetime import date +from datetime import timedelta +import shutil + +# copy ghost standards in current directory for easier import +shutil.copy('/esarchive/scratch/rgrodofz/software/ghost/GHOST/processing_modules/GHOST_standards.py', '/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/GHOST_standards.py') +from GHOST_standards import standard_parameters + +#from convert_json_csv import convert_json_csv + + +class aqs_epa_api(object): + """defines and configures API to query the aqms database""" + + def __init__(self, ): + self.logger = logging.getLogger(__file__) + self.url_api = "https://aqs.epa.gov/data/api/" + self.headers = {'content-type': 'application/json', 'accept': 'application/json'} + + self.get_states = 'list/states' + self.get_counties = 'list/countiesByState' + self.get_sites = 'list/sitesByCounty' + + self.get_parameters = "list/parametersByClass" + self.get_data_by_site = 'sampleData/bySite' + self.get_Dailydata_by_site = 'dailyData/bySite' + + return + + def get_parameters_in_list(self, ): + """build a query to return data by state""" + query = urllib.parse.urljoin(self.url_api, self.get_parameters) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34', 'pc': 'ALL'} + response = requests.get(url=query, data='', params=params) + return response.text + + def states(self, ): + """build a query to return states in list""" + query = urllib.parse.urljoin(self.url_api, self.get_states) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34'} + response = requests.get(url=query, data='', params=params) + if response.status_code == 200: + return response.text + else: + return print('Response error') + + def counties(self, code): + """build a query to return list of counties by state""" + query = urllib.parse.urljoin(self.url_api, self.get_counties) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34', 'state': str(code)} + response = requests.get(url=query, data='', params=params) + if response.status_code == 200: + return response.text + else: + return 'Response error' + + def sites(self, code, ccode): + """build a query to return list of sites per county""" + query = urllib.parse.urljoin(self.url_api, self.get_sites) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34', 'state': str(code), 'county': str(ccode)} + response = requests.get(url=query, data='', params=params) + if response.status_code == 200: + return response.text + else: + return 'Response error' + + def request_data(self, n_max_tries, max_time_per_dl, query, params): + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + response = requests.get(url=query, data='', params=params, timeout=max_time_per_dl) + + if response.status_code == 200: + return response.text + errcode = response.status_code + + else: + # try again + print('Response error {}, attempt {}'.format(response.status_code, n_tries)) + errcode = response.status_code + n_tries += 1 + + if n_tries == n_max_tries: + print('Failed downloading {}_{}_{}_{}_{} {} times in {} seconds, error code {}'.format(code, ccode, scode, pcode, bbdate[:4], n_tries, max_time_per_dl, errcode)) + return None + + + def get_data_site(self, code, ccode, scode, pcode, bbdate, eedate): + """build a query to return data by site""" + query = urllib.parse.urljoin(self.url_api, self.get_data_by_site) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34', 'param': pcode, 'bdate': bbdate, 'edate': eedate, 'state': str(code), 'county': str(ccode), 'site': str(scode)} + return query, params + + + def get_Dailydata_site(self, code, ccode, scode, pcode, bbdate, eedate): + """build a query to return data by site""" + query = urllib.parse.urljoin(self.url_api, self.get_Dailydata_by_site) + params = {'email': 'raphael.grodofzig@bsc.es', 'key': 'bluewolf34', 'param': pcode, 'bdate': bbdate, 'edate': eedate, 'state': str(code), 'county': str(ccode), 'site': str(scode)} + return query, params + + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + if mode == 'all': + bdate = date(2022, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + timedelta(days = 365) + + os.makedirs('{}/US_EPA_AQS/original_files/{}/'.format(dl_root, version), exist_ok=True) + + elif mode == 'nrt': + version = mode + bdate = start + edate = stop + + os.makedirs('{}/US_EPA_AQS/original_files/nrt/'.format(dl_root), exist_ok=True) + download_location = '{}/US_EPA_AQS/original_files/nrt/'.format(dl_root) + + else: + print('time mode inapplicable') + + + time_resolutions = ['hourly', 'daily'] + years = pd.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + print(years) + + components = {} + for standard_parameter in standard_parameters: + aqs_code = standard_parameters[standard_parameter]['aqs_code'] + if aqs_code: # check if aqs_code is available + components[standard_parameter] = standard_parameters[standard_parameter]['aqs_code'] + + + if mode == 'all': # use US EPA AQS API + + # params_list = json.loads(aqs_epa_api().get_parameters_in_list())['Data'] + # with open('US_EPA_AQS_parameters.json', 'w') as f: + # f.write(json.dumps(params_list, indent=4)) + # params_list = pd.DataFrame(params_list) + # params_list.to_csv('/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_AQS_parameterlist.csv', index=False) + + # find all states + states = json.loads(aqs_epa_api().states())['Data'] + for state in states: + code = state.get('code') + state_name = state.get('value_represented') + print('Downloading... '+state_name) + + # find all counties + counties = json.loads(aqs_epa_api().counties(code))['Data'] + for county in counties: + ccode = county.get('code') + county_name = state.get('value_represented') + + # find all sites + sites = json.loads(aqs_epa_api().sites(code, ccode))['Data'] + for site in sites: + scode = site.get('code') + site_name = site.get('value_represented') + + if ((scode is not None) and (site_name is not None)): # maybe too strict ??? + + for time_resolution in time_resolutions: + + for component in components: + pcode = components[component][0] # select first aqs_code if there are multiple + + for year in years: + # yearly files + bbdate = date(int(year), 1, 1).strftime('%Y%m%d') + eedate = date(int(year), 12, 31).strftime('%Y%m%d') + + if time_resolution == 'hourly': + query, params = aqs_epa_api().get_data_site(code, ccode, scode, pcode, bbdate, eedate) + elif time_resolution == 'daily': + query, params = aqs_epa_api().get_Dailydata_site(code, ccode, scode, pcode, bbdate, eedate) + else: + print('Time resolution problem') + + data_per_site = aqs_epa_api().request_data(n_max_tries, max_time_per_dl, query, params) + if data_per_site == None: + continue # skip if download failed + + # check if data is available for that site + if json.loads(data_per_site)['Header'][0]['status'] == 'Success': + # save files + filename = '{}_{}_{}_{}_{}_{}.json'.format(time_resolution, code, ccode, scode, pcode, year) + + # folder per year + os.makedirs('{}/US_EPA_AQS/original_files/{}/{}/{}/'.format(dl_root, version, component, year), exist_ok=True) + download_location = '{}/US_EPA_AQS/original_files/{}/{}/{}/'.format(dl_root, version, component, year) + + with open(download_location+filename, 'w') as outfile: + outfile.write(data_per_site) + print("Downloaded {}".format(filename)) + else: + print('No data found for {}_{}_{}_{}_{}_{}'.format(time_resolution, code, ccode, scode, pcode, year)) + continue + + + elif mode == 'nrt': # use AirNow + + base_url = 'https://s3-us-west-1.amazonaws.com//files.airnowtech.org/airnow/{}/{}/HourlyData_{}.dat' + + # create hourly array + hours = pd.date_range(bdate, edate, freq='H').strftime('%Y%m%d%H').tolist()[:-1] + + # download + for hour in hours: + url = base_url.format(hour[:4], hour[:8], hour) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + with open(download_location+'HourlyData_'+hour+'.dat', 'wb') as file: + file.write(r.content) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + + elif r.status_code == 403: + print("Permission denied for {}".format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + urls = ['https://aqs.epa.gov/aqsweb/airdata/aqs_monitors.zip', 'https://aqs.epa.gov/aqsweb/airdata/aqs_sites.zip'] + filenames = ['aqs_monitors.zip', 'aqs_sites.zip'] + today = date.today() + + os.makedirs('{}/US_EPA_AQS/metadata/{}/network_provided/temp/'.format(dl_root, version), exist_ok=True) + download_location = '/{}/US_EPA_AQS/metadata/{}/network_provided/temp/'.format(dl_root, version) + + i=0 + for url in urls: + + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+filenames[i]) + print('Downloaded {}'.format(filenames[i])) + + # unzip + with zipfile.ZipFile(download_location+filenames[i], 'r') as zip_ref: + zip_ref.extractall(download_location) + + os.remove(download_location+filenames[i]) + errcode = r.status_code + + elif r.status_code == 404: + print("No data found, error 404") + errcode = 200 + + elif r.status_code == 403: + print("Permission denied for {}".format(url)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + max_time_per_dl = max_time_per_dl*2 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + + # JSON =============================================================================================== + """ + # create json from original metadata file ===================================================================================== + with open('{}/US_EPA_AQS/metadata/{}/network_provided/{}.csv'.format(dl_root, version, filenames[i][:-4]), 'r') as file: + csv_filedata = csv.DictReader(file) + + state_codes = [] + [state_codes.append(row['State Code']) for row in csv_filedata if row['State Code'] not in state_codes] + + if filenames[i] == 'aqs_sites.zip': #sites + json_metadata = {} + file.seek(0) # set iterator to first line + for row in csv_filedata: + update_date = today.strftime('%Y-%m-%d') + key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number'] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_EPA_AQS/metadata/{}/processed/US_EPA_AQS_META_{}.json'.format(dl_root, version, filenames[i][4:-4]), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + elif filenames[i] == 'aqs_monitors.zip': #monitors + os.makedirs('{}/US_EPA_AQS/metadata/{}/processed/monitors_by_state/'.format(dl_root, version), exist_ok=True) + + for state_code in state_codes: + json_metadata = {} + file.seek(0) + for row in csv_filedata: + if row['State Code'] == state_code: # only include rows from one state + update_date = today.strftime('%Y-%m-%d') + key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number']+'_'+row['Parameter Code'] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_EPA_AQS/metadata/{}/processed/monitors_by_state/US_EPA_AQS_META_monitors_{}.json'.format(dl_root, version, state_code), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + else: + print("Key error")""" + + + # create json in desired shape from current metadata file + with open('{}/US_EPA_AQS/metadata/{}/network_provided/temp/{}.csv'.format(dl_root, version, filenames[i][:-4]), 'r') as file: + csv_filedata = csv.DictReader(file) + state_codes = [] + [state_codes.append(row['State Code']) for row in csv_filedata if row['State Code'] not in state_codes] + + if filenames[i] == 'aqs_sites.zip': #sites + json_metadata_now = {} + file.seek(0) + for row in csv_filedata: + update_date = today.strftime('%Y-%m-%d') + key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number'] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + with open('{}/US_EPA_AQS/metadata/{}/network_provided/US_EPA_AQS_META_{}_{}.json'.format(dl_root, version, filenames[i][4:-4], today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata_now, indent=4, ensure_ascii=False)) + + elif filenames[i] == 'aqs_monitors.zip': #monitors + # create directory for monitor meta files per state + os.makedirs('{}/US_EPA_AQS/metadata/{}/network_provided/monitors_by_state_{}/'.format(dl_root, version, today.strftime('%Y%m%d')), exist_ok=True) + + for state_code in state_codes: + json_metadata_now = {} + file.seek(0) + for row in csv_filedata: + if row['State Code'] == state_code: # only include rows from one state + update_date = today.strftime('%Y-%m-%d') + key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number']+'_'+row['Parameter Code'] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + with open('{}/US_EPA_AQS/metadata/{}/network_provided/monitors_by_state_{}/US_EPA_AQS_META_monitors_{}_{}.json'.format(dl_root, version, today.strftime('%Y%m%d'), state_code, today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata_now, indent=4, ensure_ascii=False)) + + else: + print("Key error") + + + + # print("Creating and comparing json of {}".format(filenames[i])) + # if filenames[i] == 'aqs_sites.zip': #sites + # json_metadata_now = {} + # with open(download_location+'{}.csv'.format(filenames[i][:-4]), encoding='utf-8') as file: + # csv_filedata = csv.DictReader(file) + + # for row in csv_filedata: + # if filenames[i] == 'aqs_sites.zip': #sites + # key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number'] + # elif filenames[i] == 'aqs_monitors.zip': #monitors + # key = row['State Code']+'_'+row['County Code']+'_'+row['Site Number']+'_'+row['Parameter Code'] + # else: + # print("Key error") + + # update_date = today.strftime('%Y-%m-%d') + # for parameter in row: + # row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + # json_metadata_now[key] = row + + # with open('{}/US_EPA_AQS/metadata/{}/network_provided/US_EPA_AQS_META_{}_{}.json'.format(fl_root, version, filenames[i][4:-4], today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + # f.write(json.dumps(json_metadata_now, indent=4, ensure_ascii=False)) + + # # alternative reading huge csv file with limited ram + # elif filenames[i] == 'aqs_monitors.zip': #monitors + # json_metadata_now = {} + # meta_monitors = pd.read_csv(download_location+'{}.csv'.format(filenames[i][:-4]), encoding='utf-8') + # print(meta_monitors) + + # for j in meta_monitors.index: # loop over rows + # if filenames[i] == 'aqs_sites.zip': #sites + # key = str(meta_monitors.iloc[j,:]['State Code'])+'_'+str(meta_monitors.iloc[j,:]['County Code'])+'_'+str(meta_monitors.iloc[j,:]['Site Number']) + # elif filenames[i] == 'aqs_monitors.zip': #monitors + # key = str(meta_monitors.iloc[j,:]['State Code'])+'_'+str(meta_monitors.iloc[j,:]['County Code'])+'_'+str(meta_monitors.iloc[j,:]['Site Number'])+'_'+str(meta_monitors.iloc[j,:]['Parameter Code']) + # else: + # print("Key error") + # print(key) + + # update_date = today.strftime('%Y-%m-%d') + # json_metadata_now[key] = {} + # for k in range(len(meta_monitors.iloc[j,:])): # loop over columns + # parameter = {'values': [str(meta_monitors.iloc[j,k])], 'update_time': [update_date]} # create inner dictionary for every parameter + # json_metadata_now[key].update({meta_monitors.columns[k]: parameter}) + + # with open('{}/US_EPA_AQS/metadata/{}/network_provided/US_EPA_AQS_META_{}_{}.json'.format(dl_root, version, filenames[i][4:-4], today.strftime('%Y%m%d')), 'w', encoding='utf-8') as f: + # #f.write(json.dumps(json_metadata_now, indent=4, ensure_ascii=False)) + # f.write('[') + # for item in json_metadata_now: + # print(item) + # f.write('{') + # f.write(json.dumps(item, indent=4, ensure_ascii=False)) + # f.write(': ') + # f.write(json.dumps(json_metadata_now[item], indent=4, ensure_ascii=False)) + # f.write('},\n') + # f.write(']') + # else: + # pass + + + i=i+1 + + + # SITES ================================================================================================================================ + #read newly scraped metadata + with open('{}/US_EPA_AQS/metadata/{}/network_provided/US_EPA_AQS_META_sites_{}.json'.format(dl_root, version, today.strftime('%Y%m%d')), 'r', encoding='utf-8') as f: + json_metadata_now = json.loads(f.read()) + + # read standardised file to compare! + with open('{}/US_EPA_AQS/metadata/{}/processed/US_EPA_AQS_META_sites.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/US_EPA_AQS/metadata/{}/processed/US_EPA_AQS_META_sites.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) + + + # MONITORS ============================================================================================ + files_now = os.listdir('{}/US_EPA_AQS/metadata/{}/network_provided/monitors_by_state_{}/'.format(dl_root, version, today.strftime('%Y%m%d'))) + files_old = os.listdir('{}/US_EPA_AQS/metadata/{}/processed/monitors_by_state/'.format(dl_root, version)) + + for file_now in files_now: + for file_old in files_old: + if file_now.split('_')[5] == file_old.split('_')[5][:-5]: # match the files by state! + + with open('{}/US_EPA_AQS/metadata/{}/network_provided/monitors_by_state_{}/{}'.format(dl_root, version, today.strftime('%Y%m%d'), file_now), 'r', encoding='utf-8') as f: + json_metadata_now = json.loads(f.read()) + + # read standardised file to compare! + with open('{}/US_EPA_AQS/metadata/{}/processed/monitors_by_state/{}'.format(dl_root, version, file_old), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/US_EPA_AQS/metadata/{}/processed/monitors_by_state/US_EPA_AQS_META_monitors_{}.json'.format(dl_root, version, file_old.split('_')[5][:-5]), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) \ No newline at end of file diff --git a/download_scripts/US_EPA_AQS_parameterlist.csv b/download_scripts/US_EPA_AQS_parameterlist.csv new file mode 100644 index 0000000000000000000000000000000000000000..43ef83fc3e8c29b8e2d4d1cb25491052433a1793 --- /dev/null +++ b/download_scripts/US_EPA_AQS_parameterlist.csv @@ -0,0 +1,1365 @@ +code,value_represented +11101,Suspended particulate (TSP) +11102,Suspended particulate (TSP) LC +11103,Benzene soluble organics (TSP) +11104,Total polynuclear hydrocarbons +11114,Windblown particulate +11121,Crystalline quartz +11122,Cristabalite +11123,Asbestos > 5um +11124,Asbestos > 0.5um +11125,Total non-asbestos fibers +11201,Soil index (COH) +11202,Soil index (RUD) +11203,Light scatter +11204,Smoke +11205,Soil index (ug/m3) +11206,Light scatter (ug/m3) +11207,Light scatter (miles visibility) +11208,Deciview +11301,Alpha radiation (TSP) +11302,Beta radiation (TSP) +11343,Antimony - 121 (TSP) +11344,Arsenic - 75 (TSP) +11345,Chromium - 50 (TSP) +11346,Chromium - 52 (TSP) +11347,Chromium - 53 (TSP) +11348,Cobalt - 59 (TSP) +11349,Copper - 63 (TSP) +11350,Iron - 56 (TSP) +11351,Lead - 208 (TSP) +11352,Manganese - 55 (TSP) +11353,Molybdenum - 98 (TSP) +11354,Nickel - 60 (TSP) +11355,Strontium - 88 (TSP) +11356,Tin - 117 (TSP) +11357,Zinc - 66 (TSP) +11358,Iron - 57 (TSP) +11359,Nickel - 58 (TSP) +11360,Zinc - 64 (TSP) +11361,Tin - 120 (TSP) +11362,Vanadium - 51 (TSP) +12101,Aluminum (TSP) STP +12102,Antimony (TSP) STP +12103,Arsenic (TSP) STP +12105,Beryllium (TSP) STP +12106,Bismuth (TSP) STP +12107,Barium (TSP) STP +12109,Bromine (TSP) STP +12110,Cadmium (TSP) STP +12111,Calcium (TSP) STP +12112,Chromium (TSP) STP +12113,Cobalt (TSP) STP +12114,Copper (TSP) STP +12115,Chromium VI (TSP) STP +12117,Cerium (TSP) STP +12118,Cesium (TSP) STP +12121,Europium (TSP) STP +12124,Gallium (TSP) STP +12125,Germanium (TSP) STP +12126,Iron (TSP) STP +12127,Hafnium (TSP) STP +12128,Lead (TSP) STP +12129,Lead-210 (TSP) STP +12131,Indium (TSP) STP +12132,Manganese (TSP) STP +12133,Iridium (TSP) STP +12134,Molybdenum (TSP) STP +12136,Nickel (TSP) STP +12138,Thorium-230 (TSP) STP +12139,Thorium-232 (TSP) STP +12140,Magnesium (TSP) STP +12142,Mercury (TSP) STP +12143,Gold (TSP) STP +12146,Lanthanum (TSP) STP +12147,Niobium (TSP) STP +12150,Platinum (TSP) STP +12151,Palladium (TSP) STP +12152,Phosphorus (TSP) STP +12153,Polonium-210 (TSP) STP +12154,Selenium (TSP) STP +12160,Tin (TSP) STP +12161,Titanium (TSP) STP +12162,Samarium (TSP) STP +12163,Scandium (TSP) STP +12164,Vanadium (TSP) STP +12165,Silicon (TSP) STP +12166,Silver (TSP) STP +12167,Zinc (TSP) STP +12168,Strontium (TSP) STP +12169,Sulfur (TSP) STP +12170,Tantalum (TSP) STP +12171,Tellurium and compounds as Te (TSP) STP +12172,Terbium (TSP) STP +12173,Thallium (TSP) STP +12176,Rubidium (TSP) STP +12178,Tungsten (TSP) STP +12179,Uranium (TSP) STP +12180,Potassium (TSP) STP +12183,Yttrium (TSP) STP +12184,Sodium (TSP) STP +12185,Zirconium (TSP) STP +12187,Radium-226 (TSP) STP +12188,Radium-228 (TSP) STP +12190,Boron (TSP) STP +12191,Chlorine (TSP) STP +12201,Bromide (TSP) STP +12202,Fluoride (TSP) STP +12203,Chloride (TSP) STP +12204,Iodide (TSP) STP +12208,Fluoride (vegation) +12209,Fluoride (paper samplers) +12301,Ammonium (TSP) STP +12306,Nitrate (TSP) STP +12309,Nitrite (TSP) STP +12345,Phosphate (TSP) STP +12402,Sulfuric acid (TSP) STP +12403,Sulfate (TSP) STP +12602,Hydrogen ion conc (TSP) STP +12803,Asbestos amphibole (TSP) +13115,Chlorine (TSP) +14101,Aluminum (TSP) LC +14102,Antimony (TSP) LC +14103,Arsenic (TSP) LC +14105,Beryllium (TSP) LC +14107,Barium (TSP) LC +14110,Cadmium (TSP) LC +14111,Calcium (TSP) LC +14112,Chromium (TSP) LC +14113,Cobalt (TSP) LC +14114,Copper(TSP) LC +14115,Chromium VI (TSP) LC +14126,Iron (TSP) LC +14128,Lead (TSP) LC Non-FRM/FEM +14129,Lead (TSP) LC +14132,Manganese (TSP) LC +14134,Molybdenum(TSP) LC +14136,Nickel (TSP) LC +14140,Magnesium (TSP) LC +14142,Mercury (TSP) LC +14154,Selenium (TSP) LC +14160,Tin (TSP) LC +14164,Vanadium (TSP) LC +14166,Silver (TSP) LC +14167,Zinc (TSP) LC +14173,Thallium (TSP) LC +14306,Nitrate (TSP) LC +14403,Sulfate (TSP) LC +16111,Carbon black (TSP) +16115,Paraffins (alkanes) +16117,Tridymite +16118,Aroclor 1060 +16119,Aroclor1221 +16120,Aroclor 1232 +16121,Aroclor 1242 +16122,Aroclor 1248 +16123,Aroclor 1254 +16127,>=C10 Alkenes +16128,C4-C9 Alkenes +16210,n-Hexadecane +16212,4-Phenylcyclohexene +16320,Cellulose (TSP) +16521,Methyl isoamyl ketone +16601,"1,2-Epoxybutane (TSP)STP" +16714,Hexamethylene diisocyanate +16722,N-Nitrosodimethylamine (TSP) STP +16724,"1,2,4,5-Tetrachlorobenzene (TSP) STP" +16725,"1,2,4-Trichlorobenzene (TSP) STP" +16726,"1,2-Dichlorobenzene (TSP) STP " +16727,"1,3-Dichlorobenzene (TSP) STP" +16728,"1,3-Dinitrobenzene (TSP) STP" +16729,"1,4-Dichlorobenzene (TSP) STP" +16730,"1,4-Naphthoquinone (TSP) STP" +16731,1-Naphthylamine (TSP) STP +16732,"2,3,4,6-Tetrachlorophenol (TSP) STP" +16733,"2,4,5-Trichlorophenol (TSP) STP" +16734,"2,4,6-Trichlorophenol (TSP) STP" +16735,"2,4-Dichlorophenol (TSP) STP" +16736,"2,4-Dimethylphenol (TSP) STP" +16737,"2,4-Dinitrophenol (TSP) STP" +16738,"2,4-Dinitrotoluene (TSP) STP" +16739,"2,6-Dichlorophenol (TSP) STP" +16740,"2,6-Dinitrotoluene (TSP) STP" +16741,2-Acetylaminofluorene (TSP) STP +16742,2-Chloronaphthalene (TSP) STP +16743,2-Chlorophenol (TSP) STP +16744,2-Naphthylamine (TSP) STP +16745,2-Nitroaniline (TSP) STP +16746,2-Nitrophenol (TSP) STP +16747,2-Picoline (TSP) STP +16748,"3,3'-Dimethoxybenzidine (TSP) STP" +16749,3-Methylcholanthrene (TSP) STP +16750,3-Nitroaniline (TSP) STP +16751,"4,6-Dinitro-2-methylphenol (TSP) STP" +16752,4-Aminobiphenyl (TSP) STP +16753,4-Bromophenyl phenyl ether (TSP) STP +16754,4-Chloro-3-methylphenol (TSP) STP +16755,4-Chloroaniline (TSP) STP +16756,4-Chlorophenyl-phenyl ether (TSP) STP +16757,4-Dimethylaminoazobenzene (TSP) STP +16758,4-Nitroaniline (TSP) STP +16759,4-Nitrophenol (TSP) STP +16760,5-Nitro-o-toluidine (TSP) STP +16761,"7,12-Dimethylbenz[a]anthracene (TSP) STP" +16762,Acetophenone (TSP) STP +16763,Aniline (TSP) STP +16764,Azobenzene (TSP) STP +16765,Benzidine (TSP) STP +16766,Benzyl alcohol (TSP) STP +16767,bis (2-chloroethyl)ether (TSP) STP +16768,bis(2-chloroethoxy)methane (TSP) STP +16769,bis(2-chloroisopropyl)ether (TSP) STP +16770,bis(2-ethylhexyl)phthalate (TSP) STP +16771,Butyl benzyl phthalate (TSP) STP +16772,Carbazole (TSP) STP +16773,Chlorobenzilate (TSP) STP +16774,Diallate (TSP) STP +16775,Diethyl phthalate (TSP) STP +16776,Dimethyl phthalate (TSP) STP +16777,Di-n-butyl phthalate (TSP) STP +16778,Di-n-octyl phthalate (TSP) STP +16779,Dinoseb (TSP) STP +16780,Diphenylamine (TSP) STP +16781,Ethyl methanesulfonate (TSP) STP +16782,Hexachlorobutadiene (TSP) STP +16783,Hexachloropropene (TSP) STP +16784,Isodrin (TSP) STP +16785,Isosafrole (TSP) STP +16786,m and p-Cresol (TSP) STP +16787,Methyl methanesulfonate (TSP) STP +16788,Nitrobenzene (TSP) STP +16789,N-Nitrosodibutylamine (TSP) STP +16790,N-Nitrosodiethylamine (TSP) STP +16791,N-Nitrosodipropylamine (TSP) STP +16792,N-Nitrosomethylethylamine (TSP) STP +16793,N-Nitrosopiperidine (TSP) STP +16794,N-Nitrosopyrrolidine (TSP) STP +16795,Pentachloroethane (TSP) STP +16796,Phenacetin (TSP) STP +16797,Phenol (TSP) STP +16798,Pronamide (TSP) STP +16799,Pyridine (TSP) STP +16801,Safrole (TSP) STP +16807,Hexachloroethane (TSP) STP +16822,"1,2-Dichlorotetrafluoroethane" +16826,Hexachlorocyclopentadiene (TSP) STP +16901,Epichlorohydrin(DUP) +16906,"1,4-Dioxin" +16914,Isophorone (TSP) STP +16915,2-Methylnaphthalene (TSP) STP +16916,Freon 12 +16917,"1,2,3,6,7,8-Hexachlorodibenzo-p-dioxin (TSP) STP" +16918,"1,2,3,7,8,9-Hexachlorodibenzo-p-dioxin (TSP) STP" +16919,"1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin (TSP) STP" +16920,"1,2,3,7,8-Pentachlorodibenzofuran (TSP) STP" +16921,"2,3,4,7,8-Pentachlorodibenzofuran (TSP) STP" +16922,"1,2,3,4,7,8-Hexachlorodibenzofuran (TSP) STP" +16923,"1,2,3,6,7,8-Hexachlorodibenzofuran (TSP) STP" +16924,"2,3,4,6,7,8-Hexachlorodibenzofuran (TSP) STP" +16925,"1,2,3,7,8,9-Hexachlorodibenzofuran (TSP) STP" +16926,"1,2,3,4,6,7,8-Heptachlorodibenzofuran (TSP) STP" +16927,"1,2,3,4,7,8,9-Heptachlorodibenzofuran (TSP) STP" +16932,"3,3',4,4'-Tetrachlorobiphenyl (TSP) STP" +16933,"2,3',4,4',5-Pentachlorobiphenyl (TSP) STP" +16934,"2,3,3',4,4'-Pentachlorobiphenyl (TSP) STP" +16935,"3,3',4,4',5,5'-Hexachlorobiphenyl (TSP) STP" +16936,"2,2',3,3',4,4',5-Heptachlorobiphenyl (TSP) STP" +16937,"2,2',3,4,4',5,5'-Heptachlorobiphenyl (TSP) STP" +16938,1-Methylnapthalene +16939,"2,4'-Dichlorobiphenyl (TSP) STP" +16940,"4,4'-Dichlorobiphenyl (TSP) STP" +16941,"2,2',5-Trichlorobiphenyl (TSP) STP" +16942,"2,4,4'-Trichlorobiphenyl (TSP) STP" +16943,"2,4',5-Trichlorobiphenyl (TSP) STP" +16944,"3,4,4',5-Tetrachlorobiphenyl (TSP) STP" +16945,"2,3,4,4',5-Pentachlorobiphenyl (TSP) STP" +16946,"2,3',4,4',5'-Pentachlorobiphenyl (TSP) STP" +16947,"3,3',4,4',5-Pentachlorobiphenyl (TSP) STP" +16948,"2,3,3',4,4',5-Hexachlorobiphenyl (TSP) STP" +16949,"2,3,3',4,4',5'-Hexachlorobiphenyl (TSP) STP" +16950,"2,3',4,4',5,5',-Hexachlorobiphenyl (TSP) STP" +16951,"2,3,3',4,4',5,5'-Heptachlorobiphenyl" +16954,"2,3'-Dichlorobiphenyl (TSP) STP" +16956,"3,3'-Dichlorobiphenyl (TSP) STP" +16958,"2,2',6-Trichlorobiphenyl (TSP) STP" +16959,"2,3,4'-Trichlorobiphenyl (TSP) STP" +16960,"2,3',5-Trichlorobiphenyl (TSP) STP" +16961,"2,3',6-Trichlorobiphenyl (TSP) STP" +16962,"2,3',4'-Trichlorobiphenyl (TSP) STP" +16964,"2,2',3,3'-Tetrachlorobiphenyl (TSP) STP" +16966,"2,2',3,5'-Tetrachlorobiphenyl (TSP) STP" +16967,"2,2',3,6-Tetrachlorobiphenyl (TSP) STP" +16968,"2,2',3,6'-Tetrachlorobiphenyl (TSP) STP" +16970,"2,2',4,5'-Tetrachlorobiphenyl (TSP) STP" +16971,"2,2',5,5'-Tetrachlorobiphenyl (TSP) STP" +16972,"2,2',5,6'-Tetrachlorobiphenyl (TSP) STP" +16974,"2,3,4',5-Tetrachlorobiphenyl (TSP) STP" +16975,"2,3',4',5-Tetrachlorobiphenyl (TSP) STP" +16977,"2,4,4',5-Tetrachlorobiphenyl (TSP) STP" +16978,"2,2',3,3',5-Pentachlorobiphenyl (TSP) STP" +16979,"2,2',3,3',6-Pentachlorobiphenyl (TSP) STP" +16980,"2,2',3,4,4'-Pentachlorobiphenyl (TSP) STP" +16981,"2,2',3,4,5'-Pentachlorobiphenyl (TSP) STP" +16982,"2,2',3,4,6'-Pentachlorobiphenyl (TSP) STP" +16983,"2,2',3,4',6-Pentachlorobiphenyl (TSP) STP" +16984,"2,2',3,5,5'-Pentachlorobiphenyl (TSP) STP" +16985,"2,2',3,5',6-Pentachlorobiphenyl (TSP) STP" +16986,"2,2',3,4',5'-Pentachlorobiphenyl (TSP) STP" +16987,"2,2',4,4',5-Pentachlorobiphenyl (TSP) STP" +16988,"2,2',4,5,5'-Pentachlorobiphenyl (TSP) STP" +16989,"2,2',3,3',4,4'-Hexachlorobiphenyl (TSP) STP" +16990,"2,2',3,3',4,5'-Hexachlorobiphenyl (TSP) STP" +16993,"2,2',3,4,5,5'-Hexachlorobiphenyl (TSP) STP" +16994,"2,2',3,4',5,5'-Hexachlorobiphenyl (TSP) STP" +16995,"2,2',3,4',5',6-Hexachlorobiphenyl (TSP) STP" +16996,"2,2',3,5,5',6-Hexachlorobiphenyl (TSP) STP" +16998,"2,3,3',4,4',6-Hexachlorobiphenyl (TSP) STP" +17000,"2,2',3,3',4,5,5'-Heptachlorobiphenyl (TSP) STP" +17001,"2,2',3,3',4,5,6'-Heptachlorobiphenyl (TSP) STP" +17002,"2,2',3,3',4,5',6'-Heptachlorobiphenyl (TSP) STP" +17003,"2,2',3,3',5,5',6-Heptachlorobiphenyl (TSP) STP" +17005,"2,2',3,4,4',5',6-Heptachlorobiphenyl (TSP) STP" +17006,"2,2',3,4,5,5',6-Heptachlorobiphenyl (TSP) STP" +17007,"2,2',3,4',5,5',6-Heptachlorobiphenyl (TSP) STP" +17008,"2,3,3',4',5,5',6-Heptachlorobiphenyl (TSP) STP" +17009,"2,2',3,3',4,4',5,5'-Octachlorobiphenyl (TSP) STP" +17010,"2,2',3,3',4,5,5',6'-Octachlorobiphenyl (TSP) STP" +17011,"2,2',3,3',4,5',6,6'-Octachlorobiphenyl (TSP) STP" +17013,"2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl (TSP) STP" +17018,Mixture PCB 4/10 (TSP) STP +17019,Mixture PCB 7/ 9 (TSP) STP +17020,Mixture PCB 15/17 (TSP) STP +17021,Mixture PCB 18/32 (TSP) STP +17022,Mixture PCB 28/31 (TSP) STP +17023,Mixture PCB 37/42 (TSP) STP +17024,Mixture PCB 41/71/64 (TSP) STP +17025,Mixture PCB 47/48 (TSP) STP +17026,Mixture PCB 56/60 (TSP) STP +17027,Mixture PCB 77/110 (TSP) STP +17028,Mixture PCB 105/132/153 (TSP) STP +17029,Mixture PCB 135/144 (TSP) STP +17030,Mixture PCB 138/163 (TSP) STP +17031,Mixture PCB 170/190 (TSP) STP +17032,Mixture PCB 171/202 (TSP) STP +17033,Mixture PCB 203/196 (TSP) STP +17034,Mixture PCB 208/195 (TSP) STP +17038,"2,3',4-Trichlorobiphenyl (TSP) STP" +17043,"2,3',4,4'-Tetrachlorobiphenyl (TSP) STP" +17044,"2,2',3,3',4-Pentachlorobiphenyl (TSP) STP" +17131,C2 Alkylbenzenes +17140,"2,7-dimethylnaphthalene (TSP) STP" +17141,Naphthalene (TSP) STP +17142,"2,6-dimethylnaphthalene (TSP) STP" +17143,"1,7-dimethylnaphthalene (TSP) STP" +17144,"1,2-Dimethylnaphthalene (TSP) STP" +17145,"2,3-dimethylnaphthalene (TSP) STP" +17146,"1,2-dimethylnaphthalene (TSP) STP" +17147,Acenaphthene (TSP) STP +17148,Acenaphthylene (TSP) STP +17149,Fluorene (TSP) STP +17150,Phenanthrene (TSP) STP +17151,Anthracene (TSP) STP +17152,"1,3-dinitropyrene (TSP) STP" +17153,1-nitropyrene (TSP) STP +17155,3-nitrofluoranthene (TSP) STP +17156,2-methylphenanthrene (TSP) STP +17157,1-methylphenanthrene (TSP) STP +17158,Retene (TSP) STP +17159,9-fluorenone (TSP) STP +17160,Cyclopenta[cd]pyrene (TSP) STP +17161,Fluorene-D10 (TSP) STP +17162,Fluoranthene-D10 (TSP) STP +17199,Polycyclic organic matter (TSP) STP +17201,Fluoranthene (TSP) STP +17202,Polynuclear aromatic hydrocarbons (TSP) STP +17204,Pyrene (TSP) STP +17205,Pyrene-D10 (TSP) STP +17208,Chrysene (TSP) STP +17210,Anthanthrene (TSP) STP +17211,Coronene (TSP) STP +17212,Perylene (TSP) STP +17215,Benzo[a]anthracene (TSP) STP +17220,Benzo[b]fluoranthene (TSP) STP +17223,Benzo[k]fluoranthene (TSP) STP +17224,Benzo[e]pyrene (TSP) STP +17225,"Benzo[b,k]fluoranthene (TSP) STP" +17231,"Dibenzo[a,h]anthracene (TSP) STP" +17237,"Benzo[g,h,i]perylene (TSP) STP" +17241,Benzo[a]pyrene-D12 (TSP) STP +17242,Benzo[a]pyrene (TSP) STP +17243,"Indeno[1,2,3-cd]pyrene (TSP) STP" +17301,o-Cresol (TSP) STP +17302,m-Cresol (TSP) STP +17303,p-Cresol (TSP) STP +17502,Benzanthrone (TSP) STP +17710,o-Toluidine (TSP) STP +17716,"3,3'-Dichlorobenzidene (TSP) STP" +17725,Pentachloronitrobenzene (TSP) STP +17801,Trichlorobenzene (TSP) STP +17802,Tetrachlorobenzene (TSP) STP +17803,Pentachlorobenzene (TSP) STP +17804,Hexachlorobenzene (TSP) STP +17805,Dichlorophenol (TSP) STP +17806,Trichlorophenol (TSP) STP +17807,Tetrachlorophenol (TSP) STP +17808,Pentachlorophenol (TSP) STP +17809,"1,1-Biphenyl, chloro (TSP) STP" +17810,Dichlorobiphenyl (TSP) STP +17811,Trichlorobiphenyl (TSP) STP +17812,Tetrachlorobiphenyl (TSP) STP +17813,Pentachlorobiphenyl (TSP) STP +17814,Hexachlorobiphenyl (TSP) STP +17815,Heptachlorobiphenyl (TSP) STP +17816,Octachlorobiphenyl (TSP) STP +17817,Nonachlorobiphenyl (TSP) STP +17818,Decachlorobiphenyl (TSP) STP +17819,"2,3,7,8,-Tetrachlorodibenzo-p-dioxin" +17820,Total tetachlorodibenzo-p-dioxin (TSP) STP +17821,Total pentachlorodibenzo-p-dioxin (TSP) STP +17822,Total hexachlorodibenzo-p-dioxin (TSP) STP +17823,Total heptachlorodibenzo-p-dioxin (TSP) STP +17824,Total octachlorodibenzo-p-dioxin (TSP) STP +17825,"2,3,7,8-Tetrachlorodibenzofuran (TSP) STP" +17826,Total tetrachlorodibenzofuran (TSP) STP +17827,Total pentachlorodibenzofuran (TSP) STP +17828,Total hexachlorodibenzofuran (TSP) STP +17829,Total heptachlorodibenzofuran (TSP) STP +17830,Total octachlorodibenzofuran (TSP) STP +17833,Polychlorinated biphenyls (PCBs) +17835,Alpha-terpinene (TSP) STP +17902,"Dibenzo[b,e][1,4]dioxin,2,3,7,8-tetrachloro (TSP) STP" +17906,"2,4-Toluene Diisocyanate" +17907,D-limonene +17911,2-6-TOLUENEDIISOCYANATE +18202,Dibenzofuran (TSP) STP +21101,Total dustfall (SP) +21102,Organic Fraction (SP) +21103,Benzene Sol Org (SP) +21113,Inorganic Fractn (SP) +21114,Water Sol Weight (SP) +21115,Water Insol Wt (SP) +21116,Total Weight Ash (SP) +21117,Water Sol Ash (SP) +21118,Water Inso Ash (SP) +22102,Antimony (SP) +22103,Arsenic (SP) +22110,Cadmium (SP) +22111,Calcium (SP) +22112,Chromium (SP) +22114,Copper (SP) +22126,Iron (SP) +22128,Lead (SP) +22132,Manganese (SP) +22136,Nickel (SP) +22142,Mercury (SP) +22166,Silver (SP) +22167,Zinc (SP) +22203,Chloride(SP) +22301,Ammonium (SP) +22306,Nitrate (SP) +22403,Sulfate (SP) +22602,pH (Dustfall) +22604,Ammonia (SP) +25101,Dustfall Combustible (SP) +25303,Conductance (SP) +31101,Respirable part +42101,Carbon monoxide +42102,Carbon dioxide +42153,Carbon disulfide +42215,Chlorine +42242,Mercury (vapor) +42243,Mercury (Reactive Gaseous) +42269,Total sulfur +42301,Hydrobromic acid +42302,Hydrochloric acid +42303,Hydrofluoric acid +42304,Hydronium ion +42305,Nitric acid +42306,Sulfuric acid +42307,Phosphoric acid +42308,Nitrous acid +42401,Sulfur dioxide +42402,Hydrogen sulfide +42406,SO2 max 5-min avg +42410,Sulfation rate +42513,Fluoride ion +42600,Reactive oxides of nitrogen (NOy) +42601,Nitric oxide (NO) +42602,Nitrogen dioxide (NO2) +42603,Oxides of nitrogen (NOx) +42604,Ammonia +42605,NITROUS OXIDE +42607,Hydrogen cyanide +42609,Nitrite +42612,NOy - NO +43000,Sum of PAMS target compounds +43101,Total hydrocarbons +43102,Total NMOC (non-methane organic compound) +43104,Volatile organic compounds +43111,Isomers of dodecane +43121,Isomers of pentene +43122,3-Methyl-1-butene & Cyclopentene +43126,Ethylene & acetylene +43127,Isobutene & 1-butene +43130,"n-Octane & trans-1,3-dichloropropylene" +43131,Unidentified VOC +43134,"1,1-Bis(4-chlorophenyl)-2,2-dichloroethane" +43135,Birdin +43136,"2,4-Dichlorophenoxyacetic acid methyl ester" +43137,Lindane +43138,"1,2,3,4,5,6- Hexachlorocyclohexane" +43139,"1,2,3,4,5,6- Hexachlolocyclohexane, .beta.-" +43140,"1,2,3,4,5,6- Hexachlorocyclohexane, .delta.-" +43141,n-Dodecane +43142,Tridecene +43143,n-Tridecane +43144,Propyne +43145,1-Octene +43148,cis/trans-2-Butene +43149,cis/trans-2-Hexene +43150,cis/trans-2-Pentene +43151,Heptachlor epoxide +43152,Endrin ketone +43153,Methoxychlor +43154,Guthion +43155,Atrazine +43156,Dacthal +43157,Endosulfan +43158,Dursban +43159,Aldrin +43160,Methyl Parathion +43161,Endrin aldehyde +43162,"1,1,1-Trichloro-2,2-bis (p-chlorophenyl) ethane" +43163,Endosulfan 2 +43164,Endrin +43165,Dieldrin +43166,"1,1-Dichloroethenylidene bis(4-chlorobenzene)" +43167,"Phosphorotrithioic acid,S,S,S-tributylester" +43168,Endosulfan sulfate +43169,Malathion +43170,Heptachlor +43171,"Cyclopentane & 2,3-dimethylbutane" +43172,2-Methylheptane & 3-Methylheptane +43173,1-Hexene & 2-Methyl-1-pentene +43174,"2,3-Dimethylbutane & 2-Methylpentane" +43175,Endosulfan 1 (alpha) +43188,Pinene & p-ethytoluene +43189,"beta.Pinene & 1,2,3- trimethylbenzene" +43201,Methane +43202,Ethane +43203,Ethylene +43204,Propane +43205,Propylene +43206,Acetylene +43207,Freon 113 +43208,Freon 114 +43209,Ethyl acetate +43212,n-Butane +43214,Isobutane +43216,trans-2-Butene +43217,cis-2-Butene +43218,"1,3-Butadiene" +43220,n-Pentane +43221,Isopentane +43222,"2,2-Dimethylpropane" +43223,"1,2-Butadiene" +43224,1-Pentene +43225,2-Methyl-1-butene +43226,trans-2-Pentene +43227,cis-2-Pentene +43228,2-Methyl-2-butene +43229,"1,3-Hexadiene" +43230,3-Methylpentane +43231,n-Hexane +43232,n-Heptane +43233,n-Octane +43234,4-Methyl-1-pentene +43235,n-Nonane +43236,2-Ethyl-1-butene +43237,2-Methyl-2-pentene +43238,n-Decane +43241,"2,3-Dimethyl-2-pentene" +43242,Cyclopentane +43243,Isoprene +43244,"2,2-Dimethylbutane" +43245,1-Hexene +43246,2-Methyl-1-pentene +43247,"2,4-Dimethylpentane" +43248,Cyclohexane +43249,3-Methylhexane +43250,"2,2,4-Trimethylpentane" +43251,Cyclopropane +43252,"2,3,4-Trimethylpentane" +43253,3-Methylheptane +43254,cis-3-Hexene +43255,Limonene +43256,alpha.-Pinene +43257,beta.-Pinene +43259,n-Tetradecane +43260,n-Pentadecane +43261,Methylcyclohexane +43262,Methylcyclopentane +43263,2-Methylhexane +43264,Heptane +43269,Cyclohexene +43270,Isobutene +43274,"2,4,4-Trimethyl-1-pentene" +43275,"2,4,4-Trimethyl-2-pentene" +43279,1-Nonene +43280,1-Butene +43282,3-Methyl-1-butene +43283,Cyclopentene +43284,"2,3-Dimethylbutane" +43285,2-Methylpentane +43286,cis-4-Methyl-2-pentene +43289,trans-2-Hexene +43290,cis-2-Hexene +43291,"2,3-Dimethylpentane" +43292,2-2-3-Trimethylpentane +43293,"2,4-Dimethylhexane" +43294,"2,3-Dimethylhexane" +43295,3-Ethylhexane +43296,Ethylcyclohexane +43298,1-Decene +43299,1-Undecene +43301,Methanol +43302,Ethyl alcohol +43303,n-Propyl alcohol +43305,n-Butyl alcohol +43306,ISO-BUTYL ALCOHOL +43307,n-Amyl alcohol +43309,tert-butyl alcohol +43312,2-Propanol +43323,n-Pinene & benzaldehyde +43328,1-Heptene +43329,Butyraldehyde & isobutyraldehyde +43330,Dodecene +43331,2-Chloropentane +43335,3-Chloropropene +43339,Butryl-aldehyde & Methyl Ethyl Ketone +43340,Ethyne & isobutane +43341,Isopentane & cyclopentane +43342,3-Methyl-1-butene & cyclopentene +43343,2-Methyl-2-butene & 1-pentene +43344,1-Hexanol +43346,"Methylcyclopentane & 2,4-dimethylpentane" +43347,2-Methylhexane & cyclohexane +43348,"n-Decane & 1,2,4-trimethylbenzene" +43349,cis-2-Pentene & 2-methylpentane +43352,Dichloroethyl ether +43356,Diethylene glycol +43359,Chlorodifluoromethane +43360,dichlorofluoromethane +43362,"2-Methylhexane & 2,3-dimethylpentane " +43363,"1,2,4-Trimethylbenzene & sec-butylbenzene" +43364,"1,2,4-Trimethylbenzene & .beta.-pinene" +43372,Methyl tert-butyl ether +43373,Tert-amyl methyl ether +43375,"2,2-Dimethylheptane" +43376,"2,2,4-Trimethylhexane" +43378,1-Methylcyclohexene +43379,m(and p)-Ethyltoluene +43391,4-Methylpentene & 3-methylpentene +43392,"2,2,3-Trimethylbutane" +43393,"cis-1,2-Dimethylcyclopentane" +43394,"trans-1,3-Dimethylcyclopentane" +43395,4-Methylheptane +43396,tert-Butyl ethyl ether +43434,n-Propyl acetate +43438,Ethyl acrylate +43440,n-Butyl acrylate +43441,Methyl methacrylate +43447,Vinyl acetate +43501,Aldehydes +43502,Formaldehyde +43503,Acetaldehyde +43504,Propionaldehyde +43505,Acrolein - Unverified +43509,Acrolein - Verified +43510,Butyraldehyde +43511,HEXANAL +43512,Isobutyraldehyde +43513,Isovaleraldehyde +43514,Butyl acetate +43515,Methacrolein +43516,Trans-Crotonaldehyde +43517,Hexanaldehyde +43518,Valeraldehyde +43520,cis-Crotonaldehyde +43521,Decanal +43522,Dodecanal +43523,Tetradecanal +43524,Nonanal +43525,Octanal +43526,Tridecanal +43527,Undecanal +43528,Crotonaldehyde +43549,Methyl ethyl ketone & methacrolein +43551,Acetone +43552,Methyl ethyl ketone +43553,3-Pentanone +43557,3-Hexanone +43558,Methyl Vinyl Ketone +43559,Methyl Butyl Ketone +43560,Methyl isobutyl ketone +43562,2-Pentanone +43563,3-Heptanone +43564,2-Methyl-3-hexanone +43565,Acetophenone +43566,"1,2-Epoxybutane" +43599,Ethane & acetylene +43601,Ethylene oxide +43602,Propylene oxide +43604,"1,2,3-Trichloropropane" +43605,"1,3,5-Trichlorobenzene" +43606,Propionitrile +43607,Epichlorohydrin +43702,Acetonitrile +43704,Acrylonitrile +43756,2-Nitropropane +43776,Radon +43800,Total chlorinated hydrocarbons +43801,Chloromethane +43802,Dichloromethane +43803,Chloroform +43804,Carbon tetrachloride +43805,Dibromomethane +43806,Bromoform +43808,Methyl Iodide +43811,Trichlorofluoromethane +43812,Chloroethane +43813,"1,1-Dichloroethane" +43814,Methyl chloroform +43815,Ethylene dichloride +43816,Duplicate use 43839 +43817,Tetrachloroethylene +43818,"1,1,2,2-Tetrachloroethane" +43819,Bromomethane +43820,"1,1,2-Trichloroethane" +43821,"1,1,2-Trichloro-1,2,2-trifluoroethane" +43823,Dichlorodifluoromethane +43824,Trichloroethylene +43825,"2,2-Dichloro-1,1,1-trifluoroethane" +43826,"1,1-Dichloroethylene" +43827,Carbon Tetrafluoride +43828,Bromodichloromethane +43829,"1,2-Dichloropropane" +43830,"trans-1,3-Dichloropropene" +43831,"cis-1,3-Dichloropropene" +43832,Dibromochloromethane +43833,2-Chloroethyl vinyl ether +43834,"1,1,1,2,2-Pentafluoroethane" +43835,Chloroprene +43836,Bromochloromethane +43837,"1,1,1,2-Tetrachloroethane" +43838,"trans-1,2-Dichloroethylene" +43839,"cis-1,2-Dichloroethene" +43840,"1,2-Dichloroethene(total)" +43841,"1,3-Dichloropropene(total)" +43842,"1-Propene, 3-chloro" +43843,Ethylene dibromide +43844,Hexachlorobutadiene +43847,"1,4-Dichlorobutane" +43848,Halocarbon 134a +43849,Freon 23 +43851,Trichlorotrifluoroethane +43852,Dichlorotetrafluoroethane +43853,1-Bromopropane +43854,"1,1-Difluoroethane" +43860,Vinyl chloride +43861,Vinyl bromide +43862,Ethyl bromide +43863,3-Bromopropene +43901,Methyl mercaptan +43911,Total reduced sulfur +43915,DIMETHYL SULFIDE +43950,Heptanal +43952,Indan +43954,n-Undecane +43955,"2,5-Dimethylhexane" +43960,2-Methylheptane +44101,Total Oxidants +44201,Ozone +44301,Peroxyactyl nitrate +45102,Xylene(s) +45104,Isomers of ethyltoluene +45109,m/p Xylene +45110,Styrene and o-xylene +45111,m(and p)-Xylene & bromoform +45112,"o-Xylene & 1,1,2,2-tetrachloroethane" +45115,"Benzene & 1,2-dichloroethane" +45116,m/p Ethyltoluene +45140,O-xylene & N-nonane +45201,Benzene +45202,Toluene +45203,Ethylbenzene +45204,o-Xylene +45205,m-Xylene +45206,p-Xylene +45207,"1,3,5-Trimethylbenzene" +45208,"1,2,4-Trimethylbenzene" +45209,n-Propylbenzene +45210,Isopropylbenzene +45211,o-Ethyltoluene +45212,m-Ethyltoluene +45213,p-Ethyltoluene +45216,sec-Butylbenzene +45217,o-Diethylbenzene +45218,m-Diethylbenzene +45219,p-Diethylbenzene +45220,Styrene +45221,"Benzene,(1-methylethenyl)-" +45225,"1,2,3-Trimethylbenzene" +45228,"Benzene, 1-ethenyl-4-methyl" +45230,p-tert-butyl toluene +45231,"1,2,4,5-Tetramethylbenzene" +45232,Butylbenzene +45233,Butyl benzene +45234,n-Hexylbenzene +45300,Phenol +45301,Biphenyl +45501,Benzaldehyde +45503,"2,5-Dimethylbenzaldehyde" +45504,Tolualdehydes +45505,o-Tolualdehyde +45506,m & p-Tolualdehyde +45507,p-Tolualdehyde +45508,m-Tolualdehyde +45704,"4,4-Methylenedianiline" +45705,Nitrobenzene +45732,"4,4-Methylenediphenyl Diisocyanate (MDI)" +45801,Chlorobenzene +45805,"1,2-Dichlorobenzene" +45806,"1,3-Dichlorobenzene" +45807,"1,4-Dichlorobenzene" +45808,Bromofluorobenzene +45809,Benzyl chloride +45810,"1,2,4-Trichlorobenzene" +45811,2-chlorotoluene +45815,"Benzene, 1,2,3-trichloro-" +45820,4-Chloro-3-methylphenol +45850,Naphthalene +45851,1-Methylnaphthalene +45852,2-Methylnaphthalene +46201,"1,4-Dioxane" +46401,"Furan, tetrahydro-" +61101,Wind Speed - Scalar +61102,Wind Direction - Scalar +61103,Wind Speed - Resultant +61104,Wind Direction - Resultant +61105,Peak Wind Gust +61106,Std Dev Hz Wind Direction +61107,Std Dev Vt Wind Direction +61109,Vertical Wind Speed +61110,Std Dev Vt Wind Speed +61111,Std Dev Hz Wind Speed +61112,Vert Wind Direction +61120,Atmospheric Stability +61202,Lapse Rate +61301,Mixing Height +61302,Mixing Speed +62101,Outdoor Temperature +62102,Virtual Temperature +62103,Dew Point +62104,Temperature 24-Hr Max +62105,Temperature 24-Hr Min +62106,Temperature Difference +62107,Indoor Temperature +62108,Soil Temperature +62201,Relative Humidity +62202,Relative Humidity Factor +62604,Ammonia (precip) +63101,Visibility +63102,Light Absorption Coeffiecient +63301,Solar radiation +63302,Ultraviolet radiation +63303,Infrared Radiation +63304,Ultraviolet radiation (type B) +63305,Net radiation +64101,Barometric pressure +65101,Rain 24hr total +65102,Rain/melt precipitation +65105,Beryllium (precip) +65107,Barium (precip) +65112,Chromium (Precip) +65113,Cobalt (precip) +65134,Molybdenum (precip) +65152,Phosphorus (precip) +65164,Vanadium (precip) +65166,Silver (precip) +65173,Thallium (precip) +65190,Boron (precip) +65301,Volume (precip) +65302,PH (precip) +65303,Conductivity (precip) +65305,Radioactivity rainfall +65306,Strong Acids (precip) +65311,Sodium (precip) +65312,Potassium (precip) +65313,Magnesium (precip) +65314,Calcium (precip) +65315,Fluoride (precip) +65316,Chloride (precip) +65318,Ammonium (precip) +65321,Nitrate (precip) +65322,Sulfate (precip) +65329,Mercury (precip) +65330,Acidity (precip) +65331,Alkalinity (precip) +65332,Cadmium (precip) +65333,Copper(precip) +65334,Iron (precip) +65335,Manganese (precip) +65336,Nickel (precip) +65337,Lead (precip) +65338,Zinc (precip) +65339,Arsenic (precip) +65342,Aluminum (precip) +65343,Nitrite (precip) +65344,Antimony (precip) +65401,Dry deposition +65429,Mercury (deposition) +65551,Silica (precip) +66101,Cloud cover +68101,Sample Flow Rate- CV +68102,Sample Volume +68103,Ambient Min Temperature +68104,Ambient Max Temperature +68105,Average Ambient Temperature +68106,Sample Min Baro Pressure +68107,Sample Max Baro Pressure +68108,Average Ambient Pressure +68109,Elapsed Sample Time +68110,Relative Humidity +68111,Sample Flow Rate CV - Teflon Filter +68112,Sample Flow Rate CV - Nylon Filter +68113,Sample Flow Rate CV - Quartz Filter +68114,Sample Volume - Teflon Filter +68115,Sample Volume - Nylon Filter +68116,Sample Volume - Quartz Filter +68117,Average Ambient Temperature for URG3000N +68118,Average Ambient Pressure for URG3000N +72101,Silver tarnishing +72201,Steel corrosion +72301,Dyed fabric #1 +72302,Dyed fabric #2 +72303,Dyed fabric #3 +72304,Dyed fabric #4 +72305,Dyed fabric #5 +72306,Dyed fabric #6 +72307,Dyed fabric #7 +72308,Dyed fabric #8 +72309,Dyed fabric #9 +72401,Rubber cracking +72501,Nylon deterioration +81101,Size fractionated particulate +81102,PM10 Total 0-10um STP +81103,PM10-2.5 STP +81104,PM2.5 STP +81111,TOTAL CARBON (PM10) use 82116 +81301,AMMONIUM (PM10) use 82301 +82101,Aluminum PM10 STP +82102,Antimony PM10 STP +82103,Arsenic PM10 STP +82105,Beryllium PM10 STP +82107,Barium PM10 STP +82109,Bromide PM10 STP +82110,Cadmium PM10 STP +82111,Calcium PM10 STP +82112,Chromium PM10 STP +82113,Cobalt PM10 STP +82114,Copper PM10 STP +82115,Chlorine PM10 STP +82116,Total Carbon PM10 STP +82119,Chromium VI PM10 STP +82124,Gallium PM10 STP +82126,Iron PM10 STP +82127,Palladium PM10 STP +82128,Lead PM10 STP +82131,Indium PM10 STP +82132,Manganese PM10 STP +82134,Molybdenum PM10 STP +82136,Nickel PM10 STP +82140,Magnesium PM10 STP +82142,Mercury PM10 STP +82146,Lanthanum PM10 STP +82151,Dibenz(A-H)Anthracene PM10 STP +82152,Phosphorus PM10 STP +82154,Selenium PM10 STP +82160,Tin PM10 STP +82161,Titanium PM10 STP +82164,Vanadium PM10 STP +82165,Silicon PM10 STP +82166,Silver PM10 STP +82167,Zinc PM10 STP +82168,Strontium PM10 STP +82169,Sulfur PM10 STP +82173,Thallium PM10 STP +82176,Rubidium PM10 STP +82179,Uranium PM10 STP +82180,Potassium PM10 STP +82183,Yttrium PM10 STP +82184,Sodium PM10 STP +82185,Zirconium PM10 STP +82190,Boron PM10 STP +82202,Fluoride PM10 STP +82203,Chloride PM10 STP +82220,Benzo(b)Fluranthene PM10 STP +82223,Benzo(k)Fluoranthene PM10 STP +82237,"Benzo(g,h,i)Perylene PM10 STP" +82242,Benzo(a)Pyrene PM10 STP +82243,"Indeno[1,2,3-cd] pyrene PM10 STP" +82301,Ammonium PM10 STP +82305,Organic carbon PM10 STP +82306,Nitrate PM10 STP +82307,Elemental Carbon PM10 STP +82356,Nitrate PM2.5 STP +82403,Sulfate PM10 STP +82453,Sulfate PM2.5 STP +82551,Silica PM10 STP +83101,Aluminum PM10-2.5 STP +83102,Antimony PM10-2.5 STP +83103,Arsenic PM10-2.5 STP +83107,Barium PM10-2.5 STP +83109,Bromine PM10-2.5 STP +83110,Cadmium PM10-2.5 STP +83111,Calcium PM10-2.5 STP +83112,Chromium PM10-2.5 STP +83113,Cobalt PM10-2.5 STP +83114,Copper PM10-2.5 STP +83115,Chlorine PM10-2.5 STP +83126,Iron PM10-2.5 STP +83128,Lead PM10-2.5 STP +83129,Indium (PM10) +83130,Gallium (PM10) +83132,Manganese PM10-2.5 STP +83134,Molybdenum PM10-2.5 STP +83136,Nickel PM10-2.5 STP +83142,Mercury PM10-2.5 STP +83147,Lanthanum (PM10) +83152,Phosphorus PM10-2.5 STP +83154,Selenium PM10-2.5 STP +83160,Tin PM10-2.5 STP +83161,Titanium PM10-2.5 STP +83164,Vanadium PM10-2.5 STP +83165,Silicon PM10-2.5 STP +83167,Zinc PM10-2.5 STP +83168,Strontium PM10-2.5 STP +83169,Sulfur PM10-2.5 STP +83176,Rubidium PM10-2.5 STP +83179,Uranium PM10-2.5 STP +83180,Potassium PM10-2.5 STP +83183,Yttrium PM10-2.5 STP +83185,Zirconium PM10-2.5 STP +84101,Aluminum PM2.5 STP +84102,Antimony PM2.5 STP +84103,Arsenic PM2.5 STP +84107,Barium PM2.5 STP +84109,Bromine PM2.5 STP +84110,Cadmium PM2.5 STP +84111,Calcium PM2.5 STP +84112,Chromium PM2.5 STP +84113,Cobalt PM2.5 STP +84114,Copper PM2.5 STP +84115,Chlorine PM2.5 STP +84126,Iron PM2.5 STP +84128,Lead PM2.5 STP +84132,Manganese PM2.5 STP +84134,Molybdenum PM2.5 STP +84136,Nickel PM2.5 STP +84140,Magnesium PM2.5 STP +84142,Mercury PM2.5 STP +84152,Phosphorus PM2.5 STP +84154,Selenium PM2.5 STP +84160,Tin PM2.5 STP +84161,Titanium PM2.5 STP +84164,Vanadium PM2.5 STP +84165,Silicon PM2.5 STP +84167,Zinc PM2.5 STP +84168,Strontium PM2.5 STP +84169,Sulfur PM2.5 STP +84176,Rubidium PM2.5 STP +84179,Uranium PM2.5 STP +84180,Potassium PM2.5 STP +84183,Yttrium PM2.5 STP +84184,Sodium PM2.5 STP +84185,Zirconium PM2.5 STP +84203,Chloride PM2.5 STP +84242,Mercury (PM2.5 STP particulate bound) +84305,OC CSN Unadjusted PM2.5 STP TOT +84306,Nitrate PM2.5 STP +84307,EC CSN PM2.5 STP TOT +84312,Total Carbon PM2.5 STP TOT +84313,Black carbon PM2.5 STP +84314,UV Carbon PM2.5 STP +84315,Delta Carbon PM2.5 STP +84316,Optical EC PM2.5 STP TOT +84403,Sulfate PM2.5 STP +85101,PM10 - LC +85102,Antimony PM10 LC +85103,Arsenic PM10 LC +85104,Aluminum PM10 LC +85105,Beryllium PM10 LC +85107,Barium PM10 LC +85109,Bromine PM10 LC +85110,Cadmium PM10 LC +85111,Calcium PM10 LC +85112,Chromium PM10 LC +85113,Cobalt PM10 LC +85114,Copper PM10 LC +85115,Chlorine PM10 LC +85117,Cerium Pm10 Lc +85118,Cesium Pm10 Lc +85119,Chromium VI PM10 LC +85126,Iron PM10 LC +85128,Lead PM10 LC +85129,Lead PM10 LC FRM/FEM +85131,Indium Pm10 Lc +85132,Manganese PM10 LC +85134,Molybdenum PM10 LC +85136,Nickel PM10 LC +85140,Magnesium PM10 LC +85142,Mercury PM10 LC +85152,Phosphorus PM10 LC +85154,Selenium PM10 LC +85160,Tin PM10 LC +85161,Titanium PM10 LC +85164,Vanadium PM10 LC +85165,Silicon PM10 LC +85166,Silver PM10 LC +85167,Zinc PM10 LC +85168,Strontium PM10 LC +85169,Sulfur PM10 LC +85173,Thallium PM10 LC +85174,Thorium PM10 LC +85176,Rubidium PM10 LC +85179,Uranium PM10 LC +85180,Potassium PM10 LC +85183,Yttrium PM10 LC +85184,Sodium PM10 LC +85185,Zirconium PM10 LC +85301,Ammonium Ion PM10 LC +85302,Sodium Ion PM10 LC +85303,Potassium Ion PM10 LC +85306,Total Nitrate PM10 LC +85309,Volatile nitrate PM10 LC +85310,Non-volatile nitrate PC10 LC +85313,Black Carbon PM10 LC +85355,OC CSN_rev Unadjusted PM10 LC TOT +85357,EC CSN_rev Unadjusted PM10 LC TOT +85370,OC CSN_rev Unadjusted PM10 LC TOR +85374,OC1 CSN_rev Unadjusted PM10 LC +85375,OC2 CSN_rev Unadjusted PM10 LC +85376,OC3 CSN_rev Unadjusted PM10 LC +85377,OC4 CSN_rev Unadjusted PM10 LC +85378,Op CSN_rev Unadjusted PM10 LC TOR +85380,EC CSN_rev Unadjusted PM10 LC TOR +85383,EC1 CSN_rev Unadjusted PM10 LC +85384,EC2 CSN_rev Unadjusted PM10 LC +85385,EC3 CSN_rev Unadjusted PM10 LC +85388,Op CSN_rev Unadjusted PM10 LC TOT +85403,Sulfate PM10 LC +85551,Silica PM10 LC +86101,PM10-2.5 - Local Conditions +86102,Antimony PM10-2.5 LC +86103,Arsenic PM10-2.5 LC +86104,Aluminum PM10-2.5 LC +86107,Barium PM10-2.5 LC +86109,Bromine PM10-2.5 LC +86110,Cadmium PM10-2.5 LC +86111,Calcium PM10-2.5 LC +86112,Chromium PM10-2.5 LC +86113,Cobalt PM10-2.5 LC +86114,Copper PM10-2.5 LC +86115,Chlorine PM10-2.5 LC +86117,Cerium PM10-2.5 LC +86118,Cesium PM10-2.5 LC +86126,Iron PM10-2.5 LC +86128,Lead PM10-2.5 LC +86131,Indium PM10-2.5 LC +86132,Manganese PM10-2.5 LC +86136,Nickel PM10-2.5 LC +86140,Magnesium PM10-2.5 LC +86152,Phosphorus PM10-2.5 LC +86154,Selenium PM10-2.5 LC +86160,Tin PM10-2.5 LC +86161,Titanium PM10-2.5 LC +86164,Vanadium PM10-2.5 LC +86165,Silicon PM10-2.5 LC +86166,Silver PM10-2.5 LC +86167,Zinc PM10-2.5 LC +86168,Strontium PM10-2.5 LC +86169,Sulfur PM10-2.5 LC +86176,Rubidium PM10-2.5 LC +86180,Potassium PM10-2.5 LC +86184,Sodium PM10-2.5 LC +86185,Zirconium PM10-2.5 LC +86301,Ammonium Ion PM10-2.5 LC +86302,Sodium Ion PM10-2.5 LC +86303,Potassium Ion PM10-2.5 LC +86306,Total Nitrate PM10-2.5 LC +86309,Volatile nitrate PM10-2.5 LC +86310,Non-volatile nitrate PM10-2.5 LC +86355,OC CSN_rev Unadjusted PM10-2.5 LC TOT +86357,EC CSN_rev Unadjusted PM10-2.5 LC TOT +86370,OC CSN_rev Unadjusted PM10-2.5 LC TOR +86374,OC1 CSN_rev Unadjusted PM10-2.5 LC +86375,OC2 CSN_rev Unadjusted PM10-2.5 LC +86376,OC3 CSN_rev Unadjusted PM10-2.5 LC +86377,OC4 CSN_rev Unadjusted PM10-2.5 LC +86378,OP CSN_rev Unadjusted PM10-2.5 LC TOR +86380,EC CSN_rev Unadjusted PM10-2.5 LC TOR +86383,EC1 CSN_rev Unadjusted PM10-2.5 LC +86384,EC2 CSN_rev Unadjusted PM10-2.5 LC +86385,EC3 CSN_rev Unadjusted PM10-2.5 LC +86388,OP CSN_rev Unadjusted PM10-2.5 LC TOT +86403,Sulfate PM10-2.5 LC +86502,Acceptable PM10-2.5 - Local Conditions +87020,"Particle Number, 20-30 nm" +87030,"Particle Number, 30-50 nm" +87050,"Particle Number, 50-70 nm" +87070,"Particle Number, 70-100 nm" +87100,"Particle Number, 100-200 nm" +87101,"Particle Number, Total Count" +87111,PM1 - Local Conditions +87200,"Particle Number, > 200 nm" +88101,PM2.5 - Local Conditions +88102,Antimony PM2.5 LC +88103,Arsenic PM2.5 LC +88104,Aluminum PM2.5 LC +88105,Beryllium PM2.5 LC +88107,Barium PM2.5 LC +88109,Bromine PM2.5 LC +88110,Cadmium PM2.5 LC +88111,Calcium PM2.5 LC +88112,Chromium PM2.5 LC +88113,Cobalt PM2.5 LC +88114,Copper PM2.5 LC +88115,Chlorine PM2.5 LC +88117,Cerium PM2.5 LC +88118,Cesium PM2.5 LC +88119,Chromium VI PM2.5 LC +88121,Europium PM2.5 LC +88124,Gallium PM2.5 LC +88126,Iron PM2.5 LC +88127,Hafnium PM2.5 LC +88128,Lead PM2.5 LC +88131,Indium PM2.5 LC +88132,Manganese PM2.5 LC +88133,Iridium PM2.5 LC +88134,Molybdenum PM2.5 LC +88136,Nickel PM2.5 LC +88140,Magnesium PM2.5 LC +88142,Mercury PM2.5 LC +88143,Gold PM2.5 LC +88146,Lanthanum PM2.5 LC +88147,Niobium PM2.5 LC +88151,Palladium PM2.5 LC +88152,Phosphorus PM2.5 LC +88154,Selenium PM2.5 LC +88160,Tin PM2.5 LC +88161,Titanium PM2.5 LC +88162,Samarium PM2.5 LC +88163,Scandium PM2.5 LC +88164,Vanadium PM2.5 LC +88165,Silicon PM2.5 LC +88166,Silver PM2.5 LC +88167,Zinc PM2.5 LC +88168,Strontium PM2.5 LC +88169,Sulfur PM2.5 LC +88170,Tantalum PM2.5 LC +88172,Terbium PM2.5 LC +88173,Thallium PM2.5 LC +88176,Rubidium PM2.5 LC +88179,Uranium PM2.5 LC +88180,Potassium PM2.5 LC +88183,Yttrium PM2.5 LC +88184,Sodium PM2.5 LC +88185,Zirconium PM2.5 LC +88186,Tungsten PM2.5 LC +88203,Chloride PM2.5 LC +88301,Ammonium Ion PM2.5 LC +88302,Sodium Ion Pm2.5 LC +88303,Potassium Ion PM2.5 LC +88304,OCX Carbon PM2.5 LC +88305,OC CSN Unadjusted PM2.5 LC TOT +88306,Total Nitrate PM2.5 LC +88307,EC CSN PM2.5 LC TOT +88308,Carbonate Carbon CSN PM2.5 LC TOT +88309,Volatile Nitrate PM2.5 LC +88310,Non-volatile Nitrate PM2.5 LC +88311,OCX2 Carbon PM2.5 LC +88312,Total Carbon PM2.5 LC TOT +88313,Black Carbon PM2.5 at 880 nm +88314,UV Carbon PM2.5 at 370 nm +88315,Delta Carbon PM2.5 LC +88316,Optical EC PM2.5 LC TOT +88317,Black Carbon PM2.5 Corrected +88320,OC PM2.5 LC TOR +88321,EC PM2.5 LC TOR +88322,OCH PM2.5 LC TOT +88323,EH IMPROVE PM2.5 LC +88324,OC1 PM2.5 LC +88325,OC2 PM2.5 LC +88326,OC3 PM2.5 LC +88327,OC4 PM2.5 LC +88328,OP PM2.5 LC TOR +88329,EC1 PM2.5 LC +88330,EC2 PM2.5 LC +88331,EC3 PM2.5 LC +88332,OC1 CSN Unadjusted PM2.5 LC TOT +88333,OC2 CSN Unadjusted PM2.5 LC TOT +88334,OC3 CSN Unadjusted PM2.5 LC TOT +88335,OC4 CSN Unadjusted PM2.5 LC TOT +88336,OP CSN PM2.5 LC TOT +88337,Hydrogen PM2.5 LC +88338,Nitrite PM2.5 LC +88339,Ammonium Sulfate PM2.5 LC +88340,Ammonium Sulfate Extinction PM2.5 LC +88341,Aerosol Extinction PM2.5 LC +88342,Coarse Mass Extinction PM2.5 LC +88343,Elemental Carbon Extinction PM2.5 LC +88344,Ammonium Nitrate PM2.5 LC +88345,Ammonium Nitrate Extinction PM2.5 LC +88346,Organic Carbon Extinction PM2.5 LC +88347,Particle Light Scatter +88348,Soil PM2.5 LC +88349,Soil Extinction PM2.5 LC +88350,Organic Carbon Mass PM2.5 LC +88355,OC CSN_Rev Unadjusted PM2.5 LC TOT +88357,EC CSN_Rev Unadjusted PM2.5 LC TOT +88360,PM 2.5 Carbon at 470 nm +88361,PM 2.5 Carbon at 520 nm +88362,PM 2.5 Carbon at 590 nm +88363,PM 2.5 Carbon at 660 nm +88364,Infrared PM 2.5 Carbon at 950 nm +88370,OC CSN_Rev Unadjusted PM2.5 LC TOR +88374,OC1 CSN_Rev Unadjusted PM2.5 LC +88375,OC2 CSN_Rev Unadjusted PM2.5 LC +88376,OC3 CSN_Rev Unadjusted PM2.5 LC +88377,OC4 CSN_Rev Unadjusted PM2.5 LC +88378,OP CSN_Rev Unadjusted PM2.5 LC TOR +88379,OP PM2.5 LC TOT +88380,EC CSN_Rev Unadjusted PM2.5 LC TOR +88381,EC PM2.5 LC TOT +88382,OC PM2.5 LC TOT +88383,EC1 CSN_Rev Unadjusted PM2.5 LC +88384,EC2 CSN_Rev Unadjusted PM2.5 LC +88385,EC3 CSN_Rev Unadjusted PM2.5 LC +88388,OP CSN_Rev Unadjusted PM2.5 LC TOT +88390,Levoglucosan PM2.5 LC +88391,Mannosan PM2.5 LC +88392,Galactosan PM2.5 LC +88393,1-nitropyrene PM2.5 LC +88395,Sea Salt (PM2.5) +88396,PM2.5 Carbon at 430 nm +88397,PM2.5 Carbon at 525 nm +88398,PM2.5 Carbon at 565 nm +88399,PM2.5 Carbon at 700 nm +88401,Reconstructed Mass PM2.5 LC +88403,Sulfate PM2.5 LC +88500,PM2.5 Total Atmospheric +88501,PM2.5 Raw Data +88502,Acceptable PM2.5 AQI & Speciation Mass +88503,PM2.5 Volatile Channel +92142,Mercury compounds diff --git a/download_scripts/US_EPA_AQS_parameters.json b/download_scripts/US_EPA_AQS_parameters.json new file mode 100644 index 0000000000000000000000000000000000000000..1dd420f28e7a5eb1a6fa5950669d6d02fc37581b --- /dev/null +++ b/download_scripts/US_EPA_AQS_parameters.json @@ -0,0 +1,5458 @@ +[ + { + "code": "11101", + "value_represented": "Suspended particulate (TSP)" + }, + { + "code": "11102", + "value_represented": "Suspended particulate (TSP) LC" + }, + { + "code": "11103", + "value_represented": "Benzene soluble organics (TSP)" + }, + { + "code": "11104", + "value_represented": "Total polynuclear hydrocarbons" + }, + { + "code": "11114", + "value_represented": "Windblown particulate" + }, + { + "code": "11121", + "value_represented": "Crystalline quartz" + }, + { + "code": "11122", + "value_represented": "Cristabalite" + }, + { + "code": "11123", + "value_represented": "Asbestos > 5um" + }, + { + "code": "11124", + "value_represented": "Asbestos > 0.5um" + }, + { + "code": "11125", + "value_represented": "Total non-asbestos fibers" + }, + { + "code": "11201", + "value_represented": "Soil index (COH)" + }, + { + "code": "11202", + "value_represented": "Soil index (RUD)" + }, + { + "code": "11203", + "value_represented": "Light scatter" + }, + { + "code": "11204", + "value_represented": "Smoke" + }, + { + "code": "11205", + "value_represented": "Soil index (ug/m3)" + }, + { + "code": "11206", + "value_represented": "Light scatter (ug/m3)" + }, + { + "code": "11207", + "value_represented": "Light scatter (miles visibility)" + }, + { + "code": "11208", + "value_represented": "Deciview" + }, + { + "code": "11301", + "value_represented": "Alpha radiation (TSP)" + }, + { + "code": "11302", + "value_represented": "Beta radiation (TSP)" + }, + { + "code": "11343", + "value_represented": "Antimony - 121 (TSP)" + }, + { + "code": "11344", + "value_represented": "Arsenic - 75 (TSP)" + }, + { + "code": "11345", + "value_represented": "Chromium - 50 (TSP)" + }, + { + "code": "11346", + "value_represented": "Chromium - 52 (TSP)" + }, + { + "code": "11347", + "value_represented": "Chromium - 53 (TSP)" + }, + { + "code": "11348", + "value_represented": "Cobalt - 59 (TSP)" + }, + { + "code": "11349", + "value_represented": "Copper - 63 (TSP)" + }, + { + "code": "11350", + "value_represented": "Iron - 56 (TSP)" + }, + { + "code": "11351", + "value_represented": "Lead - 208 (TSP)" + }, + { + "code": "11352", + "value_represented": "Manganese - 55 (TSP)" + }, + { + "code": "11353", + "value_represented": "Molybdenum - 98 (TSP)" + }, + { + "code": "11354", + "value_represented": "Nickel - 60 (TSP)" + }, + { + "code": "11355", + "value_represented": "Strontium - 88 (TSP)" + }, + { + "code": "11356", + "value_represented": "Tin - 117 (TSP)" + }, + { + "code": "11357", + "value_represented": "Zinc - 66 (TSP)" + }, + { + "code": "11358", + "value_represented": "Iron - 57 (TSP)" + }, + { + "code": "11359", + "value_represented": "Nickel - 58 (TSP)" + }, + { + "code": "11360", + "value_represented": "Zinc - 64 (TSP)" + }, + { + "code": "11361", + "value_represented": "Tin - 120 (TSP)" + }, + { + "code": "11362", + "value_represented": "Vanadium - 51 (TSP)" + }, + { + "code": "12101", + "value_represented": "Aluminum (TSP) STP" + }, + { + "code": "12102", + "value_represented": "Antimony (TSP) STP" + }, + { + "code": "12103", + "value_represented": "Arsenic (TSP) STP" + }, + { + "code": "12105", + "value_represented": "Beryllium (TSP) STP" + }, + { + "code": "12106", + "value_represented": "Bismuth (TSP) STP" + }, + { + "code": "12107", + "value_represented": "Barium (TSP) STP" + }, + { + "code": "12109", + "value_represented": "Bromine (TSP) STP" + }, + { + "code": "12110", + "value_represented": "Cadmium (TSP) STP" + }, + { + "code": "12111", + "value_represented": "Calcium (TSP) STP" + }, + { + "code": "12112", + "value_represented": "Chromium (TSP) STP" + }, + { + "code": "12113", + "value_represented": "Cobalt (TSP) STP" + }, + { + "code": "12114", + "value_represented": "Copper (TSP) STP" + }, + { + "code": "12115", + "value_represented": "Chromium VI (TSP) STP" + }, + { + "code": "12117", + "value_represented": "Cerium (TSP) STP" + }, + { + "code": "12118", + "value_represented": "Cesium (TSP) STP" + }, + { + "code": "12121", + "value_represented": "Europium (TSP) STP" + }, + { + "code": "12124", + "value_represented": "Gallium (TSP) STP" + }, + { + "code": "12125", + "value_represented": "Germanium (TSP) STP" + }, + { + "code": "12126", + "value_represented": "Iron (TSP) STP" + }, + { + "code": "12127", + "value_represented": "Hafnium (TSP) STP" + }, + { + "code": "12128", + "value_represented": "Lead (TSP) STP" + }, + { + "code": "12129", + "value_represented": "Lead-210 (TSP) STP" + }, + { + "code": "12131", + "value_represented": "Indium (TSP) STP" + }, + { + "code": "12132", + "value_represented": "Manganese (TSP) STP" + }, + { + "code": "12133", + "value_represented": "Iridium (TSP) STP" + }, + { + "code": "12134", + "value_represented": "Molybdenum (TSP) STP" + }, + { + "code": "12136", + "value_represented": "Nickel (TSP) STP" + }, + { + "code": "12138", + "value_represented": "Thorium-230 (TSP) STP" + }, + { + "code": "12139", + "value_represented": "Thorium-232 (TSP) STP" + }, + { + "code": "12140", + "value_represented": "Magnesium (TSP) STP" + }, + { + "code": "12142", + "value_represented": "Mercury (TSP) STP" + }, + { + "code": "12143", + "value_represented": "Gold (TSP) STP" + }, + { + "code": "12146", + "value_represented": "Lanthanum (TSP) STP" + }, + { + "code": "12147", + "value_represented": "Niobium (TSP) STP" + }, + { + "code": "12150", + "value_represented": "Platinum (TSP) STP" + }, + { + "code": "12151", + "value_represented": "Palladium (TSP) STP" + }, + { + "code": "12152", + "value_represented": "Phosphorus (TSP) STP" + }, + { + "code": "12153", + "value_represented": "Polonium-210 (TSP) STP" + }, + { + "code": "12154", + "value_represented": "Selenium (TSP) STP" + }, + { + "code": "12160", + "value_represented": "Tin (TSP) STP" + }, + { + "code": "12161", + "value_represented": "Titanium (TSP) STP" + }, + { + "code": "12162", + "value_represented": "Samarium (TSP) STP" + }, + { + "code": "12163", + "value_represented": "Scandium (TSP) STP" + }, + { + "code": "12164", + "value_represented": "Vanadium (TSP) STP" + }, + { + "code": "12165", + "value_represented": "Silicon (TSP) STP" + }, + { + "code": "12166", + "value_represented": "Silver (TSP) STP" + }, + { + "code": "12167", + "value_represented": "Zinc (TSP) STP" + }, + { + "code": "12168", + "value_represented": "Strontium (TSP) STP" + }, + { + "code": "12169", + "value_represented": "Sulfur (TSP) STP" + }, + { + "code": "12170", + "value_represented": "Tantalum (TSP) STP" + }, + { + "code": "12171", + "value_represented": "Tellurium and compounds as Te (TSP) STP" + }, + { + "code": "12172", + "value_represented": "Terbium (TSP) STP" + }, + { + "code": "12173", + "value_represented": "Thallium (TSP) STP" + }, + { + "code": "12176", + "value_represented": "Rubidium (TSP) STP" + }, + { + "code": "12178", + "value_represented": "Tungsten (TSP) STP" + }, + { + "code": "12179", + "value_represented": "Uranium (TSP) STP" + }, + { + "code": "12180", + "value_represented": "Potassium (TSP) STP" + }, + { + "code": "12183", + "value_represented": "Yttrium (TSP) STP" + }, + { + "code": "12184", + "value_represented": "Sodium (TSP) STP" + }, + { + "code": "12185", + "value_represented": "Zirconium (TSP) STP" + }, + { + "code": "12187", + "value_represented": "Radium-226 (TSP) STP" + }, + { + "code": "12188", + "value_represented": "Radium-228 (TSP) STP" + }, + { + "code": "12190", + "value_represented": "Boron (TSP) STP" + }, + { + "code": "12191", + "value_represented": "Chlorine (TSP) STP" + }, + { + "code": "12201", + "value_represented": "Bromide (TSP) STP" + }, + { + "code": "12202", + "value_represented": "Fluoride (TSP) STP" + }, + { + "code": "12203", + "value_represented": "Chloride (TSP) STP" + }, + { + "code": "12204", + "value_represented": "Iodide (TSP) STP" + }, + { + "code": "12208", + "value_represented": "Fluoride (vegation)" + }, + { + "code": "12209", + "value_represented": "Fluoride (paper samplers)" + }, + { + "code": "12301", + "value_represented": "Ammonium (TSP) STP" + }, + { + "code": "12306", + "value_represented": "Nitrate (TSP) STP" + }, + { + "code": "12309", + "value_represented": "Nitrite (TSP) STP" + }, + { + "code": "12345", + "value_represented": "Phosphate (TSP) STP" + }, + { + "code": "12402", + "value_represented": "Sulfuric acid (TSP) STP" + }, + { + "code": "12403", + "value_represented": "Sulfate (TSP) STP" + }, + { + "code": "12602", + "value_represented": "Hydrogen ion conc (TSP) STP" + }, + { + "code": "12803", + "value_represented": "Asbestos amphibole (TSP)" + }, + { + "code": "13115", + "value_represented": "Chlorine (TSP)" + }, + { + "code": "14101", + "value_represented": "Aluminum (TSP) LC" + }, + { + "code": "14102", + "value_represented": "Antimony (TSP) LC" + }, + { + "code": "14103", + "value_represented": "Arsenic (TSP) LC" + }, + { + "code": "14105", + "value_represented": "Beryllium (TSP) LC" + }, + { + "code": "14107", + "value_represented": "Barium (TSP) LC" + }, + { + "code": "14110", + "value_represented": "Cadmium (TSP) LC" + }, + { + "code": "14111", + "value_represented": "Calcium (TSP) LC" + }, + { + "code": "14112", + "value_represented": "Chromium (TSP) LC" + }, + { + "code": "14113", + "value_represented": "Cobalt (TSP) LC" + }, + { + "code": "14114", + "value_represented": "Copper(TSP) LC" + }, + { + "code": "14115", + "value_represented": "Chromium VI (TSP) LC" + }, + { + "code": "14126", + "value_represented": "Iron (TSP) LC" + }, + { + "code": "14128", + "value_represented": "Lead (TSP) LC Non-FRM/FEM" + }, + { + "code": "14129", + "value_represented": "Lead (TSP) LC" + }, + { + "code": "14132", + "value_represented": "Manganese (TSP) LC" + }, + { + "code": "14134", + "value_represented": "Molybdenum(TSP) LC" + }, + { + "code": "14136", + "value_represented": "Nickel (TSP) LC" + }, + { + "code": "14140", + "value_represented": "Magnesium (TSP) LC" + }, + { + "code": "14142", + "value_represented": "Mercury (TSP) LC" + }, + { + "code": "14154", + "value_represented": "Selenium (TSP) LC" + }, + { + "code": "14160", + "value_represented": "Tin (TSP) LC" + }, + { + "code": "14164", + "value_represented": "Vanadium (TSP) LC" + }, + { + "code": "14166", + "value_represented": "Silver (TSP) LC" + }, + { + "code": "14167", + "value_represented": "Zinc (TSP) LC" + }, + { + "code": "14173", + "value_represented": "Thallium (TSP) LC" + }, + { + "code": "14306", + "value_represented": "Nitrate (TSP) LC" + }, + { + "code": "14403", + "value_represented": "Sulfate (TSP) LC" + }, + { + "code": "16111", + "value_represented": "Carbon black (TSP)" + }, + { + "code": "16115", + "value_represented": "Paraffins (alkanes)" + }, + { + "code": "16117", + "value_represented": "Tridymite" + }, + { + "code": "16118", + "value_represented": "Aroclor 1060" + }, + { + "code": "16119", + "value_represented": "Aroclor1221" + }, + { + "code": "16120", + "value_represented": "Aroclor 1232" + }, + { + "code": "16121", + "value_represented": "Aroclor 1242" + }, + { + "code": "16122", + "value_represented": "Aroclor 1248" + }, + { + "code": "16123", + "value_represented": "Aroclor 1254" + }, + { + "code": "16127", + "value_represented": ">=C10 Alkenes" + }, + { + "code": "16128", + "value_represented": "C4-C9 Alkenes" + }, + { + "code": "16210", + "value_represented": "n-Hexadecane" + }, + { + "code": "16212", + "value_represented": "4-Phenylcyclohexene" + }, + { + "code": "16320", + "value_represented": "Cellulose (TSP)" + }, + { + "code": "16521", + "value_represented": "Methyl isoamyl ketone" + }, + { + "code": "16601", + "value_represented": "1,2-Epoxybutane (TSP)STP" + }, + { + "code": "16714", + "value_represented": "Hexamethylene diisocyanate" + }, + { + "code": "16722", + "value_represented": "N-Nitrosodimethylamine (TSP) STP" + }, + { + "code": "16724", + "value_represented": "1,2,4,5-Tetrachlorobenzene (TSP) STP" + }, + { + "code": "16725", + "value_represented": "1,2,4-Trichlorobenzene (TSP) STP" + }, + { + "code": "16726", + "value_represented": "1,2-Dichlorobenzene (TSP) STP " + }, + { + "code": "16727", + "value_represented": "1,3-Dichlorobenzene (TSP) STP" + }, + { + "code": "16728", + "value_represented": "1,3-Dinitrobenzene (TSP) STP" + }, + { + "code": "16729", + "value_represented": "1,4-Dichlorobenzene (TSP) STP" + }, + { + "code": "16730", + "value_represented": "1,4-Naphthoquinone (TSP) STP" + }, + { + "code": "16731", + "value_represented": "1-Naphthylamine (TSP) STP" + }, + { + "code": "16732", + "value_represented": "2,3,4,6-Tetrachlorophenol (TSP) STP" + }, + { + "code": "16733", + "value_represented": "2,4,5-Trichlorophenol (TSP) STP" + }, + { + "code": "16734", + "value_represented": "2,4,6-Trichlorophenol (TSP) STP" + }, + { + "code": "16735", + "value_represented": "2,4-Dichlorophenol (TSP) STP" + }, + { + "code": "16736", + "value_represented": "2,4-Dimethylphenol (TSP) STP" + }, + { + "code": "16737", + "value_represented": "2,4-Dinitrophenol (TSP) STP" + }, + { + "code": "16738", + "value_represented": "2,4-Dinitrotoluene (TSP) STP" + }, + { + "code": "16739", + "value_represented": "2,6-Dichlorophenol (TSP) STP" + }, + { + "code": "16740", + "value_represented": "2,6-Dinitrotoluene (TSP) STP" + }, + { + "code": "16741", + "value_represented": "2-Acetylaminofluorene (TSP) STP" + }, + { + "code": "16742", + "value_represented": "2-Chloronaphthalene (TSP) STP" + }, + { + "code": "16743", + "value_represented": "2-Chlorophenol (TSP) STP" + }, + { + "code": "16744", + "value_represented": "2-Naphthylamine (TSP) STP" + }, + { + "code": "16745", + "value_represented": "2-Nitroaniline (TSP) STP" + }, + { + "code": "16746", + "value_represented": "2-Nitrophenol (TSP) STP" + }, + { + "code": "16747", + "value_represented": "2-Picoline (TSP) STP" + }, + { + "code": "16748", + "value_represented": "3,3'-Dimethoxybenzidine (TSP) STP" + }, + { + "code": "16749", + "value_represented": "3-Methylcholanthrene (TSP) STP" + }, + { + "code": "16750", + "value_represented": "3-Nitroaniline (TSP) STP" + }, + { + "code": "16751", + "value_represented": "4,6-Dinitro-2-methylphenol (TSP) STP" + }, + { + "code": "16752", + "value_represented": "4-Aminobiphenyl (TSP) STP" + }, + { + "code": "16753", + "value_represented": "4-Bromophenyl phenyl ether (TSP) STP" + }, + { + "code": "16754", + "value_represented": "4-Chloro-3-methylphenol (TSP) STP" + }, + { + "code": "16755", + "value_represented": "4-Chloroaniline (TSP) STP" + }, + { + "code": "16756", + "value_represented": "4-Chlorophenyl-phenyl ether (TSP) STP" + }, + { + "code": "16757", + "value_represented": "4-Dimethylaminoazobenzene (TSP) STP" + }, + { + "code": "16758", + "value_represented": "4-Nitroaniline (TSP) STP" + }, + { + "code": "16759", + "value_represented": "4-Nitrophenol (TSP) STP" + }, + { + "code": "16760", + "value_represented": "5-Nitro-o-toluidine (TSP) STP" + }, + { + "code": "16761", + "value_represented": "7,12-Dimethylbenz[a]anthracene (TSP) STP" + }, + { + "code": "16762", + "value_represented": "Acetophenone (TSP) STP" + }, + { + "code": "16763", + "value_represented": "Aniline (TSP) STP" + }, + { + "code": "16764", + "value_represented": "Azobenzene (TSP) STP" + }, + { + "code": "16765", + "value_represented": "Benzidine (TSP) STP" + }, + { + "code": "16766", + "value_represented": "Benzyl alcohol (TSP) STP" + }, + { + "code": "16767", + "value_represented": "bis (2-chloroethyl)ether (TSP) STP" + }, + { + "code": "16768", + "value_represented": "bis(2-chloroethoxy)methane (TSP) STP" + }, + { + "code": "16769", + "value_represented": "bis(2-chloroisopropyl)ether (TSP) STP" + }, + { + "code": "16770", + "value_represented": "bis(2-ethylhexyl)phthalate (TSP) STP" + }, + { + "code": "16771", + "value_represented": "Butyl benzyl phthalate (TSP) STP" + }, + { + "code": "16772", + "value_represented": "Carbazole (TSP) STP" + }, + { + "code": "16773", + "value_represented": "Chlorobenzilate (TSP) STP" + }, + { + "code": "16774", + "value_represented": "Diallate (TSP) STP" + }, + { + "code": "16775", + "value_represented": "Diethyl phthalate (TSP) STP" + }, + { + "code": "16776", + "value_represented": "Dimethyl phthalate (TSP) STP" + }, + { + "code": "16777", + "value_represented": "Di-n-butyl phthalate (TSP) STP" + }, + { + "code": "16778", + "value_represented": "Di-n-octyl phthalate (TSP) STP" + }, + { + "code": "16779", + "value_represented": "Dinoseb (TSP) STP" + }, + { + "code": "16780", + "value_represented": "Diphenylamine (TSP) STP" + }, + { + "code": "16781", + "value_represented": "Ethyl methanesulfonate (TSP) STP" + }, + { + "code": "16782", + "value_represented": "Hexachlorobutadiene (TSP) STP" + }, + { + "code": "16783", + "value_represented": "Hexachloropropene (TSP) STP" + }, + { + "code": "16784", + "value_represented": "Isodrin (TSP) STP" + }, + { + "code": "16785", + "value_represented": "Isosafrole (TSP) STP" + }, + { + "code": "16786", + "value_represented": "m and p-Cresol (TSP) STP" + }, + { + "code": "16787", + "value_represented": "Methyl methanesulfonate (TSP) STP" + }, + { + "code": "16788", + "value_represented": "Nitrobenzene (TSP) STP" + }, + { + "code": "16789", + "value_represented": "N-Nitrosodibutylamine (TSP) STP" + }, + { + "code": "16790", + "value_represented": "N-Nitrosodiethylamine (TSP) STP" + }, + { + "code": "16791", + "value_represented": "N-Nitrosodipropylamine (TSP) STP" + }, + { + "code": "16792", + "value_represented": "N-Nitrosomethylethylamine (TSP) STP" + }, + { + "code": "16793", + "value_represented": "N-Nitrosopiperidine (TSP) STP" + }, + { + "code": "16794", + "value_represented": "N-Nitrosopyrrolidine (TSP) STP" + }, + { + "code": "16795", + "value_represented": "Pentachloroethane (TSP) STP" + }, + { + "code": "16796", + "value_represented": "Phenacetin (TSP) STP" + }, + { + "code": "16797", + "value_represented": "Phenol (TSP) STP" + }, + { + "code": "16798", + "value_represented": "Pronamide (TSP) STP" + }, + { + "code": "16799", + "value_represented": "Pyridine (TSP) STP" + }, + { + "code": "16801", + "value_represented": "Safrole (TSP) STP" + }, + { + "code": "16807", + "value_represented": "Hexachloroethane (TSP) STP" + }, + { + "code": "16822", + "value_represented": "1,2-Dichlorotetrafluoroethane" + }, + { + "code": "16826", + "value_represented": "Hexachlorocyclopentadiene (TSP) STP" + }, + { + "code": "16901", + "value_represented": "Epichlorohydrin(DUP)" + }, + { + "code": "16906", + "value_represented": "1,4-Dioxin" + }, + { + "code": "16914", + "value_represented": "Isophorone (TSP) STP" + }, + { + "code": "16915", + "value_represented": "2-Methylnaphthalene (TSP) STP" + }, + { + "code": "16916", + "value_represented": "Freon 12" + }, + { + "code": "16917", + "value_represented": "1,2,3,6,7,8-Hexachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "16918", + "value_represented": "1,2,3,7,8,9-Hexachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "16919", + "value_represented": "1,2,3,4,6,7,8-Heptachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "16920", + "value_represented": "1,2,3,7,8-Pentachlorodibenzofuran (TSP) STP" + }, + { + "code": "16921", + "value_represented": "2,3,4,7,8-Pentachlorodibenzofuran (TSP) STP" + }, + { + "code": "16922", + "value_represented": "1,2,3,4,7,8-Hexachlorodibenzofuran (TSP) STP" + }, + { + "code": "16923", + "value_represented": "1,2,3,6,7,8-Hexachlorodibenzofuran (TSP) STP" + }, + { + "code": "16924", + "value_represented": "2,3,4,6,7,8-Hexachlorodibenzofuran (TSP) STP" + }, + { + "code": "16925", + "value_represented": "1,2,3,7,8,9-Hexachlorodibenzofuran (TSP) STP" + }, + { + "code": "16926", + "value_represented": "1,2,3,4,6,7,8-Heptachlorodibenzofuran (TSP) STP" + }, + { + "code": "16927", + "value_represented": "1,2,3,4,7,8,9-Heptachlorodibenzofuran (TSP) STP" + }, + { + "code": "16932", + "value_represented": "3,3',4,4'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16933", + "value_represented": "2,3',4,4',5-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16934", + "value_represented": "2,3,3',4,4'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16935", + "value_represented": "3,3',4,4',5,5'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16936", + "value_represented": "2,2',3,3',4,4',5-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "16937", + "value_represented": "2,2',3,4,4',5,5'-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "16938", + "value_represented": "1-Methylnapthalene" + }, + { + "code": "16939", + "value_represented": "2,4'-Dichlorobiphenyl (TSP) STP" + }, + { + "code": "16940", + "value_represented": "4,4'-Dichlorobiphenyl (TSP) STP" + }, + { + "code": "16941", + "value_represented": "2,2',5-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16942", + "value_represented": "2,4,4'-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16943", + "value_represented": "2,4',5-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16944", + "value_represented": "3,4,4',5-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16945", + "value_represented": "2,3,4,4',5-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16946", + "value_represented": "2,3',4,4',5'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16947", + "value_represented": "3,3',4,4',5-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16948", + "value_represented": "2,3,3',4,4',5-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16949", + "value_represented": "2,3,3',4,4',5'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16950", + "value_represented": "2,3',4,4',5,5',-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16951", + "value_represented": "2,3,3',4,4',5,5'-Heptachlorobiphenyl" + }, + { + "code": "16954", + "value_represented": "2,3'-Dichlorobiphenyl (TSP) STP" + }, + { + "code": "16956", + "value_represented": "3,3'-Dichlorobiphenyl (TSP) STP" + }, + { + "code": "16958", + "value_represented": "2,2',6-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16959", + "value_represented": "2,3,4'-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16960", + "value_represented": "2,3',5-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16961", + "value_represented": "2,3',6-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16962", + "value_represented": "2,3',4'-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "16964", + "value_represented": "2,2',3,3'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16966", + "value_represented": "2,2',3,5'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16967", + "value_represented": "2,2',3,6-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16968", + "value_represented": "2,2',3,6'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16970", + "value_represented": "2,2',4,5'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16971", + "value_represented": "2,2',5,5'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16972", + "value_represented": "2,2',5,6'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16974", + "value_represented": "2,3,4',5-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16975", + "value_represented": "2,3',4',5-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16977", + "value_represented": "2,4,4',5-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "16978", + "value_represented": "2,2',3,3',5-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16979", + "value_represented": "2,2',3,3',6-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16980", + "value_represented": "2,2',3,4,4'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16981", + "value_represented": "2,2',3,4,5'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16982", + "value_represented": "2,2',3,4,6'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16983", + "value_represented": "2,2',3,4',6-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16984", + "value_represented": "2,2',3,5,5'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16985", + "value_represented": "2,2',3,5',6-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16986", + "value_represented": "2,2',3,4',5'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16987", + "value_represented": "2,2',4,4',5-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16988", + "value_represented": "2,2',4,5,5'-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "16989", + "value_represented": "2,2',3,3',4,4'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16990", + "value_represented": "2,2',3,3',4,5'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16993", + "value_represented": "2,2',3,4,5,5'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16994", + "value_represented": "2,2',3,4',5,5'-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16995", + "value_represented": "2,2',3,4',5',6-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16996", + "value_represented": "2,2',3,5,5',6-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "16998", + "value_represented": "2,3,3',4,4',6-Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "17000", + "value_represented": "2,2',3,3',4,5,5'-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17001", + "value_represented": "2,2',3,3',4,5,6'-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17002", + "value_represented": "2,2',3,3',4,5',6'-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17003", + "value_represented": "2,2',3,3',5,5',6-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17005", + "value_represented": "2,2',3,4,4',5',6-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17006", + "value_represented": "2,2',3,4,5,5',6-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17007", + "value_represented": "2,2',3,4',5,5',6-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17008", + "value_represented": "2,3,3',4',5,5',6-Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17009", + "value_represented": "2,2',3,3',4,4',5,5'-Octachlorobiphenyl (TSP) STP" + }, + { + "code": "17010", + "value_represented": "2,2',3,3',4,5,5',6'-Octachlorobiphenyl (TSP) STP" + }, + { + "code": "17011", + "value_represented": "2,2',3,3',4,5',6,6'-Octachlorobiphenyl (TSP) STP" + }, + { + "code": "17013", + "value_represented": "2,2',3,3',4,4',5,5',6-Nonachlorobiphenyl (TSP) STP" + }, + { + "code": "17018", + "value_represented": "Mixture PCB 4/10 (TSP) STP" + }, + { + "code": "17019", + "value_represented": "Mixture PCB 7/ 9 (TSP) STP" + }, + { + "code": "17020", + "value_represented": "Mixture PCB 15/17 (TSP) STP" + }, + { + "code": "17021", + "value_represented": "Mixture PCB 18/32 (TSP) STP" + }, + { + "code": "17022", + "value_represented": "Mixture PCB 28/31 (TSP) STP" + }, + { + "code": "17023", + "value_represented": "Mixture PCB 37/42 (TSP) STP" + }, + { + "code": "17024", + "value_represented": "Mixture PCB 41/71/64 (TSP) STP" + }, + { + "code": "17025", + "value_represented": "Mixture PCB 47/48 (TSP) STP" + }, + { + "code": "17026", + "value_represented": "Mixture PCB 56/60 (TSP) STP" + }, + { + "code": "17027", + "value_represented": "Mixture PCB 77/110 (TSP) STP" + }, + { + "code": "17028", + "value_represented": "Mixture PCB 105/132/153 (TSP) STP" + }, + { + "code": "17029", + "value_represented": "Mixture PCB 135/144 (TSP) STP" + }, + { + "code": "17030", + "value_represented": "Mixture PCB 138/163 (TSP) STP" + }, + { + "code": "17031", + "value_represented": "Mixture PCB 170/190 (TSP) STP" + }, + { + "code": "17032", + "value_represented": "Mixture PCB 171/202 (TSP) STP" + }, + { + "code": "17033", + "value_represented": "Mixture PCB 203/196 (TSP) STP" + }, + { + "code": "17034", + "value_represented": "Mixture PCB 208/195 (TSP) STP" + }, + { + "code": "17038", + "value_represented": "2,3',4-Trichlorobiphenyl (TSP) STP" + }, + { + "code": "17043", + "value_represented": "2,3',4,4'-Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "17044", + "value_represented": "2,2',3,3',4-Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "17131", + "value_represented": "C2 Alkylbenzenes" + }, + { + "code": "17140", + "value_represented": "2,7-dimethylnaphthalene (TSP) STP" + }, + { + "code": "17141", + "value_represented": "Naphthalene (TSP) STP" + }, + { + "code": "17142", + "value_represented": "2,6-dimethylnaphthalene (TSP) STP" + }, + { + "code": "17143", + "value_represented": "1,7-dimethylnaphthalene (TSP) STP" + }, + { + "code": "17144", + "value_represented": "1,2-Dimethylnaphthalene (TSP) STP" + }, + { + "code": "17145", + "value_represented": "2,3-dimethylnaphthalene (TSP) STP" + }, + { + "code": "17146", + "value_represented": "1,2-dimethylnaphthalene (TSP) STP" + }, + { + "code": "17147", + "value_represented": "Acenaphthene (TSP) STP" + }, + { + "code": "17148", + "value_represented": "Acenaphthylene (TSP) STP" + }, + { + "code": "17149", + "value_represented": "Fluorene (TSP) STP" + }, + { + "code": "17150", + "value_represented": "Phenanthrene (TSP) STP" + }, + { + "code": "17151", + "value_represented": "Anthracene (TSP) STP" + }, + { + "code": "17152", + "value_represented": "1,3-dinitropyrene (TSP) STP" + }, + { + "code": "17153", + "value_represented": "1-nitropyrene (TSP) STP" + }, + { + "code": "17155", + "value_represented": "3-nitrofluoranthene (TSP) STP" + }, + { + "code": "17156", + "value_represented": "2-methylphenanthrene (TSP) STP" + }, + { + "code": "17157", + "value_represented": "1-methylphenanthrene (TSP) STP" + }, + { + "code": "17158", + "value_represented": "Retene (TSP) STP" + }, + { + "code": "17159", + "value_represented": "9-fluorenone (TSP) STP" + }, + { + "code": "17160", + "value_represented": "Cyclopenta[cd]pyrene (TSP) STP" + }, + { + "code": "17161", + "value_represented": "Fluorene-D10 (TSP) STP" + }, + { + "code": "17162", + "value_represented": "Fluoranthene-D10 (TSP) STP" + }, + { + "code": "17199", + "value_represented": "Polycyclic organic matter (TSP) STP" + }, + { + "code": "17201", + "value_represented": "Fluoranthene (TSP) STP" + }, + { + "code": "17202", + "value_represented": "Polynuclear aromatic hydrocarbons (TSP) STP" + }, + { + "code": "17204", + "value_represented": "Pyrene (TSP) STP" + }, + { + "code": "17205", + "value_represented": "Pyrene-D10 (TSP) STP" + }, + { + "code": "17208", + "value_represented": "Chrysene (TSP) STP" + }, + { + "code": "17210", + "value_represented": "Anthanthrene (TSP) STP" + }, + { + "code": "17211", + "value_represented": "Coronene (TSP) STP" + }, + { + "code": "17212", + "value_represented": "Perylene (TSP) STP" + }, + { + "code": "17215", + "value_represented": "Benzo[a]anthracene (TSP) STP" + }, + { + "code": "17220", + "value_represented": "Benzo[b]fluoranthene (TSP) STP" + }, + { + "code": "17223", + "value_represented": "Benzo[k]fluoranthene (TSP) STP" + }, + { + "code": "17224", + "value_represented": "Benzo[e]pyrene (TSP) STP" + }, + { + "code": "17225", + "value_represented": "Benzo[b,k]fluoranthene (TSP) STP" + }, + { + "code": "17231", + "value_represented": "Dibenzo[a,h]anthracene (TSP) STP" + }, + { + "code": "17237", + "value_represented": "Benzo[g,h,i]perylene (TSP) STP" + }, + { + "code": "17241", + "value_represented": "Benzo[a]pyrene-D12 (TSP) STP" + }, + { + "code": "17242", + "value_represented": "Benzo[a]pyrene (TSP) STP" + }, + { + "code": "17243", + "value_represented": "Indeno[1,2,3-cd]pyrene (TSP) STP" + }, + { + "code": "17301", + "value_represented": "o-Cresol (TSP) STP" + }, + { + "code": "17302", + "value_represented": "m-Cresol (TSP) STP" + }, + { + "code": "17303", + "value_represented": "p-Cresol (TSP) STP" + }, + { + "code": "17502", + "value_represented": "Benzanthrone (TSP) STP" + }, + { + "code": "17710", + "value_represented": "o-Toluidine (TSP) STP" + }, + { + "code": "17716", + "value_represented": "3,3'-Dichlorobenzidene (TSP) STP" + }, + { + "code": "17725", + "value_represented": "Pentachloronitrobenzene (TSP) STP" + }, + { + "code": "17801", + "value_represented": "Trichlorobenzene (TSP) STP" + }, + { + "code": "17802", + "value_represented": "Tetrachlorobenzene (TSP) STP" + }, + { + "code": "17803", + "value_represented": "Pentachlorobenzene (TSP) STP" + }, + { + "code": "17804", + "value_represented": "Hexachlorobenzene (TSP) STP" + }, + { + "code": "17805", + "value_represented": "Dichlorophenol (TSP) STP" + }, + { + "code": "17806", + "value_represented": "Trichlorophenol (TSP) STP" + }, + { + "code": "17807", + "value_represented": "Tetrachlorophenol (TSP) STP" + }, + { + "code": "17808", + "value_represented": "Pentachlorophenol (TSP) STP" + }, + { + "code": "17809", + "value_represented": "1,1-Biphenyl, chloro (TSP) STP" + }, + { + "code": "17810", + "value_represented": "Dichlorobiphenyl (TSP) STP" + }, + { + "code": "17811", + "value_represented": "Trichlorobiphenyl (TSP) STP" + }, + { + "code": "17812", + "value_represented": "Tetrachlorobiphenyl (TSP) STP" + }, + { + "code": "17813", + "value_represented": "Pentachlorobiphenyl (TSP) STP" + }, + { + "code": "17814", + "value_represented": "Hexachlorobiphenyl (TSP) STP" + }, + { + "code": "17815", + "value_represented": "Heptachlorobiphenyl (TSP) STP" + }, + { + "code": "17816", + "value_represented": "Octachlorobiphenyl (TSP) STP" + }, + { + "code": "17817", + "value_represented": "Nonachlorobiphenyl (TSP) STP" + }, + { + "code": "17818", + "value_represented": "Decachlorobiphenyl (TSP) STP" + }, + { + "code": "17819", + "value_represented": "2,3,7,8,-Tetrachlorodibenzo-p-dioxin" + }, + { + "code": "17820", + "value_represented": "Total tetachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "17821", + "value_represented": "Total pentachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "17822", + "value_represented": "Total hexachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "17823", + "value_represented": "Total heptachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "17824", + "value_represented": "Total octachlorodibenzo-p-dioxin (TSP) STP" + }, + { + "code": "17825", + "value_represented": "2,3,7,8-Tetrachlorodibenzofuran (TSP) STP" + }, + { + "code": "17826", + "value_represented": "Total tetrachlorodibenzofuran (TSP) STP" + }, + { + "code": "17827", + "value_represented": "Total pentachlorodibenzofuran (TSP) STP" + }, + { + "code": "17828", + "value_represented": "Total hexachlorodibenzofuran (TSP) STP" + }, + { + "code": "17829", + "value_represented": "Total heptachlorodibenzofuran (TSP) STP" + }, + { + "code": "17830", + "value_represented": "Total octachlorodibenzofuran (TSP) STP" + }, + { + "code": "17833", + "value_represented": "Polychlorinated biphenyls (PCBs)" + }, + { + "code": "17835", + "value_represented": "Alpha-terpinene (TSP) STP" + }, + { + "code": "17902", + "value_represented": "Dibenzo[b,e][1,4]dioxin,2,3,7,8-tetrachloro (TSP) STP" + }, + { + "code": "17906", + "value_represented": "2,4-Toluene Diisocyanate" + }, + { + "code": "17907", + "value_represented": "D-limonene" + }, + { + "code": "17911", + "value_represented": "2-6-TOLUENEDIISOCYANATE" + }, + { + "code": "18202", + "value_represented": "Dibenzofuran (TSP) STP" + }, + { + "code": "21101", + "value_represented": "Total dustfall (SP)" + }, + { + "code": "21102", + "value_represented": "Organic Fraction (SP)" + }, + { + "code": "21103", + "value_represented": "Benzene Sol Org (SP)" + }, + { + "code": "21113", + "value_represented": "Inorganic Fractn (SP)" + }, + { + "code": "21114", + "value_represented": "Water Sol Weight (SP)" + }, + { + "code": "21115", + "value_represented": "Water Insol Wt (SP)" + }, + { + "code": "21116", + "value_represented": "Total Weight Ash (SP)" + }, + { + "code": "21117", + "value_represented": "Water Sol Ash (SP)" + }, + { + "code": "21118", + "value_represented": "Water Inso Ash (SP)" + }, + { + "code": "22102", + "value_represented": "Antimony (SP)" + }, + { + "code": "22103", + "value_represented": "Arsenic (SP)" + }, + { + "code": "22110", + "value_represented": "Cadmium (SP)" + }, + { + "code": "22111", + "value_represented": "Calcium (SP)" + }, + { + "code": "22112", + "value_represented": "Chromium (SP)" + }, + { + "code": "22114", + "value_represented": "Copper (SP)" + }, + { + "code": "22126", + "value_represented": "Iron (SP)" + }, + { + "code": "22128", + "value_represented": "Lead (SP)" + }, + { + "code": "22132", + "value_represented": "Manganese (SP)" + }, + { + "code": "22136", + "value_represented": "Nickel (SP)" + }, + { + "code": "22142", + "value_represented": "Mercury (SP)" + }, + { + "code": "22166", + "value_represented": "Silver (SP)" + }, + { + "code": "22167", + "value_represented": "Zinc (SP)" + }, + { + "code": "22203", + "value_represented": "Chloride(SP)" + }, + { + "code": "22301", + "value_represented": "Ammonium (SP)" + }, + { + "code": "22306", + "value_represented": "Nitrate (SP)" + }, + { + "code": "22403", + "value_represented": "Sulfate (SP)" + }, + { + "code": "22602", + "value_represented": "pH (Dustfall)" + }, + { + "code": "22604", + "value_represented": "Ammonia (SP)" + }, + { + "code": "25101", + "value_represented": "Dustfall Combustible (SP)" + }, + { + "code": "25303", + "value_represented": "Conductance (SP)" + }, + { + "code": "31101", + "value_represented": "Respirable part" + }, + { + "code": "42101", + "value_represented": "Carbon monoxide" + }, + { + "code": "42102", + "value_represented": "Carbon dioxide" + }, + { + "code": "42153", + "value_represented": "Carbon disulfide" + }, + { + "code": "42215", + "value_represented": "Chlorine" + }, + { + "code": "42242", + "value_represented": "Mercury (vapor)" + }, + { + "code": "42243", + "value_represented": "Mercury (Reactive Gaseous)" + }, + { + "code": "42269", + "value_represented": "Total sulfur" + }, + { + "code": "42301", + "value_represented": "Hydrobromic acid" + }, + { + "code": "42302", + "value_represented": "Hydrochloric acid" + }, + { + "code": "42303", + "value_represented": "Hydrofluoric acid" + }, + { + "code": "42304", + "value_represented": "Hydronium ion" + }, + { + "code": "42305", + "value_represented": "Nitric acid" + }, + { + "code": "42306", + "value_represented": "Sulfuric acid" + }, + { + "code": "42307", + "value_represented": "Phosphoric acid" + }, + { + "code": "42308", + "value_represented": "Nitrous acid" + }, + { + "code": "42401", + "value_represented": "Sulfur dioxide" + }, + { + "code": "42402", + "value_represented": "Hydrogen sulfide" + }, + { + "code": "42406", + "value_represented": "SO2 max 5-min avg" + }, + { + "code": "42410", + "value_represented": "Sulfation rate" + }, + { + "code": "42513", + "value_represented": "Fluoride ion" + }, + { + "code": "42600", + "value_represented": "Reactive oxides of nitrogen (NOy)" + }, + { + "code": "42601", + "value_represented": "Nitric oxide (NO)" + }, + { + "code": "42602", + "value_represented": "Nitrogen dioxide (NO2)" + }, + { + "code": "42603", + "value_represented": "Oxides of nitrogen (NOx)" + }, + { + "code": "42604", + "value_represented": "Ammonia" + }, + { + "code": "42605", + "value_represented": "NITROUS OXIDE" + }, + { + "code": "42607", + "value_represented": "Hydrogen cyanide" + }, + { + "code": "42609", + "value_represented": "Nitrite" + }, + { + "code": "42612", + "value_represented": "NOy - NO" + }, + { + "code": "43000", + "value_represented": "Sum of PAMS target compounds" + }, + { + "code": "43101", + "value_represented": "Total hydrocarbons" + }, + { + "code": "43102", + "value_represented": "Total NMOC (non-methane organic compound)" + }, + { + "code": "43104", + "value_represented": "Volatile organic compounds" + }, + { + "code": "43111", + "value_represented": "Isomers of dodecane" + }, + { + "code": "43121", + "value_represented": "Isomers of pentene" + }, + { + "code": "43122", + "value_represented": "3-Methyl-1-butene & Cyclopentene" + }, + { + "code": "43126", + "value_represented": "Ethylene & acetylene" + }, + { + "code": "43127", + "value_represented": "Isobutene & 1-butene" + }, + { + "code": "43130", + "value_represented": "n-Octane & trans-1,3-dichloropropylene" + }, + { + "code": "43131", + "value_represented": "Unidentified VOC" + }, + { + "code": "43134", + "value_represented": "1,1-Bis(4-chlorophenyl)-2,2-dichloroethane" + }, + { + "code": "43135", + "value_represented": "Birdin" + }, + { + "code": "43136", + "value_represented": "2,4-Dichlorophenoxyacetic acid methyl ester" + }, + { + "code": "43137", + "value_represented": "Lindane" + }, + { + "code": "43138", + "value_represented": "1,2,3,4,5,6- Hexachlorocyclohexane" + }, + { + "code": "43139", + "value_represented": "1,2,3,4,5,6- Hexachlolocyclohexane, .beta.-" + }, + { + "code": "43140", + "value_represented": "1,2,3,4,5,6- Hexachlorocyclohexane, .delta.-" + }, + { + "code": "43141", + "value_represented": "n-Dodecane" + }, + { + "code": "43142", + "value_represented": "Tridecene" + }, + { + "code": "43143", + "value_represented": "n-Tridecane" + }, + { + "code": "43144", + "value_represented": "Propyne" + }, + { + "code": "43145", + "value_represented": "1-Octene" + }, + { + "code": "43148", + "value_represented": "cis/trans-2-Butene" + }, + { + "code": "43149", + "value_represented": "cis/trans-2-Hexene" + }, + { + "code": "43150", + "value_represented": "cis/trans-2-Pentene" + }, + { + "code": "43151", + "value_represented": "Heptachlor epoxide" + }, + { + "code": "43152", + "value_represented": "Endrin ketone" + }, + { + "code": "43153", + "value_represented": "Methoxychlor" + }, + { + "code": "43154", + "value_represented": "Guthion" + }, + { + "code": "43155", + "value_represented": "Atrazine" + }, + { + "code": "43156", + "value_represented": "Dacthal" + }, + { + "code": "43157", + "value_represented": "Endosulfan" + }, + { + "code": "43158", + "value_represented": "Dursban" + }, + { + "code": "43159", + "value_represented": "Aldrin" + }, + { + "code": "43160", + "value_represented": "Methyl Parathion" + }, + { + "code": "43161", + "value_represented": "Endrin aldehyde" + }, + { + "code": "43162", + "value_represented": "1,1,1-Trichloro-2,2-bis (p-chlorophenyl) ethane" + }, + { + "code": "43163", + "value_represented": "Endosulfan 2" + }, + { + "code": "43164", + "value_represented": "Endrin" + }, + { + "code": "43165", + "value_represented": "Dieldrin" + }, + { + "code": "43166", + "value_represented": "1,1-Dichloroethenylidene bis(4-chlorobenzene)" + }, + { + "code": "43167", + "value_represented": "Phosphorotrithioic acid,S,S,S-tributylester" + }, + { + "code": "43168", + "value_represented": "Endosulfan sulfate" + }, + { + "code": "43169", + "value_represented": "Malathion" + }, + { + "code": "43170", + "value_represented": "Heptachlor" + }, + { + "code": "43171", + "value_represented": "Cyclopentane & 2,3-dimethylbutane" + }, + { + "code": "43172", + "value_represented": "2-Methylheptane & 3-Methylheptane" + }, + { + "code": "43173", + "value_represented": "1-Hexene & 2-Methyl-1-pentene" + }, + { + "code": "43174", + "value_represented": "2,3-Dimethylbutane & 2-Methylpentane" + }, + { + "code": "43175", + "value_represented": "Endosulfan 1 (alpha)" + }, + { + "code": "43188", + "value_represented": "Pinene & p-ethytoluene" + }, + { + "code": "43189", + "value_represented": "beta.Pinene & 1,2,3- trimethylbenzene" + }, + { + "code": "43201", + "value_represented": "Methane" + }, + { + "code": "43202", + "value_represented": "Ethane" + }, + { + "code": "43203", + "value_represented": "Ethylene" + }, + { + "code": "43204", + "value_represented": "Propane" + }, + { + "code": "43205", + "value_represented": "Propylene" + }, + { + "code": "43206", + "value_represented": "Acetylene" + }, + { + "code": "43207", + "value_represented": "Freon 113" + }, + { + "code": "43208", + "value_represented": "Freon 114" + }, + { + "code": "43209", + "value_represented": "Ethyl acetate" + }, + { + "code": "43212", + "value_represented": "n-Butane" + }, + { + "code": "43214", + "value_represented": "Isobutane" + }, + { + "code": "43216", + "value_represented": "trans-2-Butene" + }, + { + "code": "43217", + "value_represented": "cis-2-Butene" + }, + { + "code": "43218", + "value_represented": "1,3-Butadiene" + }, + { + "code": "43220", + "value_represented": "n-Pentane" + }, + { + "code": "43221", + "value_represented": "Isopentane" + }, + { + "code": "43222", + "value_represented": "2,2-Dimethylpropane" + }, + { + "code": "43223", + "value_represented": "1,2-Butadiene" + }, + { + "code": "43224", + "value_represented": "1-Pentene" + }, + { + "code": "43225", + "value_represented": "2-Methyl-1-butene" + }, + { + "code": "43226", + "value_represented": "trans-2-Pentene" + }, + { + "code": "43227", + "value_represented": "cis-2-Pentene" + }, + { + "code": "43228", + "value_represented": "2-Methyl-2-butene" + }, + { + "code": "43229", + "value_represented": "1,3-Hexadiene" + }, + { + "code": "43230", + "value_represented": "3-Methylpentane" + }, + { + "code": "43231", + "value_represented": "n-Hexane" + }, + { + "code": "43232", + "value_represented": "n-Heptane" + }, + { + "code": "43233", + "value_represented": "n-Octane" + }, + { + "code": "43234", + "value_represented": "4-Methyl-1-pentene" + }, + { + "code": "43235", + "value_represented": "n-Nonane" + }, + { + "code": "43236", + "value_represented": "2-Ethyl-1-butene" + }, + { + "code": "43237", + "value_represented": "2-Methyl-2-pentene" + }, + { + "code": "43238", + "value_represented": "n-Decane" + }, + { + "code": "43241", + "value_represented": "2,3-Dimethyl-2-pentene" + }, + { + "code": "43242", + "value_represented": "Cyclopentane" + }, + { + "code": "43243", + "value_represented": "Isoprene" + }, + { + "code": "43244", + "value_represented": "2,2-Dimethylbutane" + }, + { + "code": "43245", + "value_represented": "1-Hexene" + }, + { + "code": "43246", + "value_represented": "2-Methyl-1-pentene" + }, + { + "code": "43247", + "value_represented": "2,4-Dimethylpentane" + }, + { + "code": "43248", + "value_represented": "Cyclohexane" + }, + { + "code": "43249", + "value_represented": "3-Methylhexane" + }, + { + "code": "43250", + "value_represented": "2,2,4-Trimethylpentane" + }, + { + "code": "43251", + "value_represented": "Cyclopropane" + }, + { + "code": "43252", + "value_represented": "2,3,4-Trimethylpentane" + }, + { + "code": "43253", + "value_represented": "3-Methylheptane" + }, + { + "code": "43254", + "value_represented": "cis-3-Hexene" + }, + { + "code": "43255", + "value_represented": "Limonene" + }, + { + "code": "43256", + "value_represented": "alpha.-Pinene" + }, + { + "code": "43257", + "value_represented": "beta.-Pinene" + }, + { + "code": "43259", + "value_represented": "n-Tetradecane" + }, + { + "code": "43260", + "value_represented": "n-Pentadecane" + }, + { + "code": "43261", + "value_represented": "Methylcyclohexane" + }, + { + "code": "43262", + "value_represented": "Methylcyclopentane" + }, + { + "code": "43263", + "value_represented": "2-Methylhexane" + }, + { + "code": "43264", + "value_represented": "Heptane" + }, + { + "code": "43269", + "value_represented": "Cyclohexene" + }, + { + "code": "43270", + "value_represented": "Isobutene" + }, + { + "code": "43274", + "value_represented": "2,4,4-Trimethyl-1-pentene" + }, + { + "code": "43275", + "value_represented": "2,4,4-Trimethyl-2-pentene" + }, + { + "code": "43279", + "value_represented": "1-Nonene" + }, + { + "code": "43280", + "value_represented": "1-Butene" + }, + { + "code": "43282", + "value_represented": "3-Methyl-1-butene" + }, + { + "code": "43283", + "value_represented": "Cyclopentene" + }, + { + "code": "43284", + "value_represented": "2,3-Dimethylbutane" + }, + { + "code": "43285", + "value_represented": "2-Methylpentane" + }, + { + "code": "43286", + "value_represented": "cis-4-Methyl-2-pentene" + }, + { + "code": "43289", + "value_represented": "trans-2-Hexene" + }, + { + "code": "43290", + "value_represented": "cis-2-Hexene" + }, + { + "code": "43291", + "value_represented": "2,3-Dimethylpentane" + }, + { + "code": "43292", + "value_represented": "2-2-3-Trimethylpentane" + }, + { + "code": "43293", + "value_represented": "2,4-Dimethylhexane" + }, + { + "code": "43294", + "value_represented": "2,3-Dimethylhexane" + }, + { + "code": "43295", + "value_represented": "3-Ethylhexane" + }, + { + "code": "43296", + "value_represented": "Ethylcyclohexane" + }, + { + "code": "43298", + "value_represented": "1-Decene" + }, + { + "code": "43299", + "value_represented": "1-Undecene" + }, + { + "code": "43301", + "value_represented": "Methanol" + }, + { + "code": "43302", + "value_represented": "Ethyl alcohol" + }, + { + "code": "43303", + "value_represented": "n-Propyl alcohol" + }, + { + "code": "43305", + "value_represented": "n-Butyl alcohol" + }, + { + "code": "43306", + "value_represented": "ISO-BUTYL ALCOHOL" + }, + { + "code": "43307", + "value_represented": "n-Amyl alcohol" + }, + { + "code": "43309", + "value_represented": "tert-butyl alcohol" + }, + { + "code": "43312", + "value_represented": "2-Propanol" + }, + { + "code": "43323", + "value_represented": "n-Pinene & benzaldehyde" + }, + { + "code": "43328", + "value_represented": "1-Heptene" + }, + { + "code": "43329", + "value_represented": "Butyraldehyde & isobutyraldehyde" + }, + { + "code": "43330", + "value_represented": "Dodecene" + }, + { + "code": "43331", + "value_represented": "2-Chloropentane" + }, + { + "code": "43335", + "value_represented": "3-Chloropropene" + }, + { + "code": "43339", + "value_represented": "Butryl-aldehyde & Methyl Ethyl Ketone" + }, + { + "code": "43340", + "value_represented": "Ethyne & isobutane" + }, + { + "code": "43341", + "value_represented": "Isopentane & cyclopentane" + }, + { + "code": "43342", + "value_represented": "3-Methyl-1-butene & cyclopentene" + }, + { + "code": "43343", + "value_represented": "2-Methyl-2-butene & 1-pentene" + }, + { + "code": "43344", + "value_represented": "1-Hexanol" + }, + { + "code": "43346", + "value_represented": "Methylcyclopentane & 2,4-dimethylpentane" + }, + { + "code": "43347", + "value_represented": "2-Methylhexane & cyclohexane" + }, + { + "code": "43348", + "value_represented": "n-Decane & 1,2,4-trimethylbenzene" + }, + { + "code": "43349", + "value_represented": "cis-2-Pentene & 2-methylpentane" + }, + { + "code": "43352", + "value_represented": "Dichloroethyl ether" + }, + { + "code": "43356", + "value_represented": "Diethylene glycol" + }, + { + "code": "43359", + "value_represented": "Chlorodifluoromethane" + }, + { + "code": "43360", + "value_represented": "dichlorofluoromethane" + }, + { + "code": "43362", + "value_represented": "2-Methylhexane & 2,3-dimethylpentane " + }, + { + "code": "43363", + "value_represented": "1,2,4-Trimethylbenzene & sec-butylbenzene" + }, + { + "code": "43364", + "value_represented": "1,2,4-Trimethylbenzene & .beta.-pinene" + }, + { + "code": "43372", + "value_represented": "Methyl tert-butyl ether" + }, + { + "code": "43373", + "value_represented": "Tert-amyl methyl ether" + }, + { + "code": "43375", + "value_represented": "2,2-Dimethylheptane" + }, + { + "code": "43376", + "value_represented": "2,2,4-Trimethylhexane" + }, + { + "code": "43378", + "value_represented": "1-Methylcyclohexene" + }, + { + "code": "43379", + "value_represented": "m(and p)-Ethyltoluene" + }, + { + "code": "43391", + "value_represented": "4-Methylpentene & 3-methylpentene" + }, + { + "code": "43392", + "value_represented": "2,2,3-Trimethylbutane" + }, + { + "code": "43393", + "value_represented": "cis-1,2-Dimethylcyclopentane" + }, + { + "code": "43394", + "value_represented": "trans-1,3-Dimethylcyclopentane" + }, + { + "code": "43395", + "value_represented": "4-Methylheptane" + }, + { + "code": "43396", + "value_represented": "tert-Butyl ethyl ether" + }, + { + "code": "43434", + "value_represented": "n-Propyl acetate" + }, + { + "code": "43438", + "value_represented": "Ethyl acrylate" + }, + { + "code": "43440", + "value_represented": "n-Butyl acrylate" + }, + { + "code": "43441", + "value_represented": "Methyl methacrylate" + }, + { + "code": "43447", + "value_represented": "Vinyl acetate" + }, + { + "code": "43501", + "value_represented": "Aldehydes" + }, + { + "code": "43502", + "value_represented": "Formaldehyde" + }, + { + "code": "43503", + "value_represented": "Acetaldehyde" + }, + { + "code": "43504", + "value_represented": "Propionaldehyde" + }, + { + "code": "43505", + "value_represented": "Acrolein - Unverified" + }, + { + "code": "43509", + "value_represented": "Acrolein - Verified" + }, + { + "code": "43510", + "value_represented": "Butyraldehyde" + }, + { + "code": "43511", + "value_represented": "HEXANAL" + }, + { + "code": "43512", + "value_represented": "Isobutyraldehyde" + }, + { + "code": "43513", + "value_represented": "Isovaleraldehyde" + }, + { + "code": "43514", + "value_represented": "Butyl acetate" + }, + { + "code": "43515", + "value_represented": "Methacrolein" + }, + { + "code": "43516", + "value_represented": "Trans-Crotonaldehyde" + }, + { + "code": "43517", + "value_represented": "Hexanaldehyde" + }, + { + "code": "43518", + "value_represented": "Valeraldehyde" + }, + { + "code": "43520", + "value_represented": "cis-Crotonaldehyde" + }, + { + "code": "43521", + "value_represented": "Decanal" + }, + { + "code": "43522", + "value_represented": "Dodecanal" + }, + { + "code": "43523", + "value_represented": "Tetradecanal" + }, + { + "code": "43524", + "value_represented": "Nonanal" + }, + { + "code": "43525", + "value_represented": "Octanal" + }, + { + "code": "43526", + "value_represented": "Tridecanal" + }, + { + "code": "43527", + "value_represented": "Undecanal" + }, + { + "code": "43528", + "value_represented": "Crotonaldehyde" + }, + { + "code": "43549", + "value_represented": "Methyl ethyl ketone & methacrolein" + }, + { + "code": "43551", + "value_represented": "Acetone" + }, + { + "code": "43552", + "value_represented": "Methyl ethyl ketone" + }, + { + "code": "43553", + "value_represented": "3-Pentanone" + }, + { + "code": "43557", + "value_represented": "3-Hexanone" + }, + { + "code": "43558", + "value_represented": "Methyl Vinyl Ketone" + }, + { + "code": "43559", + "value_represented": "Methyl Butyl Ketone" + }, + { + "code": "43560", + "value_represented": "Methyl isobutyl ketone" + }, + { + "code": "43562", + "value_represented": "2-Pentanone" + }, + { + "code": "43563", + "value_represented": "3-Heptanone" + }, + { + "code": "43564", + "value_represented": "2-Methyl-3-hexanone" + }, + { + "code": "43565", + "value_represented": "Acetophenone" + }, + { + "code": "43566", + "value_represented": "1,2-Epoxybutane" + }, + { + "code": "43599", + "value_represented": "Ethane & acetylene" + }, + { + "code": "43601", + "value_represented": "Ethylene oxide" + }, + { + "code": "43602", + "value_represented": "Propylene oxide" + }, + { + "code": "43604", + "value_represented": "1,2,3-Trichloropropane" + }, + { + "code": "43605", + "value_represented": "1,3,5-Trichlorobenzene" + }, + { + "code": "43606", + "value_represented": "Propionitrile" + }, + { + "code": "43607", + "value_represented": "Epichlorohydrin" + }, + { + "code": "43702", + "value_represented": "Acetonitrile" + }, + { + "code": "43704", + "value_represented": "Acrylonitrile" + }, + { + "code": "43756", + "value_represented": "2-Nitropropane" + }, + { + "code": "43776", + "value_represented": "Radon" + }, + { + "code": "43800", + "value_represented": "Total chlorinated hydrocarbons" + }, + { + "code": "43801", + "value_represented": "Chloromethane" + }, + { + "code": "43802", + "value_represented": "Dichloromethane" + }, + { + "code": "43803", + "value_represented": "Chloroform" + }, + { + "code": "43804", + "value_represented": "Carbon tetrachloride" + }, + { + "code": "43805", + "value_represented": "Dibromomethane" + }, + { + "code": "43806", + "value_represented": "Bromoform" + }, + { + "code": "43808", + "value_represented": "Methyl Iodide" + }, + { + "code": "43811", + "value_represented": "Trichlorofluoromethane" + }, + { + "code": "43812", + "value_represented": "Chloroethane" + }, + { + "code": "43813", + "value_represented": "1,1-Dichloroethane" + }, + { + "code": "43814", + "value_represented": "Methyl chloroform" + }, + { + "code": "43815", + "value_represented": "Ethylene dichloride" + }, + { + "code": "43816", + "value_represented": "Duplicate use 43839" + }, + { + "code": "43817", + "value_represented": "Tetrachloroethylene" + }, + { + "code": "43818", + "value_represented": "1,1,2,2-Tetrachloroethane" + }, + { + "code": "43819", + "value_represented": "Bromomethane" + }, + { + "code": "43820", + "value_represented": "1,1,2-Trichloroethane" + }, + { + "code": "43821", + "value_represented": "1,1,2-Trichloro-1,2,2-trifluoroethane" + }, + { + "code": "43823", + "value_represented": "Dichlorodifluoromethane" + }, + { + "code": "43824", + "value_represented": "Trichloroethylene" + }, + { + "code": "43825", + "value_represented": "2,2-Dichloro-1,1,1-trifluoroethane" + }, + { + "code": "43826", + "value_represented": "1,1-Dichloroethylene" + }, + { + "code": "43827", + "value_represented": "Carbon Tetrafluoride" + }, + { + "code": "43828", + "value_represented": "Bromodichloromethane" + }, + { + "code": "43829", + "value_represented": "1,2-Dichloropropane" + }, + { + "code": "43830", + "value_represented": "trans-1,3-Dichloropropene" + }, + { + "code": "43831", + "value_represented": "cis-1,3-Dichloropropene" + }, + { + "code": "43832", + "value_represented": "Dibromochloromethane" + }, + { + "code": "43833", + "value_represented": "2-Chloroethyl vinyl ether" + }, + { + "code": "43834", + "value_represented": "1,1,1,2,2-Pentafluoroethane" + }, + { + "code": "43835", + "value_represented": "Chloroprene" + }, + { + "code": "43836", + "value_represented": "Bromochloromethane" + }, + { + "code": "43837", + "value_represented": "1,1,1,2-Tetrachloroethane" + }, + { + "code": "43838", + "value_represented": "trans-1,2-Dichloroethylene" + }, + { + "code": "43839", + "value_represented": "cis-1,2-Dichloroethene" + }, + { + "code": "43840", + "value_represented": "1,2-Dichloroethene(total)" + }, + { + "code": "43841", + "value_represented": "1,3-Dichloropropene(total)" + }, + { + "code": "43842", + "value_represented": "1-Propene, 3-chloro" + }, + { + "code": "43843", + "value_represented": "Ethylene dibromide" + }, + { + "code": "43844", + "value_represented": "Hexachlorobutadiene" + }, + { + "code": "43847", + "value_represented": "1,4-Dichlorobutane" + }, + { + "code": "43848", + "value_represented": "Halocarbon 134a" + }, + { + "code": "43849", + "value_represented": "Freon 23" + }, + { + "code": "43851", + "value_represented": "Trichlorotrifluoroethane" + }, + { + "code": "43852", + "value_represented": "Dichlorotetrafluoroethane" + }, + { + "code": "43853", + "value_represented": "1-Bromopropane" + }, + { + "code": "43854", + "value_represented": "1,1-Difluoroethane" + }, + { + "code": "43860", + "value_represented": "Vinyl chloride" + }, + { + "code": "43861", + "value_represented": "Vinyl bromide" + }, + { + "code": "43862", + "value_represented": "Ethyl bromide" + }, + { + "code": "43863", + "value_represented": "3-Bromopropene" + }, + { + "code": "43901", + "value_represented": "Methyl mercaptan" + }, + { + "code": "43911", + "value_represented": "Total reduced sulfur" + }, + { + "code": "43915", + "value_represented": "DIMETHYL SULFIDE" + }, + { + "code": "43950", + "value_represented": "Heptanal" + }, + { + "code": "43952", + "value_represented": "Indan" + }, + { + "code": "43954", + "value_represented": "n-Undecane" + }, + { + "code": "43955", + "value_represented": "2,5-Dimethylhexane" + }, + { + "code": "43960", + "value_represented": "2-Methylheptane" + }, + { + "code": "44101", + "value_represented": "Total Oxidants" + }, + { + "code": "44201", + "value_represented": "Ozone" + }, + { + "code": "44301", + "value_represented": "Peroxyactyl nitrate" + }, + { + "code": "45102", + "value_represented": "Xylene(s)" + }, + { + "code": "45104", + "value_represented": "Isomers of ethyltoluene" + }, + { + "code": "45109", + "value_represented": "m/p Xylene" + }, + { + "code": "45110", + "value_represented": "Styrene and o-xylene" + }, + { + "code": "45111", + "value_represented": "m(and p)-Xylene & bromoform" + }, + { + "code": "45112", + "value_represented": "o-Xylene & 1,1,2,2-tetrachloroethane" + }, + { + "code": "45115", + "value_represented": "Benzene & 1,2-dichloroethane" + }, + { + "code": "45116", + "value_represented": "m/p Ethyltoluene" + }, + { + "code": "45140", + "value_represented": "O-xylene & N-nonane" + }, + { + "code": "45201", + "value_represented": "Benzene" + }, + { + "code": "45202", + "value_represented": "Toluene" + }, + { + "code": "45203", + "value_represented": "Ethylbenzene" + }, + { + "code": "45204", + "value_represented": "o-Xylene" + }, + { + "code": "45205", + "value_represented": "m-Xylene" + }, + { + "code": "45206", + "value_represented": "p-Xylene" + }, + { + "code": "45207", + "value_represented": "1,3,5-Trimethylbenzene" + }, + { + "code": "45208", + "value_represented": "1,2,4-Trimethylbenzene" + }, + { + "code": "45209", + "value_represented": "n-Propylbenzene" + }, + { + "code": "45210", + "value_represented": "Isopropylbenzene" + }, + { + "code": "45211", + "value_represented": "o-Ethyltoluene" + }, + { + "code": "45212", + "value_represented": "m-Ethyltoluene" + }, + { + "code": "45213", + "value_represented": "p-Ethyltoluene" + }, + { + "code": "45216", + "value_represented": "sec-Butylbenzene" + }, + { + "code": "45217", + "value_represented": "o-Diethylbenzene" + }, + { + "code": "45218", + "value_represented": "m-Diethylbenzene" + }, + { + "code": "45219", + "value_represented": "p-Diethylbenzene" + }, + { + "code": "45220", + "value_represented": "Styrene" + }, + { + "code": "45221", + "value_represented": "Benzene,(1-methylethenyl)-" + }, + { + "code": "45225", + "value_represented": "1,2,3-Trimethylbenzene" + }, + { + "code": "45228", + "value_represented": "Benzene, 1-ethenyl-4-methyl" + }, + { + "code": "45230", + "value_represented": "p-tert-butyl toluene" + }, + { + "code": "45231", + "value_represented": "1,2,4,5-Tetramethylbenzene" + }, + { + "code": "45232", + "value_represented": "Butylbenzene" + }, + { + "code": "45233", + "value_represented": "Butyl benzene" + }, + { + "code": "45234", + "value_represented": "n-Hexylbenzene" + }, + { + "code": "45300", + "value_represented": "Phenol" + }, + { + "code": "45301", + "value_represented": "Biphenyl" + }, + { + "code": "45501", + "value_represented": "Benzaldehyde" + }, + { + "code": "45503", + "value_represented": "2,5-Dimethylbenzaldehyde" + }, + { + "code": "45504", + "value_represented": "Tolualdehydes" + }, + { + "code": "45505", + "value_represented": "o-Tolualdehyde" + }, + { + "code": "45506", + "value_represented": "m & p-Tolualdehyde" + }, + { + "code": "45507", + "value_represented": "p-Tolualdehyde" + }, + { + "code": "45508", + "value_represented": "m-Tolualdehyde" + }, + { + "code": "45704", + "value_represented": "4,4-Methylenedianiline" + }, + { + "code": "45705", + "value_represented": "Nitrobenzene" + }, + { + "code": "45732", + "value_represented": "4,4-Methylenediphenyl Diisocyanate (MDI)" + }, + { + "code": "45801", + "value_represented": "Chlorobenzene" + }, + { + "code": "45805", + "value_represented": "1,2-Dichlorobenzene" + }, + { + "code": "45806", + "value_represented": "1,3-Dichlorobenzene" + }, + { + "code": "45807", + "value_represented": "1,4-Dichlorobenzene" + }, + { + "code": "45808", + "value_represented": "Bromofluorobenzene" + }, + { + "code": "45809", + "value_represented": "Benzyl chloride" + }, + { + "code": "45810", + "value_represented": "1,2,4-Trichlorobenzene" + }, + { + "code": "45811", + "value_represented": "2-chlorotoluene" + }, + { + "code": "45815", + "value_represented": "Benzene, 1,2,3-trichloro-" + }, + { + "code": "45820", + "value_represented": "4-Chloro-3-methylphenol" + }, + { + "code": "45850", + "value_represented": "Naphthalene" + }, + { + "code": "45851", + "value_represented": "1-Methylnaphthalene" + }, + { + "code": "45852", + "value_represented": "2-Methylnaphthalene" + }, + { + "code": "46201", + "value_represented": "1,4-Dioxane" + }, + { + "code": "46401", + "value_represented": "Furan, tetrahydro-" + }, + { + "code": "61101", + "value_represented": "Wind Speed - Scalar" + }, + { + "code": "61102", + "value_represented": "Wind Direction - Scalar" + }, + { + "code": "61103", + "value_represented": "Wind Speed - Resultant" + }, + { + "code": "61104", + "value_represented": "Wind Direction - Resultant" + }, + { + "code": "61105", + "value_represented": "Peak Wind Gust" + }, + { + "code": "61106", + "value_represented": "Std Dev Hz Wind Direction" + }, + { + "code": "61107", + "value_represented": "Std Dev Vt Wind Direction" + }, + { + "code": "61109", + "value_represented": "Vertical Wind Speed" + }, + { + "code": "61110", + "value_represented": "Std Dev Vt Wind Speed" + }, + { + "code": "61111", + "value_represented": "Std Dev Hz Wind Speed" + }, + { + "code": "61112", + "value_represented": "Vert Wind Direction" + }, + { + "code": "61120", + "value_represented": "Atmospheric Stability" + }, + { + "code": "61202", + "value_represented": "Lapse Rate" + }, + { + "code": "61301", + "value_represented": "Mixing Height" + }, + { + "code": "61302", + "value_represented": "Mixing Speed" + }, + { + "code": "62101", + "value_represented": "Outdoor Temperature" + }, + { + "code": "62102", + "value_represented": "Virtual Temperature" + }, + { + "code": "62103", + "value_represented": "Dew Point" + }, + { + "code": "62104", + "value_represented": "Temperature 24-Hr Max" + }, + { + "code": "62105", + "value_represented": "Temperature 24-Hr Min" + }, + { + "code": "62106", + "value_represented": "Temperature Difference" + }, + { + "code": "62107", + "value_represented": "Indoor Temperature" + }, + { + "code": "62108", + "value_represented": "Soil Temperature" + }, + { + "code": "62201", + "value_represented": "Relative Humidity " + }, + { + "code": "62202", + "value_represented": "Relative Humidity Factor" + }, + { + "code": "62604", + "value_represented": "Ammonia (precip)" + }, + { + "code": "63101", + "value_represented": "Visibility" + }, + { + "code": "63102", + "value_represented": "Light Absorption Coeffiecient" + }, + { + "code": "63301", + "value_represented": "Solar radiation" + }, + { + "code": "63302", + "value_represented": "Ultraviolet radiation" + }, + { + "code": "63303", + "value_represented": "Infrared Radiation" + }, + { + "code": "63304", + "value_represented": "Ultraviolet radiation (type B)" + }, + { + "code": "63305", + "value_represented": "Net radiation" + }, + { + "code": "64101", + "value_represented": "Barometric pressure" + }, + { + "code": "65101", + "value_represented": "Rain 24hr total" + }, + { + "code": "65102", + "value_represented": "Rain/melt precipitation" + }, + { + "code": "65105", + "value_represented": "Beryllium (precip)" + }, + { + "code": "65107", + "value_represented": "Barium (precip)" + }, + { + "code": "65112", + "value_represented": "Chromium (Precip)" + }, + { + "code": "65113", + "value_represented": "Cobalt (precip)" + }, + { + "code": "65134", + "value_represented": "Molybdenum (precip)" + }, + { + "code": "65152", + "value_represented": "Phosphorus (precip)" + }, + { + "code": "65164", + "value_represented": "Vanadium (precip)" + }, + { + "code": "65166", + "value_represented": "Silver (precip)" + }, + { + "code": "65173", + "value_represented": "Thallium (precip)" + }, + { + "code": "65190", + "value_represented": "Boron (precip)" + }, + { + "code": "65301", + "value_represented": "Volume (precip)" + }, + { + "code": "65302", + "value_represented": "PH (precip)" + }, + { + "code": "65303", + "value_represented": "Conductivity (precip)" + }, + { + "code": "65305", + "value_represented": "Radioactivity rainfall" + }, + { + "code": "65306", + "value_represented": "Strong Acids (precip)" + }, + { + "code": "65311", + "value_represented": "Sodium (precip)" + }, + { + "code": "65312", + "value_represented": "Potassium (precip)" + }, + { + "code": "65313", + "value_represented": "Magnesium (precip)" + }, + { + "code": "65314", + "value_represented": "Calcium (precip)" + }, + { + "code": "65315", + "value_represented": "Fluoride (precip)" + }, + { + "code": "65316", + "value_represented": "Chloride (precip)" + }, + { + "code": "65318", + "value_represented": "Ammonium (precip)" + }, + { + "code": "65321", + "value_represented": "Nitrate (precip)" + }, + { + "code": "65322", + "value_represented": "Sulfate (precip)" + }, + { + "code": "65329", + "value_represented": "Mercury (precip)" + }, + { + "code": "65330", + "value_represented": "Acidity (precip)" + }, + { + "code": "65331", + "value_represented": "Alkalinity (precip)" + }, + { + "code": "65332", + "value_represented": "Cadmium (precip)" + }, + { + "code": "65333", + "value_represented": "Copper(precip)" + }, + { + "code": "65334", + "value_represented": "Iron (precip)" + }, + { + "code": "65335", + "value_represented": "Manganese (precip)" + }, + { + "code": "65336", + "value_represented": "Nickel (precip)" + }, + { + "code": "65337", + "value_represented": "Lead (precip)" + }, + { + "code": "65338", + "value_represented": "Zinc (precip)" + }, + { + "code": "65339", + "value_represented": "Arsenic (precip)" + }, + { + "code": "65342", + "value_represented": "Aluminum (precip)" + }, + { + "code": "65343", + "value_represented": "Nitrite (precip)" + }, + { + "code": "65344", + "value_represented": "Antimony (precip)" + }, + { + "code": "65401", + "value_represented": "Dry deposition" + }, + { + "code": "65429", + "value_represented": "Mercury (deposition)" + }, + { + "code": "65551", + "value_represented": "Silica (precip)" + }, + { + "code": "66101", + "value_represented": "Cloud cover" + }, + { + "code": "68101", + "value_represented": "Sample Flow Rate- CV" + }, + { + "code": "68102", + "value_represented": "Sample Volume" + }, + { + "code": "68103", + "value_represented": "Ambient Min Temperature" + }, + { + "code": "68104", + "value_represented": "Ambient Max Temperature" + }, + { + "code": "68105", + "value_represented": "Average Ambient Temperature" + }, + { + "code": "68106", + "value_represented": "Sample Min Baro Pressure" + }, + { + "code": "68107", + "value_represented": "Sample Max Baro Pressure" + }, + { + "code": "68108", + "value_represented": "Average Ambient Pressure" + }, + { + "code": "68109", + "value_represented": "Elapsed Sample Time" + }, + { + "code": "68110", + "value_represented": "Relative Humidity" + }, + { + "code": "68111", + "value_represented": "Sample Flow Rate CV - Teflon Filter" + }, + { + "code": "68112", + "value_represented": "Sample Flow Rate CV - Nylon Filter" + }, + { + "code": "68113", + "value_represented": "Sample Flow Rate CV - Quartz Filter" + }, + { + "code": "68114", + "value_represented": "Sample Volume - Teflon Filter" + }, + { + "code": "68115", + "value_represented": "Sample Volume - Nylon Filter" + }, + { + "code": "68116", + "value_represented": "Sample Volume - Quartz Filter" + }, + { + "code": "68117", + "value_represented": "Average Ambient Temperature for URG3000N" + }, + { + "code": "68118", + "value_represented": "Average Ambient Pressure for URG3000N" + }, + { + "code": "72101", + "value_represented": "Silver tarnishing" + }, + { + "code": "72201", + "value_represented": "Steel corrosion" + }, + { + "code": "72301", + "value_represented": "Dyed fabric #1" + }, + { + "code": "72302", + "value_represented": "Dyed fabric #2" + }, + { + "code": "72303", + "value_represented": "Dyed fabric #3" + }, + { + "code": "72304", + "value_represented": "Dyed fabric #4" + }, + { + "code": "72305", + "value_represented": "Dyed fabric #5" + }, + { + "code": "72306", + "value_represented": "Dyed fabric #6" + }, + { + "code": "72307", + "value_represented": "Dyed fabric #7" + }, + { + "code": "72308", + "value_represented": "Dyed fabric #8" + }, + { + "code": "72309", + "value_represented": "Dyed fabric #9" + }, + { + "code": "72401", + "value_represented": "Rubber cracking" + }, + { + "code": "72501", + "value_represented": "Nylon deterioration" + }, + { + "code": "81101", + "value_represented": "Size fractionated particulate" + }, + { + "code": "81102", + "value_represented": "PM10 Total 0-10um STP" + }, + { + "code": "81103", + "value_represented": "PM10-2.5 STP" + }, + { + "code": "81104", + "value_represented": "PM2.5 STP" + }, + { + "code": "81111", + "value_represented": "TOTAL CARBON (PM10) use 82116" + }, + { + "code": "81301", + "value_represented": "AMMONIUM (PM10) use 82301" + }, + { + "code": "82101", + "value_represented": "Aluminum PM10 STP" + }, + { + "code": "82102", + "value_represented": "Antimony PM10 STP" + }, + { + "code": "82103", + "value_represented": "Arsenic PM10 STP" + }, + { + "code": "82105", + "value_represented": "Beryllium PM10 STP" + }, + { + "code": "82107", + "value_represented": "Barium PM10 STP" + }, + { + "code": "82109", + "value_represented": "Bromide PM10 STP" + }, + { + "code": "82110", + "value_represented": "Cadmium PM10 STP" + }, + { + "code": "82111", + "value_represented": "Calcium PM10 STP" + }, + { + "code": "82112", + "value_represented": "Chromium PM10 STP" + }, + { + "code": "82113", + "value_represented": "Cobalt PM10 STP" + }, + { + "code": "82114", + "value_represented": "Copper PM10 STP" + }, + { + "code": "82115", + "value_represented": "Chlorine PM10 STP" + }, + { + "code": "82116", + "value_represented": "Total Carbon PM10 STP" + }, + { + "code": "82119", + "value_represented": "Chromium VI PM10 STP" + }, + { + "code": "82124", + "value_represented": "Gallium PM10 STP" + }, + { + "code": "82126", + "value_represented": "Iron PM10 STP" + }, + { + "code": "82127", + "value_represented": "Palladium PM10 STP" + }, + { + "code": "82128", + "value_represented": "Lead PM10 STP" + }, + { + "code": "82131", + "value_represented": "Indium PM10 STP" + }, + { + "code": "82132", + "value_represented": "Manganese PM10 STP" + }, + { + "code": "82134", + "value_represented": "Molybdenum PM10 STP " + }, + { + "code": "82136", + "value_represented": "Nickel PM10 STP" + }, + { + "code": "82140", + "value_represented": "Magnesium PM10 STP" + }, + { + "code": "82142", + "value_represented": "Mercury PM10 STP" + }, + { + "code": "82146", + "value_represented": "Lanthanum PM10 STP" + }, + { + "code": "82151", + "value_represented": "Dibenz(A-H)Anthracene PM10 STP" + }, + { + "code": "82152", + "value_represented": "Phosphorus PM10 STP" + }, + { + "code": "82154", + "value_represented": "Selenium PM10 STP" + }, + { + "code": "82160", + "value_represented": "Tin PM10 STP" + }, + { + "code": "82161", + "value_represented": "Titanium PM10 STP" + }, + { + "code": "82164", + "value_represented": "Vanadium PM10 STP" + }, + { + "code": "82165", + "value_represented": "Silicon PM10 STP" + }, + { + "code": "82166", + "value_represented": "Silver PM10 STP" + }, + { + "code": "82167", + "value_represented": "Zinc PM10 STP" + }, + { + "code": "82168", + "value_represented": "Strontium PM10 STP" + }, + { + "code": "82169", + "value_represented": "Sulfur PM10 STP" + }, + { + "code": "82173", + "value_represented": "Thallium PM10 STP" + }, + { + "code": "82176", + "value_represented": "Rubidium PM10 STP" + }, + { + "code": "82179", + "value_represented": "Uranium PM10 STP" + }, + { + "code": "82180", + "value_represented": "Potassium PM10 STP" + }, + { + "code": "82183", + "value_represented": "Yttrium PM10 STP" + }, + { + "code": "82184", + "value_represented": "Sodium PM10 STP" + }, + { + "code": "82185", + "value_represented": "Zirconium PM10 STP" + }, + { + "code": "82190", + "value_represented": "Boron PM10 STP" + }, + { + "code": "82202", + "value_represented": "Fluoride PM10 STP" + }, + { + "code": "82203", + "value_represented": "Chloride PM10 STP" + }, + { + "code": "82220", + "value_represented": "Benzo(b)Fluranthene PM10 STP" + }, + { + "code": "82223", + "value_represented": "Benzo(k)Fluoranthene PM10 STP" + }, + { + "code": "82237", + "value_represented": "Benzo(g,h,i)Perylene PM10 STP" + }, + { + "code": "82242", + "value_represented": "Benzo(a)Pyrene PM10 STP" + }, + { + "code": "82243", + "value_represented": "Indeno[1,2,3-cd] pyrene PM10 STP" + }, + { + "code": "82301", + "value_represented": "Ammonium PM10 STP" + }, + { + "code": "82305", + "value_represented": "Organic carbon PM10 STP" + }, + { + "code": "82306", + "value_represented": "Nitrate PM10 STP" + }, + { + "code": "82307", + "value_represented": "Elemental Carbon PM10 STP" + }, + { + "code": "82356", + "value_represented": "Nitrate PM2.5 STP " + }, + { + "code": "82403", + "value_represented": "Sulfate PM10 STP" + }, + { + "code": "82453", + "value_represented": "Sulfate PM2.5 STP " + }, + { + "code": "82551", + "value_represented": "Silica PM10 STP" + }, + { + "code": "83101", + "value_represented": "Aluminum PM10-2.5 STP" + }, + { + "code": "83102", + "value_represented": "Antimony PM10-2.5 STP" + }, + { + "code": "83103", + "value_represented": "Arsenic PM10-2.5 STP" + }, + { + "code": "83107", + "value_represented": "Barium PM10-2.5 STP" + }, + { + "code": "83109", + "value_represented": "Bromine PM10-2.5 STP" + }, + { + "code": "83110", + "value_represented": "Cadmium PM10-2.5 STP" + }, + { + "code": "83111", + "value_represented": "Calcium PM10-2.5 STP" + }, + { + "code": "83112", + "value_represented": "Chromium PM10-2.5 STP" + }, + { + "code": "83113", + "value_represented": "Cobalt PM10-2.5 STP" + }, + { + "code": "83114", + "value_represented": "Copper PM10-2.5 STP" + }, + { + "code": "83115", + "value_represented": "Chlorine PM10-2.5 STP" + }, + { + "code": "83126", + "value_represented": "Iron PM10-2.5 STP" + }, + { + "code": "83128", + "value_represented": "Lead PM10-2.5 STP" + }, + { + "code": "83129", + "value_represented": "Indium (PM10)" + }, + { + "code": "83130", + "value_represented": "Gallium (PM10)" + }, + { + "code": "83132", + "value_represented": "Manganese PM10-2.5 STP" + }, + { + "code": "83134", + "value_represented": "Molybdenum PM10-2.5 STP" + }, + { + "code": "83136", + "value_represented": "Nickel PM10-2.5 STP" + }, + { + "code": "83142", + "value_represented": "Mercury PM10-2.5 STP" + }, + { + "code": "83147", + "value_represented": "Lanthanum (PM10)" + }, + { + "code": "83152", + "value_represented": "Phosphorus PM10-2.5 STP" + }, + { + "code": "83154", + "value_represented": "Selenium PM10-2.5 STP" + }, + { + "code": "83160", + "value_represented": "Tin PM10-2.5 STP" + }, + { + "code": "83161", + "value_represented": "Titanium PM10-2.5 STP" + }, + { + "code": "83164", + "value_represented": "Vanadium PM10-2.5 STP" + }, + { + "code": "83165", + "value_represented": "Silicon PM10-2.5 STP" + }, + { + "code": "83167", + "value_represented": "Zinc PM10-2.5 STP" + }, + { + "code": "83168", + "value_represented": "Strontium PM10-2.5 STP" + }, + { + "code": "83169", + "value_represented": "Sulfur PM10-2.5 STP" + }, + { + "code": "83176", + "value_represented": "Rubidium PM10-2.5 STP" + }, + { + "code": "83179", + "value_represented": "Uranium PM10-2.5 STP" + }, + { + "code": "83180", + "value_represented": "Potassium PM10-2.5 STP" + }, + { + "code": "83183", + "value_represented": "Yttrium PM10-2.5 STP" + }, + { + "code": "83185", + "value_represented": "Zirconium PM10-2.5 STP" + }, + { + "code": "84101", + "value_represented": "Aluminum PM2.5 STP" + }, + { + "code": "84102", + "value_represented": "Antimony PM2.5 STP" + }, + { + "code": "84103", + "value_represented": "Arsenic PM2.5 STP" + }, + { + "code": "84107", + "value_represented": "Barium PM2.5 STP" + }, + { + "code": "84109", + "value_represented": "Bromine PM2.5 STP" + }, + { + "code": "84110", + "value_represented": "Cadmium PM2.5 STP" + }, + { + "code": "84111", + "value_represented": "Calcium PM2.5 STP" + }, + { + "code": "84112", + "value_represented": "Chromium PM2.5 STP" + }, + { + "code": "84113", + "value_represented": "Cobalt PM2.5 STP" + }, + { + "code": "84114", + "value_represented": "Copper PM2.5 STP" + }, + { + "code": "84115", + "value_represented": "Chlorine PM2.5 STP" + }, + { + "code": "84126", + "value_represented": "Iron PM2.5 STP" + }, + { + "code": "84128", + "value_represented": "Lead PM2.5 STP" + }, + { + "code": "84132", + "value_represented": "Manganese PM2.5 STP" + }, + { + "code": "84134", + "value_represented": "Molybdenum PM2.5 STP" + }, + { + "code": "84136", + "value_represented": "Nickel PM2.5 STP" + }, + { + "code": "84140", + "value_represented": "Magnesium PM2.5 STP" + }, + { + "code": "84142", + "value_represented": "Mercury PM2.5 STP" + }, + { + "code": "84152", + "value_represented": "Phosphorus PM2.5 STP" + }, + { + "code": "84154", + "value_represented": "Selenium PM2.5 STP" + }, + { + "code": "84160", + "value_represented": "Tin PM2.5 STP" + }, + { + "code": "84161", + "value_represented": "Titanium PM2.5 STP" + }, + { + "code": "84164", + "value_represented": "Vanadium PM2.5 STP" + }, + { + "code": "84165", + "value_represented": "Silicon PM2.5 STP" + }, + { + "code": "84167", + "value_represented": "Zinc PM2.5 STP" + }, + { + "code": "84168", + "value_represented": "Strontium PM2.5 STP" + }, + { + "code": "84169", + "value_represented": "Sulfur PM2.5 STP" + }, + { + "code": "84176", + "value_represented": "Rubidium PM2.5 STP" + }, + { + "code": "84179", + "value_represented": "Uranium PM2.5 STP" + }, + { + "code": "84180", + "value_represented": "Potassium PM2.5 STP" + }, + { + "code": "84183", + "value_represented": "Yttrium PM2.5 STP" + }, + { + "code": "84184", + "value_represented": "Sodium PM2.5 STP" + }, + { + "code": "84185", + "value_represented": "Zirconium PM2.5 STP" + }, + { + "code": "84203", + "value_represented": "Chloride PM2.5 STP" + }, + { + "code": "84242", + "value_represented": "Mercury (PM2.5 STP particulate bound)" + }, + { + "code": "84305", + "value_represented": "OC CSN Unadjusted PM2.5 STP TOT" + }, + { + "code": "84306", + "value_represented": "Nitrate PM2.5 STP" + }, + { + "code": "84307", + "value_represented": "EC CSN PM2.5 STP TOT" + }, + { + "code": "84312", + "value_represented": "Total Carbon PM2.5 STP TOT" + }, + { + "code": "84313", + "value_represented": "Black carbon PM2.5 STP" + }, + { + "code": "84314", + "value_represented": "UV Carbon PM2.5 STP" + }, + { + "code": "84315", + "value_represented": "Delta Carbon PM2.5 STP" + }, + { + "code": "84316", + "value_represented": "Optical EC PM2.5 STP TOT" + }, + { + "code": "84403", + "value_represented": "Sulfate PM2.5 STP" + }, + { + "code": "85101", + "value_represented": "PM10 - LC" + }, + { + "code": "85102", + "value_represented": "Antimony PM10 LC" + }, + { + "code": "85103", + "value_represented": "Arsenic PM10 LC" + }, + { + "code": "85104", + "value_represented": "Aluminum PM10 LC" + }, + { + "code": "85105", + "value_represented": "Beryllium PM10 LC" + }, + { + "code": "85107", + "value_represented": "Barium PM10 LC" + }, + { + "code": "85109", + "value_represented": "Bromine PM10 LC" + }, + { + "code": "85110", + "value_represented": "Cadmium PM10 LC" + }, + { + "code": "85111", + "value_represented": "Calcium PM10 LC" + }, + { + "code": "85112", + "value_represented": "Chromium PM10 LC" + }, + { + "code": "85113", + "value_represented": "Cobalt PM10 LC" + }, + { + "code": "85114", + "value_represented": "Copper PM10 LC" + }, + { + "code": "85115", + "value_represented": "Chlorine PM10 LC" + }, + { + "code": "85117", + "value_represented": "Cerium Pm10 Lc" + }, + { + "code": "85118", + "value_represented": "Cesium Pm10 Lc" + }, + { + "code": "85119", + "value_represented": "Chromium VI PM10 LC" + }, + { + "code": "85126", + "value_represented": "Iron PM10 LC" + }, + { + "code": "85128", + "value_represented": "Lead PM10 LC" + }, + { + "code": "85129", + "value_represented": "Lead PM10 LC FRM/FEM" + }, + { + "code": "85131", + "value_represented": "Indium Pm10 Lc" + }, + { + "code": "85132", + "value_represented": "Manganese PM10 LC" + }, + { + "code": "85134", + "value_represented": "Molybdenum PM10 LC" + }, + { + "code": "85136", + "value_represented": "Nickel PM10 LC" + }, + { + "code": "85140", + "value_represented": "Magnesium PM10 LC" + }, + { + "code": "85142", + "value_represented": "Mercury PM10 LC" + }, + { + "code": "85152", + "value_represented": "Phosphorus PM10 LC" + }, + { + "code": "85154", + "value_represented": "Selenium PM10 LC" + }, + { + "code": "85160", + "value_represented": "Tin PM10 LC" + }, + { + "code": "85161", + "value_represented": "Titanium PM10 LC" + }, + { + "code": "85164", + "value_represented": "Vanadium PM10 LC" + }, + { + "code": "85165", + "value_represented": "Silicon PM10 LC" + }, + { + "code": "85166", + "value_represented": "Silver PM10 LC" + }, + { + "code": "85167", + "value_represented": "Zinc PM10 LC" + }, + { + "code": "85168", + "value_represented": "Strontium PM10 LC" + }, + { + "code": "85169", + "value_represented": "Sulfur PM10 LC" + }, + { + "code": "85173", + "value_represented": "Thallium PM10 LC" + }, + { + "code": "85174", + "value_represented": "Thorium PM10 LC" + }, + { + "code": "85176", + "value_represented": "Rubidium PM10 LC" + }, + { + "code": "85179", + "value_represented": "Uranium PM10 LC" + }, + { + "code": "85180", + "value_represented": "Potassium PM10 LC" + }, + { + "code": "85183", + "value_represented": "Yttrium PM10 LC" + }, + { + "code": "85184", + "value_represented": "Sodium PM10 LC" + }, + { + "code": "85185", + "value_represented": "Zirconium PM10 LC" + }, + { + "code": "85301", + "value_represented": "Ammonium Ion PM10 LC" + }, + { + "code": "85302", + "value_represented": "Sodium Ion PM10 LC" + }, + { + "code": "85303", + "value_represented": "Potassium Ion PM10 LC" + }, + { + "code": "85306", + "value_represented": "Total Nitrate PM10 LC" + }, + { + "code": "85309", + "value_represented": "Volatile nitrate PM10 LC" + }, + { + "code": "85310", + "value_represented": "Non-volatile nitrate PC10 LC" + }, + { + "code": "85313", + "value_represented": "Black Carbon PM10 LC" + }, + { + "code": "85355", + "value_represented": "OC CSN_rev Unadjusted PM10 LC TOT" + }, + { + "code": "85357", + "value_represented": "EC CSN_rev Unadjusted PM10 LC TOT" + }, + { + "code": "85370", + "value_represented": "OC CSN_rev Unadjusted PM10 LC TOR" + }, + { + "code": "85374", + "value_represented": "OC1 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85375", + "value_represented": "OC2 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85376", + "value_represented": "OC3 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85377", + "value_represented": "OC4 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85378", + "value_represented": "Op CSN_rev Unadjusted PM10 LC TOR" + }, + { + "code": "85380", + "value_represented": "EC CSN_rev Unadjusted PM10 LC TOR" + }, + { + "code": "85383", + "value_represented": "EC1 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85384", + "value_represented": "EC2 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85385", + "value_represented": "EC3 CSN_rev Unadjusted PM10 LC" + }, + { + "code": "85388", + "value_represented": "Op CSN_rev Unadjusted PM10 LC TOT" + }, + { + "code": "85403", + "value_represented": "Sulfate PM10 LC" + }, + { + "code": "85551", + "value_represented": "Silica PM10 LC" + }, + { + "code": "86101", + "value_represented": "PM10-2.5 - Local Conditions" + }, + { + "code": "86102", + "value_represented": "Antimony PM10-2.5 LC" + }, + { + "code": "86103", + "value_represented": "Arsenic PM10-2.5 LC" + }, + { + "code": "86104", + "value_represented": "Aluminum PM10-2.5 LC" + }, + { + "code": "86107", + "value_represented": "Barium PM10-2.5 LC" + }, + { + "code": "86109", + "value_represented": "Bromine PM10-2.5 LC" + }, + { + "code": "86110", + "value_represented": "Cadmium PM10-2.5 LC" + }, + { + "code": "86111", + "value_represented": "Calcium PM10-2.5 LC" + }, + { + "code": "86112", + "value_represented": "Chromium PM10-2.5 LC" + }, + { + "code": "86113", + "value_represented": "Cobalt PM10-2.5 LC" + }, + { + "code": "86114", + "value_represented": "Copper PM10-2.5 LC" + }, + { + "code": "86115", + "value_represented": "Chlorine PM10-2.5 LC" + }, + { + "code": "86117", + "value_represented": "Cerium PM10-2.5 LC" + }, + { + "code": "86118", + "value_represented": "Cesium PM10-2.5 LC" + }, + { + "code": "86126", + "value_represented": "Iron PM10-2.5 LC" + }, + { + "code": "86128", + "value_represented": "Lead PM10-2.5 LC" + }, + { + "code": "86131", + "value_represented": "Indium PM10-2.5 LC" + }, + { + "code": "86132", + "value_represented": "Manganese PM10-2.5 LC" + }, + { + "code": "86136", + "value_represented": "Nickel PM10-2.5 LC" + }, + { + "code": "86140", + "value_represented": "Magnesium PM10-2.5 LC" + }, + { + "code": "86152", + "value_represented": "Phosphorus PM10-2.5 LC" + }, + { + "code": "86154", + "value_represented": "Selenium PM10-2.5 LC" + }, + { + "code": "86160", + "value_represented": "Tin PM10-2.5 LC" + }, + { + "code": "86161", + "value_represented": "Titanium PM10-2.5 LC" + }, + { + "code": "86164", + "value_represented": "Vanadium PM10-2.5 LC" + }, + { + "code": "86165", + "value_represented": "Silicon PM10-2.5 LC" + }, + { + "code": "86166", + "value_represented": "Silver PM10-2.5 LC" + }, + { + "code": "86167", + "value_represented": "Zinc PM10-2.5 LC" + }, + { + "code": "86168", + "value_represented": "Strontium PM10-2.5 LC" + }, + { + "code": "86169", + "value_represented": "Sulfur PM10-2.5 LC" + }, + { + "code": "86176", + "value_represented": "Rubidium PM10-2.5 LC" + }, + { + "code": "86180", + "value_represented": "Potassium PM10-2.5 LC" + }, + { + "code": "86184", + "value_represented": "Sodium PM10-2.5 LC" + }, + { + "code": "86185", + "value_represented": "Zirconium PM10-2.5 LC" + }, + { + "code": "86301", + "value_represented": "Ammonium Ion PM10-2.5 LC" + }, + { + "code": "86302", + "value_represented": "Sodium Ion PM10-2.5 LC" + }, + { + "code": "86303", + "value_represented": "Potassium Ion PM10-2.5 LC" + }, + { + "code": "86306", + "value_represented": "Total Nitrate PM10-2.5 LC" + }, + { + "code": "86309", + "value_represented": "Volatile nitrate PM10-2.5 LC" + }, + { + "code": "86310", + "value_represented": "Non-volatile nitrate PM10-2.5 LC" + }, + { + "code": "86355", + "value_represented": "OC CSN_rev Unadjusted PM10-2.5 LC TOT" + }, + { + "code": "86357", + "value_represented": "EC CSN_rev Unadjusted PM10-2.5 LC TOT" + }, + { + "code": "86370", + "value_represented": "OC CSN_rev Unadjusted PM10-2.5 LC TOR" + }, + { + "code": "86374", + "value_represented": "OC1 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86375", + "value_represented": "OC2 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86376", + "value_represented": "OC3 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86377", + "value_represented": "OC4 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86378", + "value_represented": "OP CSN_rev Unadjusted PM10-2.5 LC TOR" + }, + { + "code": "86380", + "value_represented": "EC CSN_rev Unadjusted PM10-2.5 LC TOR" + }, + { + "code": "86383", + "value_represented": "EC1 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86384", + "value_represented": "EC2 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86385", + "value_represented": "EC3 CSN_rev Unadjusted PM10-2.5 LC" + }, + { + "code": "86388", + "value_represented": "OP CSN_rev Unadjusted PM10-2.5 LC TOT" + }, + { + "code": "86403", + "value_represented": "Sulfate PM10-2.5 LC" + }, + { + "code": "86502", + "value_represented": "Acceptable PM10-2.5 - Local Conditions" + }, + { + "code": "87020", + "value_represented": "Particle Number, 20-30 nm" + }, + { + "code": "87030", + "value_represented": "Particle Number, 30-50 nm" + }, + { + "code": "87050", + "value_represented": "Particle Number, 50-70 nm" + }, + { + "code": "87070", + "value_represented": "Particle Number, 70-100 nm" + }, + { + "code": "87100", + "value_represented": "Particle Number, 100-200 nm" + }, + { + "code": "87101", + "value_represented": "Particle Number, Total Count" + }, + { + "code": "87111", + "value_represented": "PM1 - Local Conditions" + }, + { + "code": "87200", + "value_represented": "Particle Number, > 200 nm" + }, + { + "code": "88101", + "value_represented": "PM2.5 - Local Conditions" + }, + { + "code": "88102", + "value_represented": "Antimony PM2.5 LC" + }, + { + "code": "88103", + "value_represented": "Arsenic PM2.5 LC" + }, + { + "code": "88104", + "value_represented": "Aluminum PM2.5 LC" + }, + { + "code": "88105", + "value_represented": "Beryllium PM2.5 LC" + }, + { + "code": "88107", + "value_represented": "Barium PM2.5 LC" + }, + { + "code": "88109", + "value_represented": "Bromine PM2.5 LC" + }, + { + "code": "88110", + "value_represented": "Cadmium PM2.5 LC" + }, + { + "code": "88111", + "value_represented": "Calcium PM2.5 LC" + }, + { + "code": "88112", + "value_represented": "Chromium PM2.5 LC" + }, + { + "code": "88113", + "value_represented": "Cobalt PM2.5 LC" + }, + { + "code": "88114", + "value_represented": "Copper PM2.5 LC" + }, + { + "code": "88115", + "value_represented": "Chlorine PM2.5 LC" + }, + { + "code": "88117", + "value_represented": "Cerium PM2.5 LC" + }, + { + "code": "88118", + "value_represented": "Cesium PM2.5 LC" + }, + { + "code": "88119", + "value_represented": "Chromium VI PM2.5 LC" + }, + { + "code": "88121", + "value_represented": "Europium PM2.5 LC" + }, + { + "code": "88124", + "value_represented": "Gallium PM2.5 LC" + }, + { + "code": "88126", + "value_represented": "Iron PM2.5 LC" + }, + { + "code": "88127", + "value_represented": "Hafnium PM2.5 LC" + }, + { + "code": "88128", + "value_represented": "Lead PM2.5 LC" + }, + { + "code": "88131", + "value_represented": "Indium PM2.5 LC" + }, + { + "code": "88132", + "value_represented": "Manganese PM2.5 LC" + }, + { + "code": "88133", + "value_represented": "Iridium PM2.5 LC" + }, + { + "code": "88134", + "value_represented": "Molybdenum PM2.5 LC" + }, + { + "code": "88136", + "value_represented": "Nickel PM2.5 LC" + }, + { + "code": "88140", + "value_represented": "Magnesium PM2.5 LC" + }, + { + "code": "88142", + "value_represented": "Mercury PM2.5 LC" + }, + { + "code": "88143", + "value_represented": "Gold PM2.5 LC" + }, + { + "code": "88146", + "value_represented": "Lanthanum PM2.5 LC" + }, + { + "code": "88147", + "value_represented": "Niobium PM2.5 LC" + }, + { + "code": "88151", + "value_represented": "Palladium PM2.5 LC" + }, + { + "code": "88152", + "value_represented": "Phosphorus PM2.5 LC" + }, + { + "code": "88154", + "value_represented": "Selenium PM2.5 LC" + }, + { + "code": "88160", + "value_represented": "Tin PM2.5 LC" + }, + { + "code": "88161", + "value_represented": "Titanium PM2.5 LC" + }, + { + "code": "88162", + "value_represented": "Samarium PM2.5 LC" + }, + { + "code": "88163", + "value_represented": "Scandium PM2.5 LC" + }, + { + "code": "88164", + "value_represented": "Vanadium PM2.5 LC" + }, + { + "code": "88165", + "value_represented": "Silicon PM2.5 LC" + }, + { + "code": "88166", + "value_represented": "Silver PM2.5 LC" + }, + { + "code": "88167", + "value_represented": "Zinc PM2.5 LC" + }, + { + "code": "88168", + "value_represented": "Strontium PM2.5 LC" + }, + { + "code": "88169", + "value_represented": "Sulfur PM2.5 LC" + }, + { + "code": "88170", + "value_represented": "Tantalum PM2.5 LC" + }, + { + "code": "88172", + "value_represented": "Terbium PM2.5 LC" + }, + { + "code": "88173", + "value_represented": "Thallium PM2.5 LC" + }, + { + "code": "88176", + "value_represented": "Rubidium PM2.5 LC" + }, + { + "code": "88179", + "value_represented": "Uranium PM2.5 LC" + }, + { + "code": "88180", + "value_represented": "Potassium PM2.5 LC" + }, + { + "code": "88183", + "value_represented": "Yttrium PM2.5 LC" + }, + { + "code": "88184", + "value_represented": "Sodium PM2.5 LC" + }, + { + "code": "88185", + "value_represented": "Zirconium PM2.5 LC" + }, + { + "code": "88186", + "value_represented": "Tungsten PM2.5 LC" + }, + { + "code": "88203", + "value_represented": "Chloride PM2.5 LC" + }, + { + "code": "88301", + "value_represented": "Ammonium Ion PM2.5 LC" + }, + { + "code": "88302", + "value_represented": "Sodium Ion Pm2.5 LC" + }, + { + "code": "88303", + "value_represented": "Potassium Ion PM2.5 LC" + }, + { + "code": "88304", + "value_represented": "OCX Carbon PM2.5 LC" + }, + { + "code": "88305", + "value_represented": "OC CSN Unadjusted PM2.5 LC TOT" + }, + { + "code": "88306", + "value_represented": "Total Nitrate PM2.5 LC" + }, + { + "code": "88307", + "value_represented": "EC CSN PM2.5 LC TOT" + }, + { + "code": "88308", + "value_represented": "Carbonate Carbon CSN PM2.5 LC TOT" + }, + { + "code": "88309", + "value_represented": "Volatile Nitrate PM2.5 LC" + }, + { + "code": "88310", + "value_represented": "Non-volatile Nitrate PM2.5 LC" + }, + { + "code": "88311", + "value_represented": "OCX2 Carbon PM2.5 LC" + }, + { + "code": "88312", + "value_represented": "Total Carbon PM2.5 LC TOT" + }, + { + "code": "88313", + "value_represented": "Black Carbon PM2.5 at 880 nm" + }, + { + "code": "88314", + "value_represented": "UV Carbon PM2.5 at 370 nm" + }, + { + "code": "88315", + "value_represented": "Delta Carbon PM2.5 LC" + }, + { + "code": "88316", + "value_represented": "Optical EC PM2.5 LC TOT" + }, + { + "code": "88317", + "value_represented": "Black Carbon PM2.5 Corrected" + }, + { + "code": "88320", + "value_represented": "OC PM2.5 LC TOR" + }, + { + "code": "88321", + "value_represented": "EC PM2.5 LC TOR" + }, + { + "code": "88322", + "value_represented": "OCH PM2.5 LC TOT" + }, + { + "code": "88323", + "value_represented": "EH IMPROVE PM2.5 LC" + }, + { + "code": "88324", + "value_represented": "OC1 PM2.5 LC" + }, + { + "code": "88325", + "value_represented": "OC2 PM2.5 LC" + }, + { + "code": "88326", + "value_represented": "OC3 PM2.5 LC" + }, + { + "code": "88327", + "value_represented": "OC4 PM2.5 LC" + }, + { + "code": "88328", + "value_represented": "OP PM2.5 LC TOR" + }, + { + "code": "88329", + "value_represented": "EC1 PM2.5 LC" + }, + { + "code": "88330", + "value_represented": "EC2 PM2.5 LC" + }, + { + "code": "88331", + "value_represented": "EC3 PM2.5 LC" + }, + { + "code": "88332", + "value_represented": "OC1 CSN Unadjusted PM2.5 LC TOT" + }, + { + "code": "88333", + "value_represented": "OC2 CSN Unadjusted PM2.5 LC TOT" + }, + { + "code": "88334", + "value_represented": "OC3 CSN Unadjusted PM2.5 LC TOT" + }, + { + "code": "88335", + "value_represented": "OC4 CSN Unadjusted PM2.5 LC TOT" + }, + { + "code": "88336", + "value_represented": "OP CSN PM2.5 LC TOT" + }, + { + "code": "88337", + "value_represented": "Hydrogen PM2.5 LC" + }, + { + "code": "88338", + "value_represented": "Nitrite PM2.5 LC" + }, + { + "code": "88339", + "value_represented": "Ammonium Sulfate PM2.5 LC" + }, + { + "code": "88340", + "value_represented": "Ammonium Sulfate Extinction PM2.5 LC" + }, + { + "code": "88341", + "value_represented": "Aerosol Extinction PM2.5 LC" + }, + { + "code": "88342", + "value_represented": "Coarse Mass Extinction PM2.5 LC" + }, + { + "code": "88343", + "value_represented": "Elemental Carbon Extinction PM2.5 LC" + }, + { + "code": "88344", + "value_represented": "Ammonium Nitrate PM2.5 LC" + }, + { + "code": "88345", + "value_represented": "Ammonium Nitrate Extinction PM2.5 LC" + }, + { + "code": "88346", + "value_represented": "Organic Carbon Extinction PM2.5 LC" + }, + { + "code": "88347", + "value_represented": "Particle Light Scatter" + }, + { + "code": "88348", + "value_represented": "Soil PM2.5 LC" + }, + { + "code": "88349", + "value_represented": "Soil Extinction PM2.5 LC" + }, + { + "code": "88350", + "value_represented": "Organic Carbon Mass PM2.5 LC" + }, + { + "code": "88355", + "value_represented": "OC CSN_Rev Unadjusted PM2.5 LC TOT" + }, + { + "code": "88357", + "value_represented": "EC CSN_Rev Unadjusted PM2.5 LC TOT" + }, + { + "code": "88360", + "value_represented": "PM 2.5 Carbon at 470 nm" + }, + { + "code": "88361", + "value_represented": "PM 2.5 Carbon at 520 nm" + }, + { + "code": "88362", + "value_represented": "PM 2.5 Carbon at 590 nm" + }, + { + "code": "88363", + "value_represented": "PM 2.5 Carbon at 660 nm" + }, + { + "code": "88364", + "value_represented": "Infrared PM 2.5 Carbon at 950 nm" + }, + { + "code": "88370", + "value_represented": "OC CSN_Rev Unadjusted PM2.5 LC TOR" + }, + { + "code": "88374", + "value_represented": "OC1 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88375", + "value_represented": "OC2 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88376", + "value_represented": "OC3 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88377", + "value_represented": "OC4 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88378", + "value_represented": "OP CSN_Rev Unadjusted PM2.5 LC TOR" + }, + { + "code": "88379", + "value_represented": "OP PM2.5 LC TOT" + }, + { + "code": "88380", + "value_represented": "EC CSN_Rev Unadjusted PM2.5 LC TOR" + }, + { + "code": "88381", + "value_represented": "EC PM2.5 LC TOT" + }, + { + "code": "88382", + "value_represented": "OC PM2.5 LC TOT" + }, + { + "code": "88383", + "value_represented": "EC1 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88384", + "value_represented": "EC2 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88385", + "value_represented": "EC3 CSN_Rev Unadjusted PM2.5 LC" + }, + { + "code": "88388", + "value_represented": "OP CSN_Rev Unadjusted PM2.5 LC TOT" + }, + { + "code": "88390", + "value_represented": "Levoglucosan PM2.5 LC" + }, + { + "code": "88391", + "value_represented": "Mannosan PM2.5 LC" + }, + { + "code": "88392", + "value_represented": "Galactosan PM2.5 LC" + }, + { + "code": "88393", + "value_represented": "1-nitropyrene PM2.5 LC" + }, + { + "code": "88395", + "value_represented": "Sea Salt (PM2.5)" + }, + { + "code": "88396", + "value_represented": "PM2.5 Carbon at 430 nm" + }, + { + "code": "88397", + "value_represented": "PM2.5 Carbon at 525 nm" + }, + { + "code": "88398", + "value_represented": "PM2.5 Carbon at 565 nm" + }, + { + "code": "88399", + "value_represented": "PM2.5 Carbon at 700 nm" + }, + { + "code": "88401", + "value_represented": "Reconstructed Mass PM2.5 LC" + }, + { + "code": "88403", + "value_represented": "Sulfate PM2.5 LC" + }, + { + "code": "88500", + "value_represented": "PM2.5 Total Atmospheric" + }, + { + "code": "88501", + "value_represented": "PM2.5 Raw Data" + }, + { + "code": "88502", + "value_represented": "Acceptable PM2.5 AQI & Speciation Mass" + }, + { + "code": "88503", + "value_represented": "PM2.5 Volatile Channel" + }, + { + "code": "92142", + "value_represented": "Mercury compounds" + } +] \ No newline at end of file diff --git a/download_scripts/US_EPA_AirNow_DOS_download.py b/download_scripts/US_EPA_AirNow_DOS_download.py new file mode 100644 index 0000000000000000000000000000000000000000..686b2719ecc490aa5abb2cae8ba28c8652aa345b --- /dev/null +++ b/download_scripts/US_EPA_AirNow_DOS_download.py @@ -0,0 +1,104 @@ +import requests +from datetime import date +from datetime import timedelta +import datetime +import pandas +import os.path +import shutil +import urllib + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + cities = ['NewDehli', 'Chennai', 'Kolkata', 'Mumbai', 'Hyderabad', 'JakartaCentral', 'JakartaSouth', 'Ulaanbaatar', 'HoChiMinhCity', 'Hanoi', 'Bogota', 'Lima', 'AddisAbabaCentral', 'AddisAbabaJacros', 'Kampala', 'Beijing', 'Shanghai', 'Guangzhou', 'Chengdu', 'Shenyang', 'Dhaka', 'AbuDhabi', 'Dubai', 'Pristina', 'KuwaitCity', 'Manama', 'Ashgabat', 'EmbassyKathmandu', 'PhoraDurbarKathmandu', 'Colombo', 'Algiers', 'BuenosAires', 'Sarajevo', 'BanjaLuka', 'Curacao', 'Dhahran', 'Jeddah', 'Riyadh', 'Astana', 'Almaty', 'Tashkent', 'Baghdad', 'Rangoon', 'Bishkek', 'Dushanbe', 'SanJose', 'Islamabad', 'Lahore', 'Karachi', 'Peshawar', 'Amman', 'Vientiane', 'Bamako', 'Antananarivo', 'GuatemalaCity', 'Libreville', 'Abidjan', 'Chisinau', 'Conakry', 'NDjamena', 'Accra', 'KualaLumpur', 'Lagos', 'Abuja', 'Doha', 'Nairobi', 'Baku', 'Cairo', 'Dakar', 'Tijuana', 'Yerevan', 'Kinshasa', 'Ouagadougou', 'SaoPaulo', 'Kigali', 'Lome', 'Asuncion', 'Belmopan', 'Manila', 'Maputo'] + variables = ["PM2.5", "OZONE"] + base_url = "https://dosairnowdata.org/dos/historical/" + + if mode == 'all': + bdate = date(2010, 1, 1) # date before record starts + edate = date.today() + timedelta(days = 365) + months = ['00'] + + os.makedirs('{}/US_EPA_AirNow_DOS/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = dl_root+'/US_EPA_AirNow_DOS/original_files/'+version+'/{}_{}_{}_YTD.csv' + storage_location = dl_root+'/US_EPA_AirNow_DOS/original_files/'+version+'/{}_{}_{}_YTD.csv' + + elif mode == 'nrt': + bdate = start + edate = stop + timedelta(days = 365) + if start.strftime('%m') == stop.strftime('%m'): # if start and end in one months, only download current month + months = [start.strftime('%m')] + else: # if they are in 2 different months, download both of them + months = [start.strftime('%m'), stop.strftime('%m')] # this month and last month to always cover last 7 days + + os.makedirs('{}/US_EPA_AirNow_DOS/original_files/{}/'.format(dl_root, 'nrt'), exist_ok=True) + download_location = dl_root+'/US_EPA_AirNow_DOS/original_files/nrt/{}_{}_{}_MTD.csv' + storage_location = dl_root+'/US_EPA_AirNow_DOS/original_files/nrt/{}_{}_{}_MTD.csv' + + + else: + print('time mode inapplicable') + + # create date array, per year + years = pandas.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + + print(years) + print(months) + + for city in cities: + + for variable in variables: + + for year in years: + + for month in months: + + if mode == 'all': + url = '{}{}/{}/{}_{}_{}_YTD.csv'.format(base_url, city, year, city, variable, year) + elif mode == 'nrt': + url = '{}{}/{}/{}_{}_{}_{}_MTD.csv'.format(base_url, city, year, city, variable, year, month) + + # download + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl) + + if r.status_code == 200: + with open(download_location.format(city, variable, year+month), 'wb') as outfile: + outfile.write(r.content) + + print('Downloaded {} {} in {}'.format(variable, year+month, city)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {} {} in {}'.format(variable, year+month, city)) + errcode = 200 + + elif r.status_code == 300: + print('No yet reported {} {} in {}'.format(variable, year+month, city)) + errcode = 200 + + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + + if n_tries == n_max_tries: + print('Failed downloading {} in {} attempts in {} seconds with error {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + # compare old and new file + """if mode == "nrt": + + same_files = compare_files(download_location.format(city, variable, year+month), storage_location.format(city, variable, year+month)) + + if same_files == True: + # delete file in temp + os.remove(download_location.format(city, variable, year+month)) + else: + # delete old file, move new file + os.remove(storage_location.format(city, variable, year+month)) + os.rename(download_location.format(city, variable, year+month), storage_location.format(city, variable, year+month))""" diff --git a/download_scripts/US_EPA_CASTNET_download.py b/download_scripts/US_EPA_CASTNET_download.py new file mode 100644 index 0000000000000000000000000000000000000000..4aff657dd9f61f78ff8e61d3e09ba9a9cd051eeb --- /dev/null +++ b/download_scripts/US_EPA_CASTNET_download.py @@ -0,0 +1,330 @@ +import requests +from datetime import date +from datetime import timedelta +import pandas +import os.path +import urllib +import time +import ssl +import zipfile +from compare_two_files import compare_files +import csv +import json + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + ssl._create_default_https_context = ssl._create_unverified_context + + variables_per_year = ["ozone", "hourly_gas"] + variables_single_file = ["drychem", "vischem"] + + base_url = "https://gaftp.epa.gov/castnet/CASTNET_Outgoing/data/" + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/'.format(dl_root, version), exist_ok=True) + + if mode == 'all': + bdate = date(1980, 1, 1) #date(1960, 1, 1) # date before record starts + edate = date.today() + timedelta(days = 365) + download_location = dl_root+'/US_EPA_CASTNET/original_files/'+version+'/{}/{}_{}.zip' + storage_location = dl_root+'/US_EPA_CASTNET/original_files/'+version+'/{}/{}_{}.zip' + + elif mode == 'nrt': + bdate = start + edate = stop + timedelta(days = 365) + download_location = dl_root+'/US_EPA_CASTNET/original_files/nrt/{}/temp/{}_{}.zip' + storage_location = dl_root+'/US_EPA_CASTNET/original_files/nrt/{}/{}_{}.zip' + version = mode + + else: + print('time mode inapplicable') + + # create date array, per year + years = pandas.date_range(bdate, edate, freq='Y').strftime('%Y').tolist() + print(mode) + + # ozone and hourly gas + for variable in variables_per_year: + + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/{}/'.format(dl_root, version, variable), exist_ok=True) + if mode == 'nrt': + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/{}/temp/'.format(dl_root, version, variable), exist_ok=True) + + for year in years: + + url = '{}{}_{}.zip'.format(base_url, variable, year) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, verify=False) + + if r.status_code == 200: + with open(storage_location.format(variable, variable, year), 'wb') as file: + file.write(r.content) + urllib.request.urlretrieve(url, storage_location.format(variable, variable, year)) + print('Downloaded {}'.format(url)) + + # unzip + with zipfile.ZipFile(storage_location.format(variable, variable, year), 'r') as zip_ref: + zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, year))) + os.remove(storage_location.format(variable, variable, year)) + + errcode = r.status_code + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + time.sleep(1) + + + + # drychem and vichem + for variable in variables_single_file: + + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/{}/'.format(dl_root, version, variable), exist_ok=True) + if mode == 'nrt': + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/{}/temp/'.format(dl_root, version, variable), exist_ok=True) + + url = '{}{}.zip'.format(base_url, variable) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, verify=False) + + if r.status_code == 200: + with open(storage_location.format(variable, variable, "allyears"), 'wb') as file: + file.write(r.content) + #urllib.request.urlretrieve(url, storage_location.format(variable, variable, "allyears")) + print('Downloaded {}'.format(url)) + + # unzip + with zipfile.ZipFile(storage_location.format(variable, variable, "allyears"), 'r') as zip_ref: + zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, "allyears"))) + os.remove(storage_location.format(variable, variable, "allyears")) + + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + time.sleep(1) + + + # compare old and new file + # if mode == 'nrt': + # print('hola') + # for variable in variables_per_year: + # print(variable) + # # compare old and new files after download + # same_files = compare_files(download_location.format(variable, variable, year), storage_location.format(variable, variable, year)) + # print(same_files) + + # if same_files == True: + # # delete file in temp + # os.remove(download_location.format(variable, variable, year)) + # else: + # # delete old file, move new file + # os.remove(storage_location.format(variable, variable, year)) + # os.rename(download_location.format(variable, variable, year), storage_location.format(variable, variable, year)) + + # # unzip + # with zipfile.ZipFile(storage_location.format(variable, variable, year), 'r') as zip_ref: + # zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, year))) + # # do not delete zip file because it is needed for comparison + + + + # # vischem and drychem + # for variable in variables_single_file: + + # # compare old and new files after download + # same_files = compare_files(download_location.format(variable, variable, "allyears"), storage_location.format(variable, variable, "allyears")) + + # if same_files == True: + # # delete file in temp + # os.remove(download_location.format(variable, variable, "allyears")) + # else: + # # delete old file, move new file + # os.remove(storage_location.format(variable, variable, "allyears")) + # os.rename(download_location.format(variable, variable, "allyears"), storage_location.format(variable, variable, "allyears")) + + # # unzip + # with zipfile.ZipFile(storage_location.format(variable, variable, "allyears"), 'r') as zip_ref: + # zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, "allyears"))) + # os.remove(storage_location.format(variable, variable, "allyears")) + + + # unzip + # if mode == "all": + # for variable in variables_per_year: + # for year in years: + # try: + # with zipfile.ZipFile(storage_location.format(variable, variable, year), 'r') as zip_ref: + # zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, year))) + # os.remove(storage_location.format(variable, variable, year)) + # except: + # print("No data to extract in {}".format(year)) + + + # for variable in variables_single_file: + # with zipfile.ZipFile(storage_location.format(variable, variable, "allyears"), 'r') as zip_ref: + # zip_ref.extractall(os.path.dirname(storage_location.format(variable, variable, "allyears"))) + # os.remove(storage_location.format(variable, variable, "allyears")) + + + # download WET DEPOSITION data =============================================================================== + os.makedirs('{}/US_EPA_CASTNET/original_files/{}/{}/'.format(dl_root, version, 'wetdep'), exist_ok=True) + + urls = {'https://gaftp.epa.gov/castnet/CASTNET_Outgoing/data/total_deposition_composition.zip': 'total_dep', + 'https://gaftp.epa.gov/castnet/CASTNET_Outgoing/data/wet_concentration.zip': 'wet_conc', + 'https://gaftp.epa.gov/castnet/CASTNET_Outgoing/data/wetchem.zip': 'wet_chem'} + + for url in urls: + file_name = urls[url] + n_tries = 0 + errcode = 999 + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, verify=False) + if r.status_code == 200: + with open(download_location.format('wetdep', file_name, ''), 'wb') as file: + file.write(r.content) + print('Downloaded {}'.format(url)) + + # unzip + with zipfile.ZipFile(download_location.format('wetdep', file_name, ''), 'r') as zip_ref: + zip_ref.extractall(os.path.dirname(download_location.format('wetdep', file_name, ''))) + os.remove(download_location.format('wetdep', file_name, '')) + + errcode = r.status_code + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + ssl._create_default_https_context = ssl._create_unverified_context + download_location = '{}/US_EPA_CASTNET/metadata/{}/network_provided/'.format(dl_root, version) + + today = date.today().strftime('%Y%m%d') + url = 'https://gaftp.epa.gov/castnet/CASTNET_Outgoing/data/site.zip' + n_tries = 0 + errcode = 999 + + # download recent metadata file + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, verify=False) + + if r.status_code == 200: + urllib.request.urlretrieve(url, download_location+'CASTNET_META_{}.zip'.format(today)) + print('Downloaded {}'.format(url)) + errcode = r.status_code + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + with zipfile.ZipFile(download_location+'CASTNET_META_{}.zip'.format(today), 'r') as zip_ref: + zip_ref.extractall(os.path.dirname(download_location)) + os.remove(download_location+'CASTNET_META_{}.zip'.format(today)) + + # rename file + os.rename(download_location+'site.csv', download_location+'CASTNET_META_{}.csv'.format(today)) + + # =================================================================================================== + """# create json from original metadata file + json_metadata = {} + with open('{}/US_EPA_CASTNET/metadata/{}/network_provided/CASTNET_META.csv'.format(dl_root, version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['SITE_ID'] + update_date = row['UPDATE_DATE'][:10] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_EPA_CASTNET/metadata/{}/processed/CASTNET_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + # create json in desired shape from csv + json_metadata_now = {} + with open('{}/US_EPA_CASTNET/metadata/{}/network_provided/CASTNET_META_{}.csv'.format(dl_root, version, today)) as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['SITE_ID'] + update_date = row['UPDATE_DATE'][:10] + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + # read standardised file to compare! + with open('{}/US_EPA_CASTNET/metadata/{}/processed/CASTNET_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1]), json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + # safe + with open('{}/US_EPA_CASTNET/metadata/{}/processed/CASTNET_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/US_NADP_AIRMoN_download.py b/download_scripts/US_NADP_AIRMoN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..60907901974eb0e98aa77213dd37ba720dcff53e --- /dev/null +++ b/download_scripts/US_NADP_AIRMoN_download.py @@ -0,0 +1,145 @@ +import requests +from datetime import date +import os.path +import time +import json +import csv + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/national-trends-network/' + + if mode == 'all': + os.makedirs('{}/US_NADP_AIRMoN/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_AIRMoN/original_files/{}/'.format(dl_root,version) + + elif mode == 'nrt': + os.makedirs('{}/US_NADP_AIRMoN/original_files/nrt/'.format(dl_root), exist_ok=True) + download_location = '{}/US_NADP_AIRMoN/original_files/nrt/'.format(dl_root) + + else: + print('time mode inapplicable') + + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + url = 'https://nadp.slh.wisc.edu/wp-content/uploads/2021/09/AIRMoN-ALL.csv' + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location+'AIRMoN-ALL.csv', 'wb') as file: + file.write(r.content) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + os.makedirs('{}/US_NADP_AIRMoN/metadata/{}/network_provided/'.format(dl_root,version), exist_ok=True) + os.makedirs('{}/US_NADP_AIRMoN/metadata/{}/processed/'.format(dl_root,version), exist_ok=True) + + download_location = '{}/US_NADP_AIRMoN/metadata/{}/network_provided/'.format(dl_root, version) + today = date.today() + + Headers = {'User-Agent': 'Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148'} + url = 'https://nadp.slh.wisc.edu/wp-content/uploads/2021/09/AIRMoNsites.csv' + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + if r.status_code == 200: + with open(download_location+'US_NADP_AIRMoN_META_{}.csv'.format(today.strftime('%Y%m%d')), 'wb') as file: + file.write(r.content) + print('Downloaded {}'.format(url)) + errcode = r.status_code + + elif r.status_code == 404: + print('No {}'.format(url)) + errcode = 200 #skip + else: + # try again + print('Response error {}, attempt {}'.format(r.status_code, n_tries)) + errcode = r.status_code + n_tries += 1 + time.sleep(n_tries ** 2) # wait a lil more every time + + if n_tries == n_max_tries: + print('Failed downloading {} {} times in {} seconds, error code {}'.format(url, n_tries, max_time_per_dl, errcode)) + + + # create json from original metadata file ===================================================================================== + json_metadata = {} + with open('{}/US_NADP_AIRMoN/metadata/{}/network_provided/US_NADP_AIRMoN_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteid'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_NADP_AIRMoN/metadata/{}/processed/US_NADP_AIRMoN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'US_NADP_AIRMoN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteid'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/US_NADP_AIRMoN/metadata/{}/processed/US_NADP_AIRMoN_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/US_NADP_AIRMoN/metadata/{}/processed/US_NADP_AIRMoN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + diff --git a/download_scripts/US_NADP_AMNet_download.py b/download_scripts/US_NADP_AMNet_download.py new file mode 100644 index 0000000000000000000000000000000000000000..ce5b8d8fc4324534f6e2be269329fc17297d0216 --- /dev/null +++ b/download_scripts/US_NADP_AMNet_download.py @@ -0,0 +1,238 @@ +from selenium import webdriver +from datetime import date +import os.path +import time +import csv +import json + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC +from selenium.common.exceptions import TimeoutException +from selenium.common.exceptions import WebDriverException + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/atmospheric-mercury-network/' + + if mode == 'all': + os.makedirs('{}/US_NADP_AMNet/original_files/{}/temp/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_AMNet/original_files/{}/temp/'.format(dl_root, version) + + elif mode == 'nrt': + os.makedirs('{}/US_NADP_AMNet/original_files/nrt/temp/'.format(dl_root), exist_ok=True) + download_location = '{}/US_NADP_AMNet/original_files/nrt/temp/'.format(dl_root) + + else: + print('time mode inapplicable') + + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + + try: + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'sites-list'))) # wait till loaded + + # select time resolution + dropdown_element = driver.find_element(By.ID, 'sites-list') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + #print(options) + + select.select_by_visible_text("All Sites") + + #WebDriverWait(driver, max_time_per_dl).until(EC.element_to_be_clickable((By.ID, 'invalid'))) # wait till loaded + time.sleep(max_time_per_dl) + invalid_box = driver.find_element(By.ID, 'invalid') + invalid_box.click() + + # download + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'generate-button-text'))) # wait till loaded + time.sleep(max_time_per_dl) + driver.find_element(By.ID, 'generate-button-text').click() + + # wait until download finished + while not os.path.exists("{}AMNET-ALL-h.csv".format(download_location)): + time.sleep(1) + + if os.path.isfile("{}AMNET-ALL-h.csv".format(download_location)): + print('AMNET-ALL-h.csv download successful') + errcode = 200 + + except TimeoutException as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + except Exception as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + driver.close() + + if n_tries == n_max_tries: + print('Failed downloading US_NADP_AMNet data {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + os.rename("{}AMNET-ALL-h.csv".format(download_location), "{}/US_NADP_AMNet/original_files/{}/AMNET-ALL-h.csv".format(dl_root, version)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/atmospheric-mercury-network/' + os.makedirs('{}/US_NADP_AMNet/metadata/{}/network_provided/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_AMNet/metadata/{}/network_provided/'.format(dl_root, version) + today = date.today() + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + n_tries = 0 + errcode = 999 + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + driver.maximize_window() + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + + #WebDriverWait(driver, max_time_per_dl).until(EC.element_to_be_clickable((By.ID, 'invalid'))) # wait till loaded + time.sleep(max_time_per_dl) + invalid_box = driver.find_element(By.ID, 'download-show-inactive') + driver.execute_script("arguments[0].click()", invalid_box) + + + # download + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'generate-button-text'))) # wait till loaded + time.sleep(max_time_per_dl) + bttn = driver.find_element(By.ID, 'network-data-submit') + driver.execute_script("arguments[0].click()", bttn) + + + # wait until download finished + while not os.path.exists(download_location+'amnet.csv'): + time.sleep(1) + + if os.path.isfile(download_location+'amnet.csv'): + print('Amnet metadata download successful') + errcode = 200 + continue + + except TimeoutException as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + continue + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + except: + print("Unknown error") + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + continue + + + if n_tries == n_max_tries: + print('Failed downloading AMNet metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + driver.close() + + os.rename(download_location+'amnet.csv', download_location+'US_NADP_AMNet_META_{}.csv'.format(today.strftime('%Y%m%d'))) + + # create json from original metadata file ===================================================================================== + """json_metadata = {} + with open('{}/US_NADP_AMNet/metadata/{}/network_provided/US_NADP_AMNet_META.csv'.format(dl_root, version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_NADP_AMNet/metadata/{}/processed/US_NADP_AMNet_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'US_NADP_AMNet_META_{}.csv'.format(today.strftime('%Y%m%d'))) as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/US_NADP_AMNet/metadata/{}/processed/US_NADP_AMNet_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/US_NADP_AMNet/metadata/{}/processed/US_NADP_AMNet_META.json'.format(dl_root, version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) \ No newline at end of file diff --git a/download_scripts/US_NADP_AMoN_download.py b/download_scripts/US_NADP_AMoN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..96c0f27585c29e0aa0584d5d11ebcf35c23fd47c --- /dev/null +++ b/download_scripts/US_NADP_AMoN_download.py @@ -0,0 +1,225 @@ +from selenium import webdriver +from datetime import date +import os.path +import time +import json +import csv + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC + + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/ammonia-monitoring-network/' + + if mode == 'all': + os.makedirs('{}/US_NADP_AMoN/original_files/{}/temp/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_AMoN/original_files/{}/temp/'.format(dl_root,version) + + elif mode == 'nrt': + os.makedirs('{}/US_NADP_AMoN/original_files/nrt/temp/'.format(dl_root), exist_ok=True) + download_location = '{}/US_NADP_AMoN/original_files/nrt/temp/'.format(dl_root) + + else: + print('time mode inapplicable') + + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'sites-list'))) # wait till loaded + + dropdown_element = driver.find_element(By.ID, 'data-type') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("Bi-weekly") + time.sleep(max_time_per_dl) + + dropdown_element = driver.find_element(By.ID, 'sites-list') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("All Sites") + time.sleep(max_time_per_dl) + + invalid_box = driver.find_element(By.ID, 'invalid') + invalid_box.click() + time.sleep(max_time_per_dl) + + # download + driver.find_element(By.ID, 'generate-button-text').click() + + # wait until download finished + while not os.path.exists("{}AMoN-ALL-W-i.csv".format(download_location)): + time.sleep(1) + + if os.path.isfile("{}AMoN-ALL-W-i.csv".format(download_location)): + print('AMoN-ALL-W-i.csv download successful') + errcode = 200 + continue + + except TimeoutException as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + except WebDriverException as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + except Exception as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + driver.close() + + if n_tries == n_max_tries: + print('Failed downloading US_NADP_AMoN data {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + os.rename("{}AMoN-ALL-W-i.csv".format(download_location), "{}/US_NADP_AMoN/original_files/{}/AMoN-ALL-W-i.csv".format(dl_root,version)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/ammonia-monitoring-network/' + os.makedirs('{}/US_NADP_AMNet/metadata/{}/network_provided/'.format(dl_root,version), exist_ok=True) + download_location = '{}/US_NADP_AMoN/metadata/{}/network_provided/'.format(dl_root, version) + today = date.today() + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + n_tries = 0 + errcode = 999 + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + driver.maximize_window() + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + + #WebDriverWait(driver, max_time_per_dl).until(EC.element_to_be_clickable((By.ID, 'invalid'))) # wait till loaded + time.sleep(max_time_per_dl) + invalid_box = driver.find_element(By.ID, 'download-show-inactive') + driver.execute_script("arguments[0].click()", invalid_box) + + # download + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'generate-button-text'))) # wait till loaded + time.sleep(max_time_per_dl) + bttn = driver.find_element(By.ID, 'network-data-submit') + driver.execute_script("arguments[0].click()", bttn) + + + # wait until download finished + while not os.path.exists(download_location+'amon.csv'): + time.sleep(1) + + if os.path.isfile(download_location+'amon.csv'): + print('Amon metadata download successful') + errcode = 200 + continue + + except Exception as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + continue + + if n_tries == n_max_tries: + print('Failed downloading AMoN metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + driver.close() + + os.rename(download_location+'amon.csv', download_location+'US_NADP_AMoN_META_{}.csv'.format(today.strftime('%Y%m%d'))) + + # create json from original metadata file ===================================================================================== + """json_metadata = {} + with open('{}/US_NADP_AMoN/metadata/{}/network_provided/US_NADP_AMoN_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_NADP_AMoN/metadata/{}/processed/US_NADP_AMoN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + + """ + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'US_NADP_AMoN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/US_NADP_AMoN/metadata/{}/processed/US_NADP_AMoN_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/US_NADP_AMoN/metadata/{}/processed/US_NADP_AMoN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + diff --git a/download_scripts/US_NADP_MDN_download.py b/download_scripts/US_NADP_MDN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..f83392ec8591dfb73e286649d46defd5d144ba11 --- /dev/null +++ b/download_scripts/US_NADP_MDN_download.py @@ -0,0 +1,213 @@ +from selenium import webdriver +from datetime import date +import os.path +import time +import json +import csv + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/mercury-deposition-network/' + + if mode == 'all': + os.makedirs('{}/US_NADP_MDN/original_files/{}/temp/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_MDN/original_files/{}/temp/'.format(dl_root,version) + + elif mode == 'nrt': + os.makedirs('{}/US_NADP_MDN/original_files/nrt/temp/'.format(dl_root), exist_ok=True) + download_location = '{}/US_NADP_MDN/original_files/nrt/temp/'.format(dl_root) + + else: + print('time mode inapplicable') + + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'data-type'))) # wait till loaded + + dropdown_element = driver.find_element(By.ID, 'data-type') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("Weekly") + time.sleep(max_time_per_dl) + + dropdown_element = driver.find_element(By.ID, 'sites-list') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("All Sites") + time.sleep(max_time_per_dl) + + invalid_box = driver.find_element(By.ID, 'invalid') + invalid_box.click() + time.sleep(max_time_per_dl) + + # download + driver.find_element(By.ID, 'generate-button-text').click() + + # wait until download finished + while not os.path.exists("{}MDN-ALL-W-i.csv".format(download_location)): + time.sleep(1) + + if os.path.isfile("{}MDN-ALL-W-i.csv".format(download_location)): + print('MDN-ALL-W-i.csv download successful') + errcode = 200 + continue + + except Exception as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + driver.close() + + if n_tries == n_max_tries: + print('Failed downloading US_NADP_MDN data {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + os.rename("{}MDN-ALL-W-i.csv".format(download_location), "{}/US_NADP_MDN/original_files/{}/MDN-ALL-W-i.csv".format(dl_root,version)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/mercury-deposition-network/' + os.makedirs('{}/US_NADP_MDN/metadata/{}/network_provided/'.format(dl_root,version), exist_ok=True) + os.makedirs('{}/US_NADP_MDN/metadata/{}/processed/'.format(dl_root,version), exist_ok=True) + + download_location = '{}/US_NADP_MDN/metadata/{}/network_provided/'.format(dl_root, version) + today = date.today() + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + n_tries = 0 + errcode = 999 + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + driver.maximize_window() + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + + #WebDriverWait(driver, max_time_per_dl).until(EC.element_to_be_clickable((By.ID, 'invalid'))) # wait till loaded + time.sleep(max_time_per_dl) + invalid_box = driver.find_element(By.ID, 'download-show-inactive') + driver.execute_script("arguments[0].click()", invalid_box) + + # download + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'generate-button-text'))) # wait till loaded + time.sleep(max_time_per_dl) + bttn = driver.find_element(By.ID, 'network-data-submit') + driver.execute_script("arguments[0].click()", bttn) + + + # wait until download finished + while not os.path.exists(download_location+'mdn.csv'): + time.sleep(1) + + if os.path.isfile(download_location+'mdn.csv'): + print('MDN metadata download successful') + errcode = 200 + continue + + except Exception as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + continue + + if n_tries == n_max_tries: + print('Failed downloading MDN metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + driver.close() + + os.rename(download_location+'mdn.csv', download_location+'US_NADP_MDN_META_{}.csv'.format(today.strftime('%Y%m%d'))) + + # create json from original metadata file ===================================================================================== + """json_metadata = {} + with open('{}/US_NADP_MDN/metadata/{}/network_provided/US_NADP_MDN_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_NADP_MDN/metadata/{}/processed/US_NADP_MDN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4))""" + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'US_NADP_MDN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/US_NADP_MDN/metadata/{}/processed/US_NADP_MDN_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/US_NADP_MDN/metadata/{}/processed/US_NADP_MDN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + diff --git a/download_scripts/US_NADP_NTN_download.py b/download_scripts/US_NADP_NTN_download.py new file mode 100644 index 0000000000000000000000000000000000000000..1b4b32856f56fbb25f9aa268dc45d4a4a62b2d14 --- /dev/null +++ b/download_scripts/US_NADP_NTN_download.py @@ -0,0 +1,213 @@ +from selenium import webdriver +from datetime import date +import os.path +import time +import json +import csv + +from chromedriver_py import binary_path +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support.ui import Select +from selenium.webdriver.support import expected_conditions as EC + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/national-trends-network/' + + if mode == 'all': + os.makedirs('{}/US_NADP_NTN/original_files/{}/temp/'.format(dl_root, version), exist_ok=True) + download_location = '{}/US_NADP_NTN/original_files/{}/temp/'.format(dl_root,version) + + elif mode == 'nrt': + os.makedirs('{}/US_NADP_NTN/original_files/nrt/temp/'.format(dl_root), exist_ok=True) + download_location = '{}/US_NADP_NTN/original_files/nrt/temp/'.format(dl_root) + + else: + print('time mode inapplicable') + + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + n_tries = 0 + errcode = 999 + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'data-type'))) # wait till loaded + + dropdown_element = driver.find_element(By.ID, 'data-type') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("Weekly") + time.sleep(max_time_per_dl) + + dropdown_element = driver.find_element(By.ID, 'sites-list') + select = Select(dropdown_element) + options = [opt.get_attribute("text") for opt in select.options] + select.select_by_visible_text("All Sites") + time.sleep(max_time_per_dl) + + invalid_box = driver.find_element(By.ID, 'invalid') + invalid_box.click() + time.sleep(max_time_per_dl) + + # download + driver.find_element(By.ID, 'generate-button-text').click() + + # wait until download finished + while not os.path.exists("{}NTN-ALL-W-i.csv".format(download_location)): + time.sleep(1) + + if os.path.isfile("{}NTN-ALL-W-i.csv".format(download_location)): + print('NTN-ALL-W-i.csv download successful') + errcode = 200 + continue + + except Exception as e: + print(e) + n_tries = n_tries+1 + print("Number of tries: {}".format(n_tries)) + continue + + driver.close() + + if n_tries == n_max_tries: + print('Failed downloading US_NADP_NTN data {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + os.rename("{}NTN-ALL-W-i.csv".format(download_location), "{}/US_NADP_NTN/original_files/{}/NTN-ALL-W-i.csv".format(dl_root,version)) + + + + +def download_metadata(n_max_tries, max_time_per_dl, version, dl_root): + + baseurl = 'https://nadp.slh.wisc.edu/networks/national-trends-network/' + os.makedirs('{}/US_NADP_NTN/metadata/{}/network_provided/'.format(dl_root,version), exist_ok=True) + os.makedirs('{}/US_NADP_NTN/metadata/{}/processed/'.format(dl_root,version), exist_ok=True) + + download_location = '{}/US_NADP_NTN/metadata/{}/network_provided/'.format(dl_root, version) + today = date.today() + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + + n_tries = 0 + errcode = 999 + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + driver.maximize_window() + + while (n_tries < n_max_tries) and (errcode != 200): + try: + # open url + driver.get(baseurl) + + #WebDriverWait(driver, max_time_per_dl).until(EC.element_to_be_clickable((By.ID, 'invalid'))) # wait till loaded + time.sleep(max_time_per_dl) + invalid_box = driver.find_element(By.ID, 'download-show-inactive') + driver.execute_script("arguments[0].click()", invalid_box) + + # download + #WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.ID, 'generate-button-text'))) # wait till loaded + time.sleep(max_time_per_dl) + bttn = driver.find_element(By.ID, 'network-data-submit') + driver.execute_script("arguments[0].click()", bttn) + + + # wait until download finished + while not os.path.exists(download_location+'ntn.csv'): + time.sleep(1) + + if os.path.isfile(download_location+'ntn.csv'): + print('NTN metadata download successful') + errcode = 200 + continue + + except Exception as e: + print(e) + max_time_per_dl = max_time_per_dl*2 # set waiting time to double + n_tries = n_tries+1 + continue + + if n_tries == n_max_tries: + print('Failed downloading NTN metadata {} times in {} seconds'.format(n_tries, max_time_per_dl)) + + driver.close() + + os.rename(download_location+'ntn.csv', download_location+'US_NADP_NTN_META_{}.csv'.format(today.strftime('%Y%m%d'))) + + # create json from original metadata file ===================================================================================== + """json_metadata = {} + with open('{}/US_NADP_NTN/metadata/{}/network_provided/US_NADP_NTN_META.csv'.format(dl_root,version), 'r') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata[key] = row + + with open('{}/US_NADP_NTN/metadata/{}/processed/US_NADP_NTN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4))""" + + + # create json in desired shape from current metadata file + json_metadata_now = {} + with open(download_location+'US_NADP_NTN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: + csv_filedata = csv.DictReader(file) + + for row in csv_filedata: + key = row['siteId'] + update_date = today.strftime('%Y-%m-%d') + for parameter in row: + row[parameter] = {'values': [row[parameter]], 'update_time': [update_date]} # create inner dictionary for every parameter + json_metadata_now[key] = row + + + # read standardised file to compare! + with open('{}/US_NADP_NTN/metadata/{}/processed/US_NADP_NTN_META.json'.format(dl_root,version), 'r', encoding='utf-8') as f: + json_metadata = json.loads(f.read()) + + for station in json_metadata: # loop through all the old stations + if station in json_metadata_now.keys(): # if station is in current meta data, go on + for parameter in json_metadata[station]: + if json_metadata[station][parameter]['values'][-1] != json_metadata_now[station][parameter]['values'][0]: # compare last entry in standardised file to value in new file + # if different value, append the standardised metadeta file + print("old {} --- new {}".format(json_metadata[station][parameter]['values'][-1], json_metadata_now[station][parameter]['values'][0])) + json_metadata[station][parameter]['values'].append(json_metadata_now[station][parameter]['values'][0]) + json_metadata[station][parameter]['update_time'].append(json_metadata_now[station][parameter]['update_time'][0]) + else: + pass + else: + print('Station {} was abolished'.format(station)) + + for station in json_metadata_now: # loop through all the new stations + if station in json_metadata.keys(): # if station is in old meta data + pass # comparison was done before + else: # new station appeared! + print('New station {}'.format(station)) + json_metadata.update({station: json_metadata_now[station]}) + + + # safe + with open('{}/US_NADP_NTN/metadata/{}/processed/US_NADP_NTN_META.json'.format(dl_root,version), 'w', encoding='utf-8') as f: + f.write(json.dumps(json_metadata, indent=4)) + diff --git a/download_scripts/WMO_WDCGG_download.py b/download_scripts/WMO_WDCGG_download.py new file mode 100644 index 0000000000000000000000000000000000000000..0aea535dd6fa46f09ad410c061b5c4ad1fdef004 --- /dev/null +++ b/download_scripts/WMO_WDCGG_download.py @@ -0,0 +1,92 @@ +from selenium import webdriver +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +from bs4 import BeautifulSoup +from chromedriver_py import binary_path + +import tarfile +import requests +import time +import os.path +import os +import shutil + + + +def download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root): + + # paths and variables + variables = ["co", "ch4"] + var = ["CO", "CH4"] # name of directories + + login_url = 'https://gaw.kishou.go.jp/login/user' + url = 'https://gaw.kishou.go.jp/search/gas_species/{}/latest' + + + if mode == "all": + os.makedirs('{}/WMO_WDCGG/original_files/{}/'.format(dl_root, version), exist_ok=True) + download_location = "{}/WMO_WDCGG/original_files/{}/".format(dl_root, version) + + elif mode == "nrt": + os.makedirs('{}/WMO_WDCGG/original_files/nrt'.format(dl_root), exist_ok=True) + download_location = "{}/WMO_WDCGG/original_files/nrt/".format(dl_root) + + # set up driver + options = Options() + prefs = {'download.default_directory' : download_location} + options.add_experimental_option('prefs', prefs) + options.add_argument("--no-sandbox") + options.add_argument("--headless") + svc = webdriver.ChromeService(executable_path=binary_path) + driver = webdriver.Chrome(service=svc, options=options) + + # open url + driver.get(login_url) + time.sleep(2) + + # login + email = driver.find_element(By.ID, "uid") + email.send_keys("raphael.grodofzig@bsc.es") + passwd = driver.find_element(By.ID, "pwd") + passwd.send_keys("IbRGaH66") + time.sleep(1) + driver.find_element(By.ID, "loginbt").click() + print("Successfully logged in") + time.sleep(2) + + i=0 + for variable in variables: + + driver.get(url.format(variable)) + + WebDriverWait(driver, max_time_per_dl).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, "button[class='btn'][type='submit']"))) # wait till loaded + + # start download + driver.find_element(By.CSS_SELECTOR, "button[class='btn'][type='submit']").click() + print(variable) + + # wait until download finished + while not os.path.exists("{}{}_latest.txt.tar.gz".format(download_location, variable)): + time.sleep(1) + + if os.path.isfile("{}{}_latest.txt.tar.gz".format(download_location, variable)): + print('{} download successful'.format(variable)) + + # untar + with tarfile.open("{}{}_latest.txt.tar.gz".format(download_location, variable)) as file: + file.extractall(download_location) + + # move files + shutil.rmtree(download_location+var[i]) # remove old data + shutil.move(download_location+"txt/"+variable, download_location+var[i]) + shutil.rmtree(download_location+"txt/") + + + os.remove("{}{}_latest.txt.tar.gz".format(download_location, variable)) + i=i+1 + + + driver.close() \ No newline at end of file diff --git a/download_scripts/__pycache__/AERONET_v3_lev15_download.cpython-39.pyc b/download_scripts/__pycache__/AERONET_v3_lev15_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6890e358c10a30494af7dabc4167ed75ce398f7 Binary files /dev/null and b/download_scripts/__pycache__/AERONET_v3_lev15_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/AERONET_v3_lev20_download.cpython-39.pyc b/download_scripts/__pycache__/AERONET_v3_lev20_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52d200421d08791873d86623b3d6d51eb06a0a3e Binary files /dev/null and b/download_scripts/__pycache__/AERONET_v3_lev20_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/AERONETv3_download.cpython-39.pyc b/download_scripts/__pycache__/AERONETv3_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..329427a041f7853aaaf1a964d1e0a5b5b2fe96a5 Binary files /dev/null and b/download_scripts/__pycache__/AERONETv3_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/BJMEMC_download.cpython-39.pyc b/download_scripts/__pycache__/BJMEMC_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e638b5a4b70770edfb4f4002945a2d11dec66879 Binary files /dev/null and b/download_scripts/__pycache__/BJMEMC_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/CANADA_NAPS_download.cpython-39.pyc b/download_scripts/__pycache__/CANADA_NAPS_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f60797dcf1abc837c14a54aac0652f58ba091fff Binary files /dev/null and b/download_scripts/__pycache__/CANADA_NAPS_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/CAPMoN_download.cpython-39.pyc b/download_scripts/__pycache__/CAPMoN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8bd55b05e55c2faf272937278ef026745ba4f90 Binary files /dev/null and b/download_scripts/__pycache__/CAPMoN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/CHILE_SINCA_download.cpython-39.pyc b/download_scripts/__pycache__/CHILE_SINCA_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d81108066b72729d4458eabe545468a459ca4150 Binary files /dev/null and b/download_scripts/__pycache__/CHILE_SINCA_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/CNEMC_download.cpython-39.pyc b/download_scripts/__pycache__/CNEMC_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef648cf9c6cf3a9b73a7e2feb70448eb5cc6a606 Binary files /dev/null and b/download_scripts/__pycache__/CNEMC_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/EANET_download.cpython-39.pyc b/download_scripts/__pycache__/EANET_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a9ded31766e63be70f3c65538457fb16969f74d2 Binary files /dev/null and b/download_scripts/__pycache__/EANET_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/EANET_metadata.cpython-39.pyc b/download_scripts/__pycache__/EANET_metadata.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8a3745c4d4b0f3408da3d3ce842a82724a07584 Binary files /dev/null and b/download_scripts/__pycache__/EANET_metadata.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/EBAS_download.cpython-39.pyc b/download_scripts/__pycache__/EBAS_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1204e16b1cf248ab7f1e4929b9819f56d8953f7f Binary files /dev/null and b/download_scripts/__pycache__/EBAS_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/EEA_AQ_eReporting_download.cpython-39.pyc b/download_scripts/__pycache__/EEA_AQ_eReporting_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88be801d5584983d5453f95378b806c554e761e9 Binary files /dev/null and b/download_scripts/__pycache__/EEA_AQ_eReporting_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/GHOST_standards.cpython-39.pyc b/download_scripts/__pycache__/GHOST_standards.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a03ff38489265ba1b5f87ca727edc3107a635c8f Binary files /dev/null and b/download_scripts/__pycache__/GHOST_standards.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/JAPAN_NIES_download.cpython-39.pyc b/download_scripts/__pycache__/JAPAN_NIES_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ad8e8b95c71caa5af34e232d7fa38c4f64cc0211 Binary files /dev/null and b/download_scripts/__pycache__/JAPAN_NIES_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/MEXICO_CDMX_download.cpython-39.pyc b/download_scripts/__pycache__/MEXICO_CDMX_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6b0ab066470f39a0991d1ac2a36b322c61ddba9 Binary files /dev/null and b/download_scripts/__pycache__/MEXICO_CDMX_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/MITECO_download.cpython-39.pyc b/download_scripts/__pycache__/MITECO_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..44bffe82dd0d7c3c5ae4e8afb4bd28518346769d Binary files /dev/null and b/download_scripts/__pycache__/MITECO_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/NOAA_ISD_download.cpython-39.pyc b/download_scripts/__pycache__/NOAA_ISD_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b682977c45127f05b1ee4c059c6575b7db2c76c2 Binary files /dev/null and b/download_scripts/__pycache__/NOAA_ISD_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/NZ_ECAN_download.cpython-39.pyc b/download_scripts/__pycache__/NZ_ECAN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e84e083a22372a42b87c6d72600c25b02254a64b Binary files /dev/null and b/download_scripts/__pycache__/NZ_ECAN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/NZ_LAWA_download.cpython-39.pyc b/download_scripts/__pycache__/NZ_LAWA_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..afebee44cc3fff7518d5a27288b35c8a98fbe308 Binary files /dev/null and b/download_scripts/__pycache__/NZ_LAWA_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/UK_AIR_download.cpython-39.pyc b/download_scripts/__pycache__/UK_AIR_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7a4572920d39770f06aecb4b7d1a103ade7c60f Binary files /dev/null and b/download_scripts/__pycache__/UK_AIR_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_EPA_AQS_download.cpython-39.pyc b/download_scripts/__pycache__/US_EPA_AQS_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84579e58d7c8708840fc0cc11d80e5e37b766c2c Binary files /dev/null and b/download_scripts/__pycache__/US_EPA_AQS_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_EPA_AirNow_DOS_download.cpython-39.pyc b/download_scripts/__pycache__/US_EPA_AirNow_DOS_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1e8c95cb14c84d14b78ecb5d3f2afae3fb1a690d Binary files /dev/null and b/download_scripts/__pycache__/US_EPA_AirNow_DOS_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_EPA_CASTNET_download.cpython-39.pyc b/download_scripts/__pycache__/US_EPA_CASTNET_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0d5e8bfd23e6435d666111cb9b0f6808f2660f33 Binary files /dev/null and b/download_scripts/__pycache__/US_EPA_CASTNET_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_AIRMON_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_AIRMON_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3ba84199e8de071cc068c11523eac3bde4b7a019 Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_AIRMON_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_AIRMoN_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_AIRMoN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2c4a0ac2ee5896aff80f8636c5cf64b4be78f9d8 Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_AIRMoN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_AMNet_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_AMNet_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c5c2578915b20323005e06d892b51d06cf9f4511 Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_AMNet_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_AMoN_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_AMoN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc699fb6702b260a193b754e5c87eb60b83b5acd Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_AMoN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_MDN_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_MDN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bc08e1c8ca4d1cf16934f680a012a9f7034ab34 Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_MDN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/US_NADP_NTN_download.cpython-39.pyc b/download_scripts/__pycache__/US_NADP_NTN_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1f77f17867aa432ade66bb1230b5bb564d1b24b Binary files /dev/null and b/download_scripts/__pycache__/US_NADP_NTN_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/WMO_WDCGG_download.cpython-39.pyc b/download_scripts/__pycache__/WMO_WDCGG_download.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4a213410c063d40abe919295edb10fc1d086848 Binary files /dev/null and b/download_scripts/__pycache__/WMO_WDCGG_download.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/compare_two_files.cpython-39.pyc b/download_scripts/__pycache__/compare_two_files.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4785be99d262e396e27be2c403bfc847c9384504 Binary files /dev/null and b/download_scripts/__pycache__/compare_two_files.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/download_configuration.cpython-39.pyc b/download_scripts/__pycache__/download_configuration.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f95be1b3e7e716a61e1f880af86f44a6f301af63 Binary files /dev/null and b/download_scripts/__pycache__/download_configuration.cpython-39.pyc differ diff --git a/download_scripts/__pycache__/download_parameters.cpython-36.pyc b/download_scripts/__pycache__/download_parameters.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d68e223fb06a1f3468b0952aa9a0e1c1d0985db9 Binary files /dev/null and b/download_scripts/__pycache__/download_parameters.cpython-36.pyc differ diff --git a/download_scripts/compare_two_files.py b/download_scripts/compare_two_files.py new file mode 100644 index 0000000000000000000000000000000000000000..4a8e0e2d8d55c060b4fb32d59e6ed44686a0ff27 --- /dev/null +++ b/download_scripts/compare_two_files.py @@ -0,0 +1,28 @@ +import hashlib # works for all type of data +import requests + + +# check if files are different +def compare_files(f1, f2): + + with open(f1, 'rb') as t1, open(f2, 'rb') as t2: + + fileA_hash = hashlib.sha256(t1.read()).digest() + fileB_hash = hashlib.sha256(t2.read()).digest() + if fileA_hash == fileB_hash: + print("Files are the same: no new data") + return True + else: + print("Files are not the same: new data to process") + return False + + """with open(f1, 'r') as t1, open(f2, 'r') as t2: # open again to read data not binary + fileA = t1.readlines() + fileB = t2.readlines() + + with open(out_path+'update.csv', 'w') as outFile: + + for line in fileB: + if line not in fileA: + print("different line detected") + outFile.write(line)""" \ No newline at end of file diff --git a/download_scripts/download_configuration.py b/download_scripts/download_configuration.py new file mode 100644 index 0000000000000000000000000000000000000000..23ca5a33dfc9626056656ded54c08c16d6174833 --- /dev/null +++ b/download_scripts/download_configuration.py @@ -0,0 +1,94 @@ +import datetime + +# global download configuration ============================================================================== + +# modes: 'all': download all the available files +# 'nrt': download data that includes last x days +mode = 'all' + +# when nrt mode, provide time period in which data should be downloaded; if mode == 'all' these dates will be overwritten +latency_days = 7 +start_date = datetime.date.today() - datetime.timedelta(days = latency_days) +stop_date = datetime.date.today() + +# ghost version +version = '1.6' + +# want to download data? +dl_data = True + +# want to download meta data? +dl_metadata = False + +# number of cpus +num_cpu = 2 + +# download location +root = '/esarchive/obs/ghost' + + +# download parameters per network ============================================================================= +download_params = {'US_EPA_AQS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_EPA_CASTNET': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 5, 'max_number_tries': 3}, + 'AERONET_v3_lev1.5': {'max_time_dl': 1, 'max_number_tries': 3}, + 'AERONET_v3_lev2.0': {'max_time_dl': 1, 'max_number_tries': 3}, + 'BJMEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CNEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CANADA_NAPS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CAPMoN': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_NADP_AMNet': {'max_time_dl': 10, 'max_number_tries': 3}, + 'US_NADP_AMoN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'MEXICO_CDMX': {'max_time_dl': 10, 'max_number_tries': 3}, + 'NOAA_ISD': {'max_time_dl': 15, 'max_number_tries': 3}, + 'MITECO': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EANET': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CHILE_SINCA': {'max_time_dl': 30, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 20, 'max_number_tries': 3}, + 'JAPAN_NIES': {'max_time_dl': 60, 'max_number_tries': 3}, + 'WMO_WDCGG': {'max_time_dl': 60, 'max_number_tries': 3}, + 'UK_AIR': {'max_time_dl': 60, 'max_number_tries': 3}, + 'US_EPA_AirNow_DOS': {'max_time_dl': 10, 'max_number_tries': 3}} + + +# networks you want to download +#networks_to_download = 'all' +networks_to_download = ['BJMEMC', 'CNEMC', 'CAPMoN', 'CANADA_NAPS'] + + +all_networks = ['US_EPA_AirNow_DOS', + 'US_EPA_CASTNET', + 'BJMEMC', + 'CNEMC', + 'WMO_WDCGG', + 'CAPMoN', + 'EANET', + 'CANADA_NAPS', + 'CHILE_SINCA', + 'US_NADP_AMNet', + 'US_NADP_AMoN', + 'MEXICO_CDMX', + 'JAPAN_NIES', + 'MITECO', + 'UK_AIR', + 'NOAA_ISD', + 'US_EPA_AQS', + 'AERONET_v3_lev1.5', + 'AERONET_v3_lev2.0', + 'EEA_AQ_eReporting', + 'EBAS'] + + +all_nrt_networks = ['US_EPA_AirNow_DOS', # download last 2 months to alwyas cover 30 days; monthly files + 'US_EPA_CASTNET', # download 2024; error occured randomly: requests.exceptions.ConnectionError: HTTPSConnectionPool(host='gaftp.epa.gov', port=443): Max retries exceeded with url: /castnet/CASTNET_Outgoing/data/ozone_2024.zip (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) + 'BJMEMC', # went fine, download only last day + 'CNEMC', # went fine, download only last day + 'WMO_WDCGG', # downloads all data in nrt + 'CHILE_SINCA', # ???, download last 30 days + 'JAPAN_NIES', # went fine, download last 2 months to always cover 30 days + 'UK_AIR', # went fine, download 2024; only one stream 'auto' -> corrected, now all streams + 'NOAA_ISD', # went fine, download 2024 + 'AERONET_v3_lev1.5', # went fine, download only last day + 'AERONET_v3_lev2.0', # went fine, download only last day + 'EEA_AQ_eReporting'] # went fine, E2a stream from 2023-01-01 until now ### new download: only last 48 hours available, always download those + diff --git a/download_scripts/download_configurations/__pycache__/operational_config.cpython-39.pyc b/download_scripts/download_configurations/__pycache__/operational_config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..154cd7f02244201b0285718589123ac6f9595031 Binary files /dev/null and b/download_scripts/download_configurations/__pycache__/operational_config.cpython-39.pyc differ diff --git a/download_scripts/download_configurations/__pycache__/test_config.cpython-39.pyc b/download_scripts/download_configurations/__pycache__/test_config.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f44a92cd1e86abe7f4b5887173b6c346e7ab2d39 Binary files /dev/null and b/download_scripts/download_configurations/__pycache__/test_config.cpython-39.pyc differ diff --git a/download_scripts/download_configurations/operational_config.py b/download_scripts/download_configurations/operational_config.py new file mode 100644 index 0000000000000000000000000000000000000000..71116f7b4a4f4848f30716289e4a1c012a0a92a9 --- /dev/null +++ b/download_scripts/download_configurations/operational_config.py @@ -0,0 +1,94 @@ +import datetime + +# global download configuration ============================================================================== + +# modes: 'all': download all the available files +# 'nrt': download data that includes last x days +mode = 'nrt' + +# when nrt mode, provide time period in which data should be downloaded; if mode == 'all' these dates will be overwritten +latency_days = 7 +start_date = datetime.date.today() - datetime.timedelta(days = latency_days) +stop_date = datetime.date.today() + +# ghost version +version = '1.6' + +# want to download data? +dl_data = True + +# want to download meta data? +dl_metadata = False + +# number of cpus +num_cpu = 2 + +# download location +root = '/esarchive/obs/ghost' + + +# download parameters per network ============================================================================= +download_params = {'US_EPA_AQS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_EPA_CASTNET': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 5, 'max_number_tries': 3}, + 'AERONET_v3_lev1.5': {'max_time_dl': 1, 'max_number_tries': 3}, + 'AERONET_v3_lev2.0': {'max_time_dl': 1, 'max_number_tries': 3}, + 'BJMEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CNEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CANADA_NAPS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CAPMoN': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_NADP_AMNet': {'max_time_dl': 10, 'max_number_tries': 3}, + 'US_NADP_AMoN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'MEXICO_CDMX': {'max_time_dl': 10, 'max_number_tries': 3}, + 'NOAA_ISD': {'max_time_dl': 15, 'max_number_tries': 3}, + 'MITECO': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EANET': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CHILE_SINCA': {'max_time_dl': 30, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 20, 'max_number_tries': 3}, + 'JAPAN_NIES': {'max_time_dl': 60, 'max_number_tries': 3}, + 'WMO_WDCGG': {'max_time_dl': 60, 'max_number_tries': 3}, + 'UK_AIR': {'max_time_dl': 60, 'max_number_tries': 3}, + 'US_EPA_AirNow_DOS': {'max_time_dl': 10, 'max_number_tries': 3}} + + +# networks you want to download +networks_to_download = 'all' +#networks_to_download = ['JAPAN_NIES'] + + +all_networks = ['US_EPA_AirNow_DOS', + 'US_EPA_CASTNET', + 'BJMEMC', + 'CNEMC', + 'WMO_WDCGG', + 'CAPMoN', + 'EANET', + 'CANADA_NAPS', + 'CHILE_SINCA', + 'US_NADP_AMNet', + 'US_NADP_AMoN', + 'MEXICO_CDMX', + 'JAPAN_NIES', + 'MITECO', + 'UK_AIR', + 'NOAA_ISD', + 'US_EPA_AQS', + 'AERONET_v3_lev1.5', + 'AERONET_v3_lev2.0', + 'EEA_AQ_eReporting', + 'EBAS'] + + +all_nrt_networks = ['US_EPA_AirNow_DOS', # download last 7 days; monthly files -> download this and in case last month + 'US_EPA_CASTNET', # download 2024; error occured randomly: requests.exceptions.ConnectionError: HTTPSConnectionPool(host='gaftp.epa.gov', port=443): Max retries exceeded with url: /castnet/CASTNET_Outgoing/data/ozone_2024.zip (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) + 'BJMEMC', # went fine, download last 7 day + 'CNEMC', # went fine, download last 7 day + 'WMO_WDCGG', # downloads all data + 'CHILE_SINCA', # went fine, download last 7 days + 'JAPAN_NIES', # went fine, download last 7 days + 'UK_AIR', # went fine, download 2024 + 'NOAA_ISD', # went fine, download 2024 + 'AERONET_v3_lev1.5', # went fine, download last 7 days + 'AERONET_v3_lev2.0', # went fine. downlaod last 7 days + 'EEA_AQ_eReporting'] # went fine, E2a stream from 2023-01-01 until now ### new download: only last 48 hours available, always download those + diff --git a/download_scripts/download_configurations/test_config.py b/download_scripts/download_configurations/test_config.py new file mode 100644 index 0000000000000000000000000000000000000000..c5ac48849d9f47ac3fc6744abd2009b4e4a8db8f --- /dev/null +++ b/download_scripts/download_configurations/test_config.py @@ -0,0 +1,109 @@ +import datetime + +# global download configuration ============================================================================== + +# modes: 'all': download all the available files +# 'nrt': download data that includes last x days +mode = 'all' + +# when nrt mode, provide time period in which data should be downloaded; if mode == 'all' these dates will be overwritten +latency_days = 7 +start_date = datetime.date.today() - datetime.timedelta(days = latency_days) +stop_date = datetime.date.today() + +# ghost version +version = '1.6' + +# want to download data? +dl_data = False + +# want to download meta data? +dl_metadata = True # metadata directory structure needs to be updated for all the networks on gpfs + +# number of cpus +num_cpu = 1 + +# download location +root = '/esarchive/obs/ghost' + + +# download parameters per network ============================================================================= +download_params = {'US_EPA_AQS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_EPA_CASTNET': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 5, 'max_number_tries': 3}, + 'AERONET_v3_lev1.5': {'max_time_dl': 10, 'max_number_tries': 3}, + 'AERONET_v3_lev2.0': {'max_time_dl': 10, 'max_number_tries': 3}, + 'BJMEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CNEMC': {'max_time_dl': 3, 'max_number_tries': 3}, + 'CANADA_NAPS': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CAPMoN': {'max_time_dl': 5, 'max_number_tries': 3}, + 'US_NADP_AMNet': {'max_time_dl': 10, 'max_number_tries': 3}, + 'US_NADP_AMoN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'US_NADP_NTN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'US_NADP_MDN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'US_NADP_AIRMoN': {'max_time_dl': 7, 'max_number_tries': 3}, + 'MEXICO_CDMX': {'max_time_dl': 240, 'max_number_tries': 3}, + 'NOAA_ISD': {'max_time_dl': 15, 'max_number_tries': 3}, + 'MITECO': {'max_time_dl': 10, 'max_number_tries': 3}, + 'EANET': {'max_time_dl': 5, 'max_number_tries': 3}, + 'CHILE_SINCA': {'max_time_dl': 30, 'max_number_tries': 3}, + 'EEA_AQ_eReporting': {'max_time_dl': 20, 'max_number_tries': 3}, + 'JAPAN_NIES': {'max_time_dl': 60, 'max_number_tries': 3}, + 'WMO_WDCGG': {'max_time_dl': 60, 'max_number_tries': 3}, + 'UK_AIR': {'max_time_dl': 60, 'max_number_tries': 3}, + 'US_EPA_AirNow_DOS': {'max_time_dl': 10, 'max_number_tries': 3}, + 'NZ_ECAN': {'max_time_dl': 30, 'max_number_tries': 3}, + 'NZ_LAWA': {'max_time_dl': 30, 'max_number_tries': 3}, + 'EBAS': {'max_time_dl': 30, 'max_number_tries': 3} + } + + + +# networks you want to download +#networks_to_download = 'all' +networks_to_download = ['US_EPA_AQS'] + + +all_networks = ['US_EPA_AirNow_DOS', # downloads files double with request of random years + 'US_EPA_CASTNET', # ok + 'BJMEMC', # ok + 'CNEMC', # ok + 'WMO_WDCGG', # ok + 'CAPMoN', # ok + 'EANET', # ok + 'CANADA_NAPS', # ok + 'CHILE_SINCA', # ok + 'US_NADP_AMNet', # ok + 'US_NADP_AMoN', # ok + 'US_NADP_NTN', # ok + 'US_NADP_MDN', # ok + 'US_NADP_AIRMoN', # ok + 'MEXICO_CDMX', # many tries needed before no ConnectionError, now ok + 'JAPAN_NIES', + 'MITECO', # ok + 'UK_AIR', + 'NOAA_ISD', # ok, takes very long + 'US_EPA_AQS', + 'AERONET_v3_lev1.5', + 'AERONET_v3_lev2.0', + 'EEA_AQ_eReporting', + 'EBAS', # ok + 'NZ_ECAN', # ok + 'NZ_LAWA'] # ok + + + +all_nrt_networks = ['US_EPA_AirNow_DOS', # download last 2 months to alwyas cover 30 days; monthly files + 'US_EPA_CASTNET', # download 2024; error occured randomly: requests.exceptions.ConnectionError: HTTPSConnectionPool(host='gaftp.epa.gov', port=443): Max retries exceeded with url: /castnet/CASTNET_Outgoing/data/ozone_2024.zip (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) + 'BJMEMC', # went fine, download only last day + 'CNEMC', # went fine, download only last day + 'WMO_WDCGG', # downloads all data in nrt + 'CHILE_SINCA', # ???, download last 30 days + 'JAPAN_NIES', # went fine, download last 2 months to always cover 30 days + 'UK_AIR', # went fine, download 2024; only one stream 'auto' -> corrected, now all streams + 'NOAA_ISD', # went fine, download 2024 + 'AERONET_v3_lev1.5', # went fine, download only last day + 'AERONET_v3_lev2.0', # went fine, download only last day + 'EEA_AQ_eReporting', # went fine, E2a stream from 2023-01-01 until now ### new download: only last 48 hours available, always download those + 'NZ_ECAN'] + diff --git a/download_scripts/log_files/.nfs0000000076e2f15f0000008a b/download_scripts/log_files/.nfs0000000076e2f15f0000008a new file mode 100644 index 0000000000000000000000000000000000000000..862ad05cdad68e57933a89ec74ce8f15a0ed6cdd --- /dev/null +++ b/download_scripts/log_files/.nfs0000000076e2f15f0000008a @@ -0,0 +1,1635 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of AERONET_v3_lev1.5Started downloading data of AERONET_v3_lev2.0 + +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=1&year2=1970&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=1&year2=1970&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=2&year2=1970&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=2&year2=1970&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=3&year2=1970&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=3&year2=1970&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=4&year2=1970&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=4&year2=1970&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=5&year2=1970&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=5&year2=1970&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=6&year2=1970&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=6&year2=1970&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=7&year2=1970&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=7&year2=1970&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=8&year2=1970&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=8&year2=1970&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=9&year2=1970&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=9&year2=1970&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=10&year2=1970&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=10&year2=1970&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=11&year2=1970&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=11&year2=1970&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=12&year2=1970&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=12&year2=1970&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=13&year2=1970&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=13&year2=1970&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=14&year2=1970&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=14&year2=1970&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=15&year2=1970&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=15&year2=1970&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=16&year2=1970&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=16&year2=1970&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=17&year2=1970&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=17&year2=1970&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=18&year2=1970&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=18&year2=1970&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=19&year2=1970&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=19&year2=1970&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=20&year2=1970&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=20&year2=1970&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=21&year2=1970&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=21&year2=1970&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=22&year2=1970&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=22&year2=1970&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=23&year2=1970&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=23&year2=1970&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=24&year2=1970&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=24&year2=1970&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=25&year2=1970&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=25&year2=1970&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=26&year2=1970&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=26&year2=1970&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=27&year2=1970&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=27&year2=1970&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=28&year2=1970&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=28&year2=1970&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=29&year2=1970&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=29&year2=1970&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=30&year2=1970&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=30&year2=1970&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=31&year2=1970&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=1&day=31&year2=1970&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=1&year2=1970&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=1&year2=1970&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=2&year2=1970&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=2&year2=1970&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=3&year2=1970&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=3&year2=1970&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=4&year2=1970&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=4&year2=1970&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=5&year2=1970&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=5&year2=1970&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=6&year2=1970&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=6&year2=1970&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=7&year2=1970&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=7&year2=1970&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=8&year2=1970&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=8&year2=1970&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=9&year2=1970&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=9&year2=1970&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=10&year2=1970&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=10&year2=1970&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=11&year2=1970&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=11&year2=1970&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=12&year2=1970&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=12&year2=1970&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=13&year2=1970&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=13&year2=1970&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=14&year2=1970&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=14&year2=1970&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=15&year2=1970&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=15&year2=1970&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=16&year2=1970&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=16&year2=1970&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=17&year2=1970&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=17&year2=1970&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=18&year2=1970&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=18&year2=1970&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=19&year2=1970&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=19&year2=1970&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=20&year2=1970&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=20&year2=1970&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=21&year2=1970&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=21&year2=1970&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=22&year2=1970&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=22&year2=1970&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=23&year2=1970&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=23&year2=1970&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=24&year2=1970&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=24&year2=1970&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=25&year2=1970&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=25&year2=1970&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=26&year2=1970&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=26&year2=1970&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=27&year2=1970&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=27&year2=1970&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=28&year2=1970&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=2&day=28&year2=1970&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=1&year2=1970&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=1&year2=1970&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=2&year2=1970&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=2&year2=1970&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=3&year2=1970&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=3&year2=1970&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=4&year2=1970&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=4&year2=1970&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=5&year2=1970&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=5&year2=1970&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=6&year2=1970&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=6&year2=1970&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=7&year2=1970&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=7&year2=1970&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=8&year2=1970&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=8&year2=1970&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=9&year2=1970&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=9&year2=1970&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=10&year2=1970&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=10&year2=1970&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=11&year2=1970&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=11&year2=1970&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=12&year2=1970&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=12&year2=1970&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=13&year2=1970&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=13&year2=1970&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=14&year2=1970&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=14&year2=1970&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=15&year2=1970&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=15&year2=1970&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=16&year2=1970&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=16&year2=1970&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=17&year2=1970&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=17&year2=1970&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=18&year2=1970&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=18&year2=1970&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=19&year2=1970&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=19&year2=1970&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=20&year2=1970&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=20&year2=1970&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=21&year2=1970&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=21&year2=1970&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=22&year2=1970&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=22&year2=1970&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=23&year2=1970&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=23&year2=1970&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=24&year2=1970&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=24&year2=1970&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=25&year2=1970&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=25&year2=1970&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=26&year2=1970&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=26&year2=1970&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=27&year2=1970&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=27&year2=1970&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=28&year2=1970&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=28&year2=1970&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=29&year2=1970&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=29&year2=1970&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=30&year2=1970&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=30&year2=1970&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=31&year2=1970&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=3&day=31&year2=1970&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=1&year2=1970&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=1&year2=1970&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=2&year2=1970&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=2&year2=1970&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=3&year2=1970&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=3&year2=1970&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=4&year2=1970&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=4&year2=1970&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=5&year2=1970&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=5&year2=1970&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=6&year2=1970&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=6&year2=1970&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=7&year2=1970&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=7&year2=1970&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=8&year2=1970&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=8&year2=1970&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=9&year2=1970&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=9&year2=1970&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=10&year2=1970&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=10&year2=1970&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=11&year2=1970&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=11&year2=1970&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=12&year2=1970&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=12&year2=1970&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=13&year2=1970&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=13&year2=1970&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=14&year2=1970&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=14&year2=1970&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=15&year2=1970&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=15&year2=1970&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=16&year2=1970&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=16&year2=1970&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=17&year2=1970&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=17&year2=1970&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=18&year2=1970&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=18&year2=1970&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=19&year2=1970&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=19&year2=1970&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=20&year2=1970&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=20&year2=1970&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=21&year2=1970&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=21&year2=1970&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=22&year2=1970&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=22&year2=1970&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=23&year2=1970&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=23&year2=1970&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=24&year2=1970&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=24&year2=1970&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=25&year2=1970&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=25&year2=1970&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=26&year2=1970&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=26&year2=1970&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=27&year2=1970&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=27&year2=1970&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=28&year2=1970&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=28&year2=1970&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=29&year2=1970&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=29&year2=1970&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=30&year2=1970&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=4&day=30&year2=1970&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=1&year2=1970&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=1&year2=1970&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=2&year2=1970&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=2&year2=1970&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=3&year2=1970&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=3&year2=1970&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=4&year2=1970&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=4&year2=1970&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=5&year2=1970&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=5&year2=1970&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=6&year2=1970&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=6&year2=1970&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=7&year2=1970&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=7&year2=1970&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=8&year2=1970&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=8&year2=1970&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=9&year2=1970&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=9&year2=1970&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=10&year2=1970&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=10&year2=1970&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=11&year2=1970&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=11&year2=1970&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=12&year2=1970&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=12&year2=1970&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=13&year2=1970&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=13&year2=1970&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=14&year2=1970&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=14&year2=1970&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=15&year2=1970&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=15&year2=1970&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=16&year2=1970&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=16&year2=1970&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=17&year2=1970&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=17&year2=1970&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=18&year2=1970&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=18&year2=1970&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=19&year2=1970&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=19&year2=1970&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=20&year2=1970&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=20&year2=1970&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=21&year2=1970&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=21&year2=1970&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=22&year2=1970&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=22&year2=1970&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=23&year2=1970&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=23&year2=1970&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=24&year2=1970&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=24&year2=1970&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=25&year2=1970&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=25&year2=1970&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=26&year2=1970&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=26&year2=1970&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=27&year2=1970&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=27&year2=1970&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=28&year2=1970&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=28&year2=1970&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=29&year2=1970&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=29&year2=1970&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=30&year2=1970&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=30&year2=1970&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=31&year2=1970&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=5&day=31&year2=1970&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=1&year2=1970&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=1&year2=1970&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=2&year2=1970&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=2&year2=1970&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=3&year2=1970&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=3&year2=1970&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=4&year2=1970&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=4&year2=1970&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=5&year2=1970&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=5&year2=1970&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=6&year2=1970&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=6&year2=1970&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=7&year2=1970&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=7&year2=1970&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=8&year2=1970&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=8&year2=1970&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=9&year2=1970&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=9&year2=1970&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=10&year2=1970&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=10&year2=1970&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=11&year2=1970&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=11&year2=1970&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=12&year2=1970&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=12&year2=1970&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=13&year2=1970&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=13&year2=1970&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=14&year2=1970&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=14&year2=1970&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=15&year2=1970&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=15&year2=1970&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=16&year2=1970&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=16&year2=1970&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=17&year2=1970&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=17&year2=1970&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=18&year2=1970&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=18&year2=1970&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=19&year2=1970&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=19&year2=1970&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=20&year2=1970&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=20&year2=1970&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=21&year2=1970&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=21&year2=1970&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=22&year2=1970&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=22&year2=1970&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=23&year2=1970&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=23&year2=1970&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=24&year2=1970&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=24&year2=1970&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=25&year2=1970&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=25&year2=1970&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=26&year2=1970&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=26&year2=1970&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=27&year2=1970&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=27&year2=1970&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=28&year2=1970&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=28&year2=1970&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=29&year2=1970&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=29&year2=1970&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=30&year2=1970&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=6&day=30&year2=1970&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=1&year2=1970&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=1&year2=1970&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=2&year2=1970&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=2&year2=1970&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=3&year2=1970&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=3&year2=1970&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=4&year2=1970&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=4&year2=1970&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=5&year2=1970&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=5&year2=1970&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=6&year2=1970&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=6&year2=1970&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=7&year2=1970&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=7&year2=1970&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=8&year2=1970&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=8&year2=1970&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=9&year2=1970&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=9&year2=1970&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=10&year2=1970&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=10&year2=1970&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=11&year2=1970&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=11&year2=1970&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=12&year2=1970&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=12&year2=1970&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=13&year2=1970&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=13&year2=1970&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=14&year2=1970&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=14&year2=1970&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=15&year2=1970&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=15&year2=1970&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=16&year2=1970&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=16&year2=1970&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=17&year2=1970&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=17&year2=1970&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=18&year2=1970&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=18&year2=1970&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=19&year2=1970&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=19&year2=1970&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=20&year2=1970&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=20&year2=1970&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=21&year2=1970&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=21&year2=1970&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=22&year2=1970&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=22&year2=1970&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=23&year2=1970&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=23&year2=1970&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=24&year2=1970&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=24&year2=1970&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=25&year2=1970&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=25&year2=1970&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=26&year2=1970&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=26&year2=1970&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=27&year2=1970&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=27&year2=1970&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=28&year2=1970&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=28&year2=1970&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=29&year2=1970&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=29&year2=1970&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=30&year2=1970&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=30&year2=1970&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=31&year2=1970&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=7&day=31&year2=1970&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=1&year2=1970&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=1&year2=1970&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=2&year2=1970&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=2&year2=1970&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=3&year2=1970&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=3&year2=1970&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=4&year2=1970&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=4&year2=1970&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=5&year2=1970&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=5&year2=1970&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=6&year2=1970&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=6&year2=1970&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=7&year2=1970&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=7&year2=1970&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=8&year2=1970&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=8&year2=1970&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=9&year2=1970&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=9&year2=1970&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=10&year2=1970&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=10&year2=1970&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=11&year2=1970&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=11&year2=1970&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=12&year2=1970&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=12&year2=1970&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=13&year2=1970&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=13&year2=1970&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=14&year2=1970&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=14&year2=1970&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=15&year2=1970&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=15&year2=1970&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=16&year2=1970&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=17&year2=1970&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=16&year2=1970&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=17&year2=1970&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=18&year2=1970&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=19&year2=1970&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=18&year2=1970&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=19&year2=1970&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=20&year2=1970&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=20&year2=1970&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=21&year2=1970&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=22&year2=1970&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=21&year2=1970&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=23&year2=1970&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=22&year2=1970&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=24&year2=1970&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=23&year2=1970&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=25&year2=1970&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=24&year2=1970&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=26&year2=1970&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=25&year2=1970&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=27&year2=1970&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=26&year2=1970&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=28&year2=1970&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=27&year2=1970&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=29&year2=1970&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=28&year2=1970&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=29&year2=1970&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=30&year2=1970&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=30&year2=1970&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=31&year2=1970&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=8&day=31&year2=1970&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=1&year2=1970&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=2&year2=1970&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=1&year2=1970&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=2&year2=1970&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=3&year2=1970&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=4&year2=1970&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=3&year2=1970&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=4&year2=1970&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=5&year2=1970&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=5&year2=1970&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=6&year2=1970&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=7&year2=1970&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=6&year2=1970&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=7&year2=1970&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=8&year2=1970&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=8&year2=1970&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=9&year2=1970&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=9&year2=1970&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=10&year2=1970&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=10&year2=1970&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=11&year2=1970&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=11&year2=1970&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=12&year2=1970&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=12&year2=1970&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=13&year2=1970&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=13&year2=1970&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=14&year2=1970&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=14&year2=1970&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=15&year2=1970&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=15&year2=1970&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=16&year2=1970&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=16&year2=1970&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=17&year2=1970&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=17&year2=1970&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=18&year2=1970&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=18&year2=1970&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=19&year2=1970&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=19&year2=1970&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=20&year2=1970&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=20&year2=1970&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=21&year2=1970&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=21&year2=1970&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=22&year2=1970&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=22&year2=1970&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=23&year2=1970&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=23&year2=1970&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=24&year2=1970&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=24&year2=1970&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=25&year2=1970&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=25&year2=1970&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=26&year2=1970&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=26&year2=1970&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=27&year2=1970&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=27&year2=1970&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=28&year2=1970&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=28&year2=1970&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=29&year2=1970&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=29&year2=1970&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=30&year2=1970&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=9&day=30&year2=1970&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=1&year2=1970&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=1&year2=1970&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=2&year2=1970&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=2&year2=1970&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=3&year2=1970&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=3&year2=1970&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=4&year2=1970&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=4&year2=1970&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=5&year2=1970&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=5&year2=1970&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=6&year2=1970&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=6&year2=1970&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=7&year2=1970&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=7&year2=1970&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=8&year2=1970&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=8&year2=1970&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=9&year2=1970&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=9&year2=1970&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=10&year2=1970&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=10&year2=1970&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=11&year2=1970&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=11&year2=1970&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=12&year2=1970&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=12&year2=1970&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=13&year2=1970&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=13&year2=1970&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=14&year2=1970&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=14&year2=1970&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=15&year2=1970&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=15&year2=1970&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=16&year2=1970&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=16&year2=1970&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=17&year2=1970&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=17&year2=1970&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=18&year2=1970&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=18&year2=1970&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=19&year2=1970&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=19&year2=1970&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=20&year2=1970&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=20&year2=1970&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=21&year2=1970&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=21&year2=1970&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=22&year2=1970&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=22&year2=1970&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=23&year2=1970&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=23&year2=1970&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=24&year2=1970&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=24&year2=1970&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=25&year2=1970&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=25&year2=1970&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=26&year2=1970&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=26&year2=1970&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=27&year2=1970&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=27&year2=1970&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=28&year2=1970&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=28&year2=1970&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=29&year2=1970&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=29&year2=1970&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=30&year2=1970&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=30&year2=1970&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=31&year2=1970&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=10&day=31&year2=1970&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=1&year2=1970&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=1&year2=1970&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=2&year2=1970&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=2&year2=1970&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=3&year2=1970&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=3&year2=1970&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=4&year2=1970&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=4&year2=1970&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=5&year2=1970&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=5&year2=1970&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=6&year2=1970&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=6&year2=1970&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=7&year2=1970&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=7&year2=1970&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=8&year2=1970&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=8&year2=1970&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=9&year2=1970&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=9&year2=1970&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=10&year2=1970&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=10&year2=1970&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=11&year2=1970&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=11&year2=1970&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=12&year2=1970&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=12&year2=1970&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=13&year2=1970&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=13&year2=1970&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=14&year2=1970&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=14&year2=1970&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=15&year2=1970&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=15&year2=1970&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=16&year2=1970&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=16&year2=1970&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=17&year2=1970&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=17&year2=1970&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=18&year2=1970&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=18&year2=1970&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=19&year2=1970&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=19&year2=1970&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=20&year2=1970&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=20&year2=1970&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=21&year2=1970&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=21&year2=1970&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=22&year2=1970&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=22&year2=1970&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=23&year2=1970&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=23&year2=1970&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=24&year2=1970&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=24&year2=1970&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=25&year2=1970&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=25&year2=1970&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=26&year2=1970&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=26&year2=1970&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=27&year2=1970&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=27&year2=1970&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=28&year2=1970&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=28&year2=1970&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=29&year2=1970&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=29&year2=1970&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=30&year2=1970&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=11&day=30&year2=1970&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=1&year2=1970&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=1&year2=1970&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=2&year2=1970&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=2&year2=1970&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=3&year2=1970&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=3&year2=1970&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=4&year2=1970&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=4&year2=1970&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=5&year2=1970&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=5&year2=1970&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=6&year2=1970&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=6&year2=1970&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=7&year2=1970&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=7&year2=1970&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=8&year2=1970&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=8&year2=1970&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=9&year2=1970&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=9&year2=1970&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=10&year2=1970&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=10&year2=1970&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=11&year2=1970&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=11&year2=1970&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=12&year2=1970&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=12&year2=1970&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=13&year2=1970&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=13&year2=1970&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=14&year2=1970&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=14&year2=1970&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=15&year2=1970&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=15&year2=1970&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=16&year2=1970&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=16&year2=1970&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=17&year2=1970&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=17&year2=1970&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=18&year2=1970&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=18&year2=1970&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=19&year2=1970&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=19&year2=1970&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=20&year2=1970&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=20&year2=1970&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=21&year2=1970&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=21&year2=1970&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=22&year2=1970&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=22&year2=1970&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=23&year2=1970&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=23&year2=1970&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=24&year2=1970&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=24&year2=1970&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=25&year2=1970&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=25&year2=1970&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=26&year2=1970&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=26&year2=1970&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=27&year2=1970&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=27&year2=1970&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=28&year2=1970&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=28&year2=1970&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=29&year2=1970&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=29&year2=1970&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=30&year2=1970&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=30&year2=1970&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=31&year2=1971&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1970&month=12&day=31&year2=1971&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=1&year2=1971&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=1&year2=1971&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=2&year2=1971&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=2&year2=1971&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=3&year2=1971&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=3&year2=1971&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=4&year2=1971&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=4&year2=1971&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=5&year2=1971&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=5&year2=1971&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=6&year2=1971&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=6&year2=1971&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=7&year2=1971&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=7&year2=1971&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=8&year2=1971&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=8&year2=1971&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=9&year2=1971&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=9&year2=1971&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=10&year2=1971&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=10&year2=1971&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=11&year2=1971&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=11&year2=1971&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=12&year2=1971&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=12&year2=1971&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=13&year2=1971&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=13&year2=1971&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=14&year2=1971&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=14&year2=1971&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=15&year2=1971&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=15&year2=1971&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=16&year2=1971&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=16&year2=1971&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=17&year2=1971&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=17&year2=1971&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=18&year2=1971&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=18&year2=1971&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=19&year2=1971&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=19&year2=1971&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=20&year2=1971&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=20&year2=1971&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=21&year2=1971&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=21&year2=1971&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=22&year2=1971&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=22&year2=1971&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=23&year2=1971&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=23&year2=1971&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=24&year2=1971&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=24&year2=1971&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=25&year2=1971&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=25&year2=1971&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=26&year2=1971&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=26&year2=1971&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=27&year2=1971&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=27&year2=1971&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=28&year2=1971&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=28&year2=1971&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=29&year2=1971&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=29&year2=1971&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=30&year2=1971&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=30&year2=1971&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=31&year2=1971&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=1&day=31&year2=1971&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=1&year2=1971&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=1&year2=1971&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=2&year2=1971&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=2&year2=1971&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=3&year2=1971&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=3&year2=1971&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=4&year2=1971&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=4&year2=1971&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=5&year2=1971&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=5&year2=1971&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=6&year2=1971&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=6&year2=1971&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=7&year2=1971&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=7&year2=1971&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=8&year2=1971&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=8&year2=1971&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=9&year2=1971&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=9&year2=1971&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=10&year2=1971&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=10&year2=1971&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=11&year2=1971&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=11&year2=1971&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=12&year2=1971&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=12&year2=1971&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=13&year2=1971&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=13&year2=1971&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=14&year2=1971&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=14&year2=1971&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=15&year2=1971&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=15&year2=1971&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=16&year2=1971&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=16&year2=1971&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=17&year2=1971&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=17&year2=1971&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=18&year2=1971&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=18&year2=1971&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=19&year2=1971&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=19&year2=1971&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=20&year2=1971&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=20&year2=1971&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=21&year2=1971&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=21&year2=1971&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=22&year2=1971&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=22&year2=1971&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=23&year2=1971&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=23&year2=1971&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=24&year2=1971&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=24&year2=1971&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=25&year2=1971&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=25&year2=1971&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=26&year2=1971&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=26&year2=1971&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=27&year2=1971&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=27&year2=1971&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=28&year2=1971&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=2&day=28&year2=1971&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=1&year2=1971&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=1&year2=1971&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=2&year2=1971&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=2&year2=1971&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=3&year2=1971&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=3&year2=1971&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=4&year2=1971&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=4&year2=1971&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=5&year2=1971&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=5&year2=1971&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=6&year2=1971&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=6&year2=1971&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=7&year2=1971&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=7&year2=1971&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=8&year2=1971&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=8&year2=1971&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=9&year2=1971&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=9&year2=1971&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=10&year2=1971&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=10&year2=1971&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=11&year2=1971&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=11&year2=1971&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=12&year2=1971&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=12&year2=1971&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=13&year2=1971&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=13&year2=1971&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=14&year2=1971&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=14&year2=1971&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=15&year2=1971&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=15&year2=1971&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=16&year2=1971&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=16&year2=1971&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=17&year2=1971&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=17&year2=1971&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=18&year2=1971&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=18&year2=1971&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=19&year2=1971&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=19&year2=1971&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=20&year2=1971&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=20&year2=1971&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=21&year2=1971&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=21&year2=1971&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=22&year2=1971&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=22&year2=1971&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=23&year2=1971&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=23&year2=1971&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=24&year2=1971&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=24&year2=1971&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=25&year2=1971&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=25&year2=1971&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=26&year2=1971&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=26&year2=1971&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=27&year2=1971&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=27&year2=1971&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=28&year2=1971&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=28&year2=1971&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=29&year2=1971&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=29&year2=1971&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=30&year2=1971&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=30&year2=1971&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=31&year2=1971&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=3&day=31&year2=1971&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=1&year2=1971&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=1&year2=1971&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=2&year2=1971&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=3&year2=1971&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=2&year2=1971&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=4&year2=1971&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=3&year2=1971&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=5&year2=1971&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=4&year2=1971&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=6&year2=1971&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=5&year2=1971&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=7&year2=1971&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=6&year2=1971&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=8&year2=1971&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=7&year2=1971&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=9&year2=1971&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=8&year2=1971&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=10&year2=1971&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=9&year2=1971&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=11&year2=1971&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=10&year2=1971&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=12&year2=1971&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=11&year2=1971&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=13&year2=1971&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=12&year2=1971&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=13&year2=1971&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=14&year2=1971&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=14&year2=1971&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=15&year2=1971&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=16&year2=1971&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=15&year2=1971&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=17&year2=1971&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=16&year2=1971&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=18&year2=1971&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=17&year2=1971&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=19&year2=1971&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=18&year2=1971&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=20&year2=1971&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=19&year2=1971&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=21&year2=1971&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=20&year2=1971&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=22&year2=1971&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=21&year2=1971&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=23&year2=1971&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=22&year2=1971&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=24&year2=1971&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=23&year2=1971&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=24&year2=1971&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=25&year2=1971&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=25&year2=1971&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=26&year2=1971&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=27&year2=1971&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=26&year2=1971&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=28&year2=1971&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=27&year2=1971&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=29&year2=1971&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=28&year2=1971&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=30&year2=1971&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=29&year2=1971&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=1&year2=1971&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=4&day=30&year2=1971&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=2&year2=1971&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=1&year2=1971&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=3&year2=1971&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=2&year2=1971&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=4&year2=1971&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=3&year2=1971&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=5&year2=1971&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=4&year2=1971&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=6&year2=1971&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=5&year2=1971&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=7&year2=1971&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=6&year2=1971&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=8&year2=1971&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=7&year2=1971&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=9&year2=1971&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=8&year2=1971&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=10&year2=1971&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=9&year2=1971&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=11&year2=1971&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=10&year2=1971&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=12&year2=1971&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=11&year2=1971&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=13&year2=1971&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=12&year2=1971&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=14&year2=1971&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=13&year2=1971&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=15&year2=1971&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=14&year2=1971&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=16&year2=1971&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=15&year2=1971&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=17&year2=1971&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=16&year2=1971&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=18&year2=1971&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=17&year2=1971&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=19&year2=1971&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=18&year2=1971&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=20&year2=1971&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=19&year2=1971&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=21&year2=1971&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=20&year2=1971&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=22&year2=1971&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=21&year2=1971&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=23&year2=1971&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=22&year2=1971&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=23&year2=1971&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=24&year2=1971&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=24&year2=1971&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=25&year2=1971&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=25&year2=1971&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=26&year2=1971&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=26&year2=1971&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=27&year2=1971&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=27&year2=1971&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=28&year2=1971&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=28&year2=1971&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=29&year2=1971&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=29&year2=1971&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=30&year2=1971&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=30&year2=1971&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=31&year2=1971&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=5&day=31&year2=1971&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=1&year2=1971&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=1&year2=1971&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=2&year2=1971&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=2&year2=1971&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=3&year2=1971&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=3&year2=1971&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=4&year2=1971&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=5&year2=1971&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=4&year2=1971&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=6&year2=1971&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=5&year2=1971&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=7&year2=1971&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=6&year2=1971&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=8&year2=1971&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=7&year2=1971&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=8&year2=1971&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=9&year2=1971&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=9&year2=1971&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=10&year2=1971&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=10&year2=1971&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=11&year2=1971&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=11&year2=1971&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=12&year2=1971&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=12&year2=1971&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=13&year2=1971&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=13&year2=1971&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=14&year2=1971&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=14&year2=1971&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=15&year2=1971&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=15&year2=1971&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=16&year2=1971&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=17&year2=1971&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=16&year2=1971&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=17&year2=1971&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=18&year2=1971&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=18&year2=1971&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=19&year2=1971&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=19&year2=1971&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=20&year2=1971&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=20&year2=1971&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=21&year2=1971&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=21&year2=1971&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=22&year2=1971&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=22&year2=1971&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=23&year2=1971&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=23&year2=1971&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=24&year2=1971&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=24&year2=1971&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=25&year2=1971&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=25&year2=1971&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=26&year2=1971&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=26&year2=1971&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=27&year2=1971&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=27&year2=1971&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=28&year2=1971&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=28&year2=1971&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=29&year2=1971&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=29&year2=1971&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=30&year2=1971&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=6&day=30&year2=1971&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=1&year2=1971&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=1&year2=1971&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=2&year2=1971&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=2&year2=1971&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=3&year2=1971&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=3&year2=1971&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=4&year2=1971&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=4&year2=1971&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=5&year2=1971&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=5&year2=1971&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=6&year2=1971&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=6&year2=1971&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=7&year2=1971&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=7&year2=1971&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=8&year2=1971&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=8&year2=1971&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=9&year2=1971&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=9&year2=1971&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=10&year2=1971&month2=7&day2=11&AOD15=1&AVG=10Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=10&year2=1971&month2=7&day2=11&AOD20=1&AVG=10 + +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=11&year2=1971&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=11&year2=1971&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=12&year2=1971&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=12&year2=1971&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=13&year2=1971&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=13&year2=1971&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=14&year2=1971&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=14&year2=1971&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=15&year2=1971&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=15&year2=1971&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=16&year2=1971&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=16&year2=1971&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=17&year2=1971&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=17&year2=1971&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=18&year2=1971&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=18&year2=1971&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=19&year2=1971&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=19&year2=1971&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=20&year2=1971&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=20&year2=1971&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=21&year2=1971&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=21&year2=1971&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=22&year2=1971&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=22&year2=1971&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=23&year2=1971&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=23&year2=1971&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=24&year2=1971&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=24&year2=1971&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=25&year2=1971&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=25&year2=1971&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=26&year2=1971&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=26&year2=1971&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=27&year2=1971&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=27&year2=1971&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=28&year2=1971&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=28&year2=1971&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=29&year2=1971&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=29&year2=1971&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=30&year2=1971&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=30&year2=1971&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=31&year2=1971&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=7&day=31&year2=1971&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=1&year2=1971&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=1&year2=1971&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=2&year2=1971&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=2&year2=1971&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=3&year2=1971&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=3&year2=1971&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=4&year2=1971&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=4&year2=1971&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=5&year2=1971&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=5&year2=1971&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=6&year2=1971&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=6&year2=1971&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=7&year2=1971&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=7&year2=1971&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=8&year2=1971&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=8&year2=1971&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=9&year2=1971&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=9&year2=1971&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=10&year2=1971&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=10&year2=1971&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=11&year2=1971&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=11&year2=1971&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=12&year2=1971&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=12&year2=1971&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=13&year2=1971&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=13&year2=1971&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=14&year2=1971&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=14&year2=1971&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=15&year2=1971&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=15&year2=1971&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=16&year2=1971&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=16&year2=1971&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=17&year2=1971&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=17&year2=1971&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=18&year2=1971&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=18&year2=1971&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=19&year2=1971&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=19&year2=1971&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=20&year2=1971&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=20&year2=1971&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=21&year2=1971&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=21&year2=1971&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=22&year2=1971&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=22&year2=1971&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=23&year2=1971&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=23&year2=1971&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=24&year2=1971&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=24&year2=1971&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=25&year2=1971&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=25&year2=1971&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=26&year2=1971&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=26&year2=1971&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=27&year2=1971&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=27&year2=1971&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=28&year2=1971&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=28&year2=1971&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=29&year2=1971&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=29&year2=1971&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=30&year2=1971&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=30&year2=1971&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=31&year2=1971&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=8&day=31&year2=1971&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=1&year2=1971&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=1&year2=1971&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=2&year2=1971&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=2&year2=1971&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=3&year2=1971&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=3&year2=1971&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=4&year2=1971&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=4&year2=1971&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=5&year2=1971&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=5&year2=1971&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=6&year2=1971&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=6&year2=1971&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=7&year2=1971&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=7&year2=1971&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=8&year2=1971&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=8&year2=1971&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=9&year2=1971&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=9&year2=1971&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=10&year2=1971&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=10&year2=1971&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=11&year2=1971&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=11&year2=1971&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=12&year2=1971&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=12&year2=1971&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=13&year2=1971&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=13&year2=1971&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=14&year2=1971&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=14&year2=1971&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=15&year2=1971&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=15&year2=1971&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=16&year2=1971&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=16&year2=1971&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=17&year2=1971&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=17&year2=1971&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=18&year2=1971&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=18&year2=1971&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=19&year2=1971&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=19&year2=1971&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=20&year2=1971&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=20&year2=1971&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=21&year2=1971&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=21&year2=1971&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=22&year2=1971&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=22&year2=1971&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=23&year2=1971&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=23&year2=1971&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=24&year2=1971&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=24&year2=1971&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=25&year2=1971&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=25&year2=1971&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=26&year2=1971&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=26&year2=1971&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=27&year2=1971&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=27&year2=1971&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=28&year2=1971&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=28&year2=1971&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=29&year2=1971&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=29&year2=1971&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=30&year2=1971&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=9&day=30&year2=1971&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=1&year2=1971&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=1&year2=1971&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=2&year2=1971&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=2&year2=1971&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=3&year2=1971&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=3&year2=1971&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=4&year2=1971&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=4&year2=1971&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=5&year2=1971&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=5&year2=1971&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=6&year2=1971&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=6&year2=1971&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=7&year2=1971&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=7&year2=1971&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=8&year2=1971&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=8&year2=1971&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=9&year2=1971&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=9&year2=1971&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=10&year2=1971&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=10&year2=1971&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=11&year2=1971&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=11&year2=1971&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=12&year2=1971&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=12&year2=1971&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=13&year2=1971&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=13&year2=1971&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=14&year2=1971&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=14&year2=1971&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=15&year2=1971&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=15&year2=1971&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=16&year2=1971&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=16&year2=1971&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=17&year2=1971&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=17&year2=1971&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=18&year2=1971&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=18&year2=1971&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=19&year2=1971&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=19&year2=1971&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=20&year2=1971&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=20&year2=1971&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=21&year2=1971&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=21&year2=1971&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=22&year2=1971&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=22&year2=1971&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=23&year2=1971&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=23&year2=1971&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=24&year2=1971&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=24&year2=1971&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=25&year2=1971&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=25&year2=1971&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=26&year2=1971&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=26&year2=1971&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=27&year2=1971&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=27&year2=1971&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=28&year2=1971&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=28&year2=1971&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=29&year2=1971&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=29&year2=1971&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=30&year2=1971&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=30&year2=1971&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=31&year2=1971&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=10&day=31&year2=1971&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=1&year2=1971&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=1&year2=1971&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=2&year2=1971&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=2&year2=1971&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=3&year2=1971&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=3&year2=1971&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=4&year2=1971&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=4&year2=1971&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=5&year2=1971&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=5&year2=1971&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=6&year2=1971&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=6&year2=1971&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=7&year2=1971&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=7&year2=1971&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=8&year2=1971&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=8&year2=1971&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=9&year2=1971&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=9&year2=1971&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=10&year2=1971&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=10&year2=1971&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=11&year2=1971&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=11&year2=1971&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=12&year2=1971&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=12&year2=1971&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=13&year2=1971&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=13&year2=1971&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=14&year2=1971&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=14&year2=1971&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=15&year2=1971&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=15&year2=1971&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=16&year2=1971&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=16&year2=1971&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=17&year2=1971&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=17&year2=1971&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=18&year2=1971&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=18&year2=1971&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=19&year2=1971&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=19&year2=1971&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=20&year2=1971&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=20&year2=1971&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=21&year2=1971&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=21&year2=1971&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=22&year2=1971&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=22&year2=1971&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=23&year2=1971&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=23&year2=1971&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=24&year2=1971&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=24&year2=1971&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=25&year2=1971&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=25&year2=1971&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=26&year2=1971&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=26&year2=1971&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=27&year2=1971&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=27&year2=1971&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=28&year2=1971&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=28&year2=1971&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=29&year2=1971&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=29&year2=1971&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=30&year2=1971&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=11&day=30&year2=1971&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=1&year2=1971&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=1&year2=1971&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=2&year2=1971&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=2&year2=1971&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=3&year2=1971&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=3&year2=1971&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=4&year2=1971&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=4&year2=1971&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=5&year2=1971&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=5&year2=1971&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=6&year2=1971&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=6&year2=1971&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=7&year2=1971&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=7&year2=1971&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=8&year2=1971&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=8&year2=1971&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=9&year2=1971&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=9&year2=1971&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=10&year2=1971&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=10&year2=1971&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=11&year2=1971&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=11&year2=1971&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=12&year2=1971&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=12&year2=1971&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=13&year2=1971&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=13&year2=1971&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=14&year2=1971&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=14&year2=1971&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=15&year2=1971&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=15&year2=1971&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=16&year2=1971&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=16&year2=1971&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=17&year2=1971&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=17&year2=1971&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=18&year2=1971&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=18&year2=1971&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=19&year2=1971&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=19&year2=1971&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=20&year2=1971&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=20&year2=1971&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=21&year2=1971&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=21&year2=1971&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=22&year2=1971&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=22&year2=1971&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=23&year2=1971&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=23&year2=1971&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=24&year2=1971&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=24&year2=1971&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=25&year2=1971&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=25&year2=1971&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=26&year2=1971&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=26&year2=1971&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=27&year2=1971&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=27&year2=1971&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=28&year2=1971&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=28&year2=1971&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=29&year2=1971&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=29&year2=1971&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=30&year2=1971&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=30&year2=1971&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=31&year2=1972&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1971&month=12&day=31&year2=1972&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=1&year2=1972&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=1&year2=1972&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=2&year2=1972&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=2&year2=1972&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=3&year2=1972&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=3&year2=1972&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=4&year2=1972&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=4&year2=1972&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=5&year2=1972&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=5&year2=1972&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=6&year2=1972&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=6&year2=1972&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=7&year2=1972&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=7&year2=1972&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=8&year2=1972&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=8&year2=1972&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=9&year2=1972&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=9&year2=1972&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=10&year2=1972&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=10&year2=1972&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=11&year2=1972&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=11&year2=1972&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=12&year2=1972&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=12&year2=1972&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=13&year2=1972&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=13&year2=1972&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=14&year2=1972&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=14&year2=1972&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=15&year2=1972&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=15&year2=1972&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=16&year2=1972&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=16&year2=1972&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=17&year2=1972&month2=1&day2=18&AOD20=1&AVG=10 + +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=17&year2=1972&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=18&year2=1972&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=19&year2=1972&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=20&year2=1972&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=21&year2=1972&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=22&year2=1972&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=23&year2=1972&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=24&year2=1972&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=25&year2=1972&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=26&year2=1972&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=27&year2=1972&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=28&year2=1972&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=29&year2=1972&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=30&year2=1972&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=1&day=31&year2=1972&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=1&year2=1972&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=2&year2=1972&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=3&year2=1972&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=4&year2=1972&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=5&year2=1972&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=6&year2=1972&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=7&year2=1972&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=8&year2=1972&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=9&year2=1972&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=10&year2=1972&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=11&year2=1972&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=12&year2=1972&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=13&year2=1972&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=14&year2=1972&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=15&year2=1972&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=16&year2=1972&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=17&year2=1972&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=18&year2=1972&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=19&year2=1972&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=20&year2=1972&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=21&year2=1972&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=22&year2=1972&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=23&year2=1972&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=24&year2=1972&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=25&year2=1972&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=26&year2=1972&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=27&year2=1972&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=28&year2=1972&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=2&day=29&year2=1972&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=1&year2=1972&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=2&year2=1972&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=3&year2=1972&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=4&year2=1972&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=5&year2=1972&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=6&year2=1972&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=7&year2=1972&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=8&year2=1972&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=9&year2=1972&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=10&year2=1972&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=11&year2=1972&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=12&year2=1972&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=13&year2=1972&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=14&year2=1972&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=15&year2=1972&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=16&year2=1972&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=17&year2=1972&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=18&year2=1972&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=19&year2=1972&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=20&year2=1972&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=21&year2=1972&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=22&year2=1972&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=23&year2=1972&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=24&year2=1972&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=25&year2=1972&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=26&year2=1972&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=27&year2=1972&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=28&year2=1972&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=29&year2=1972&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=30&year2=1972&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=3&day=31&year2=1972&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=1&year2=1972&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=2&year2=1972&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=3&year2=1972&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=4&year2=1972&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=5&year2=1972&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=6&year2=1972&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=7&year2=1972&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=8&year2=1972&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=9&year2=1972&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=10&year2=1972&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=11&year2=1972&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=12&year2=1972&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=13&year2=1972&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=14&year2=1972&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=15&year2=1972&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=16&year2=1972&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=17&year2=1972&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=18&year2=1972&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=19&year2=1972&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=20&year2=1972&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=21&year2=1972&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=22&year2=1972&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=23&year2=1972&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=24&year2=1972&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=25&year2=1972&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=26&year2=1972&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=27&year2=1972&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=28&year2=1972&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=29&year2=1972&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=4&day=30&year2=1972&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=1&year2=1972&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=2&year2=1972&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=3&year2=1972&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=4&year2=1972&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=5&year2=1972&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=6&year2=1972&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=7&year2=1972&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=8&year2=1972&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=9&year2=1972&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=10&year2=1972&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=11&year2=1972&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=12&year2=1972&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=13&year2=1972&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=14&year2=1972&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=15&year2=1972&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=16&year2=1972&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=17&year2=1972&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=18&year2=1972&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=19&year2=1972&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=20&year2=1972&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=21&year2=1972&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=22&year2=1972&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=23&year2=1972&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=24&year2=1972&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=25&year2=1972&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=26&year2=1972&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=27&year2=1972&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1972&month=5&day=28&year2=1972&month2=5&day2=29&AOD15=1&AVG=10 diff --git a/download_scripts/log_files/log_20240610-100326.out b/download_scripts/log_files/log_20240610-100326.out new file mode 100644 index 0000000000000000000000000000000000000000..d8c7be9be74cd0bc78e97fc8d2697f71653483ea --- /dev/null +++ b/download_scripts/log_files/log_20240610-100326.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +AERONETv3 successful -- total: 0.648 min +++ download: 0.607 min +++ rsync: 0.041 min +------------------------------------------------------------------------------------------------------------- +Total duration: 0.657 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-101144.out b/download_scripts/log_files/log_20240610-101144.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-101144.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-101400.out b/download_scripts/log_files/log_20240610-101400.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-101400.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-102242.out b/download_scripts/log_files/log_20240610-102242.out new file mode 100644 index 0000000000000000000000000000000000000000..a67799adcf575a8e7ed3efc58f1275d8cb3681fd --- /dev/null +++ b/download_scripts/log_files/log_20240610-102242.out @@ -0,0 +1,8 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +AERONET_v3_lev1.5 successful -- total: 0.461 min +++ download: 0.419 min +++ rsync: 0.042 min +------------------------------------------------------------------------------------------------------------- +AERONET_v3_lev2.0 successful -- total: 0.081 min +++ download: 0.058 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- +Total duration: 0.543 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-103944.out b/download_scripts/log_files/log_20240610-103944.out new file mode 100644 index 0000000000000000000000000000000000000000..699ef1046fe36a5b14b70c31974b27d17da56220 --- /dev/null +++ b/download_scripts/log_files/log_20240610-103944.out @@ -0,0 +1,8 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +AERONET_v3_lev1.5 successful -- total: 0.221 min +++ download: 0.202 min +++ rsync: 0.019 min +------------------------------------------------------------------------------------------------------------- +AERONET_v3_lev2.0 successful -- total: 0.117 min +++ download: 0.082 min +++ rsync: 0.034 min +------------------------------------------------------------------------------------------------------------- +Total duration: 0.222 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-104914.out b/download_scripts/log_files/log_20240610-104914.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-104914.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-105102.out b/download_scripts/log_files/log_20240610-105102.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-105102.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-105128.out b/download_scripts/log_files/log_20240610-105128.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-105128.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-105257.out b/download_scripts/log_files/log_20240610-105257.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-105257.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-105336.out b/download_scripts/log_files/log_20240610-105336.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-105336.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-110832.out b/download_scripts/log_files/log_20240610-110832.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-110832.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-111055.out b/download_scripts/log_files/log_20240610-111055.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-111055.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-111444.out b/download_scripts/log_files/log_20240610-111444.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-111444.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-112139.out b/download_scripts/log_files/log_20240610-112139.out new file mode 100644 index 0000000000000000000000000000000000000000..fdd8fafaa34f0f3e7246395eb7dcb9f014db7da4 --- /dev/null +++ b/download_scripts/log_files/log_20240610-112139.out @@ -0,0 +1,4 @@ +code************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +Total duration: 0.473 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-112140.out b/download_scripts/log_files/log_20240610-112140.out new file mode 100644 index 0000000000000000000000000000000000000000..f6f6fb6ab287c6202da32dc6a510340f1c5e1224 --- /dev/null +++ b/download_scripts/log_files/log_20240610-112140.out @@ -0,0 +1,6 @@ +AERONET_v3_lev2.0 successful -- total: 0.358 min +++ download: 0.328 min +++ rsync: 0.029 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev1.5 successful -- total: 0.471 min +++ download: 0.449 min +++ rsync: 0.022 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240610-113232.out b/download_scripts/log_files/log_20240610-113232.out new file mode 100644 index 0000000000000000000000000000000000000000..9a45e5bc1197da840303d73f5a9966e4a742e853 --- /dev/null +++ b/download_scripts/log_files/log_20240610-113232.out @@ -0,0 +1,10 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +AERONET_v3_lev2.0 successful -- total: 0.118 min +++ download: 0.089 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev1.5 successful -- total: 0.222 min +++ download: 0.203 min +++ rsync: 0.018 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.222 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-113743.out b/download_scripts/log_files/log_20240610-113743.out new file mode 100644 index 0000000000000000000000000000000000000000..676b0e5806625e6c2b57a53270ae24fdf126f5da --- /dev/null +++ b/download_scripts/log_files/log_20240610-113743.out @@ -0,0 +1,18 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +BJMEMC successful -- total: 0.12 min +++ download: 0.094 min +++ rsync: 0.026 min +------------------------------------------------------------------------------------------------------------- + +CNEMC successful -- total: 0.131 min +++ download: 0.11 min +++ rsync: 0.021 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_AirNow_DOS successful -- total: 4.261 min +++ download: 4.216 min +++ rsync: 0.045 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_CASTNET successful -- total: 0.545 min +++ download: 0.522 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev2.0 successful -- total: 0.233 min +++ download: 0.117 min +++ rsync: 0.116 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240610-130705.out b/download_scripts/log_files/log_20240610-130705.out new file mode 100644 index 0000000000000000000000000000000000000000..801f10befa983e918342d4dcb82aec33ef76b2aa --- /dev/null +++ b/download_scripts/log_files/log_20240610-130705.out @@ -0,0 +1,33 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +BJMEMC successful -- total: 0.489 min +++ download: 0.464 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +CNEMC successful -- total: 0.127 min +++ download: 0.111 min +++ rsync: 0.017 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_AirNow_DOS successful -- total: 4.036 min +++ download: 4.013 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_CASTNET successful -- total: 0.428 min +++ download: 0.411 min +++ rsync: 0.017 min +------------------------------------------------------------------------------------------------------------- + +JAPAN_NIES successful -- total: 11.624 min +++ download: 11.599 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +UK_AIR successful -- total: 3.333 min +++ download: 3.305 min +++ rsync: 0.028 min +------------------------------------------------------------------------------------------------------------- + +NOAA_ISD successful -- total: 14.891 min +++ download: 14.586 min +++ rsync: 0.305 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev1.5 successful -- total: 0.215 min +++ download: 0.193 min +++ rsync: 0.022 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev2.0 successful -- total: 0.076 min +++ download: 0.058 min +++ rsync: 0.018 min +------------------------------------------------------------------------------------------------------------- + +EEA_AQ_eReporting successful -- total: 3.83 min +++ download: 3.78 min +++ rsync: 0.05 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240610-144909.out b/download_scripts/log_files/log_20240610-144909.out new file mode 100644 index 0000000000000000000000000000000000000000..99db6dab0dde636e92102e78d2abf30df9e685d1 --- /dev/null +++ b/download_scripts/log_files/log_20240610-144909.out @@ -0,0 +1,10 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +WMO_WDCGG successful -- total: 1.019 min +++ download: 0.964 min +++ rsync: 0.056 min +------------------------------------------------------------------------------------------------------------- + +CHILE_SINCA successful -- total: 62.765 min +++ download: 62.653 min +++ rsync: 0.112 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 62.769 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-145049.out b/download_scripts/log_files/log_20240610-145049.out new file mode 100644 index 0000000000000000000000000000000000000000..649a992ffcc7f8039fa66f980f7dd6d391cdb9d9 --- /dev/null +++ b/download_scripts/log_files/log_20240610-145049.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +CHILE_SINCA successful -- total: 62.68 min +++ download: 62.571 min +++ rsync: 0.108 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240610-155723.out b/download_scripts/log_files/log_20240610-155723.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-155723.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-160250.out b/download_scripts/log_files/log_20240610-160250.out new file mode 100644 index 0000000000000000000000000000000000000000..25c3033a9b390417022ca677056068707eb848ec --- /dev/null +++ b/download_scripts/log_files/log_20240610-160250.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-161829.out b/download_scripts/log_files/log_20240610-161829.out new file mode 100644 index 0000000000000000000000000000000000000000..f9684be6daca3ace730c5afe0987ae42db7f1b1e --- /dev/null +++ b/download_scripts/log_files/log_20240610-161829.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6 +************************************************************************************************************** +WMO_WDCGG successful -- total: 9.931 min +++ download: 9.867 min +++ rsync: 0.064 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 9.933 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240610-165358.out b/download_scripts/log_files/log_20240610-165358.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-165358.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-165857.out b/download_scripts/log_files/log_20240610-165857.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-165857.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-171058.out b/download_scripts/log_files/log_20240610-171058.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-171058.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-171303.out b/download_scripts/log_files/log_20240610-171303.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-171303.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-171633.out b/download_scripts/log_files/log_20240610-171633.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-171633.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-171744.out b/download_scripts/log_files/log_20240610-171744.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-171744.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-171810.out b/download_scripts/log_files/log_20240610-171810.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-171810.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-172050.out b/download_scripts/log_files/log_20240610-172050.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-172050.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240610-172250.out b/download_scripts/log_files/log_20240610-172250.out new file mode 100644 index 0000000000000000000000000000000000000000..5ac4908794473bdf45a1bb764e4ef97ded0952d7 --- /dev/null +++ b/download_scripts/log_files/log_20240610-172250.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-160405.out b/download_scripts/log_files/log_20240611-160405.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-160405.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-160643.out b/download_scripts/log_files/log_20240611-160643.out new file mode 100644 index 0000000000000000000000000000000000000000..cc9e3f8026e129484a7e1471429c8ed61677b63a --- /dev/null +++ b/download_scripts/log_files/log_20240611-160643.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.407 min +++ download: 0.366 min +++ rsync: 0.041 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.407 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240611-160850.out b/download_scripts/log_files/log_20240611-160850.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-160850.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-161319.out b/download_scripts/log_files/log_20240611-161319.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-161319.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-161455.out b/download_scripts/log_files/log_20240611-161455.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-161455.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-162027.out b/download_scripts/log_files/log_20240611-162027.out new file mode 100644 index 0000000000000000000000000000000000000000..dd3603a4445fd6b80809300542cfe1aa91ed9184 --- /dev/null +++ b/download_scripts/log_files/log_20240611-162027.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.486 min +++ download: 0.464 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.487 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240611-163720.out b/download_scripts/log_files/log_20240611-163720.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-163720.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-163813.out b/download_scripts/log_files/log_20240611-163813.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-163813.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-163959.out b/download_scripts/log_files/log_20240611-163959.out new file mode 100644 index 0000000000000000000000000000000000000000..8fe60be0b58535bb26f6a964abba0eabb91444b4 --- /dev/null +++ b/download_scripts/log_files/log_20240611-163959.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** +US_EPA_AQS successful -- total: 3.745 min +++ download: 3.717 min +++ rsync: 0.028 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 3.745 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240611-165120.out b/download_scripts/log_files/log_20240611-165120.out new file mode 100644 index 0000000000000000000000000000000000000000..63f13e6d6142ef417b1524a9558f351ba1fe04c9 --- /dev/null +++ b/download_scripts/log_files/log_20240611-165120.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240611-165207.out b/download_scripts/log_files/log_20240611-165207.out new file mode 100644 index 0000000000000000000000000000000000000000..9bd7118fe648055c57942e64722ab6f3d1af87ba --- /dev/null +++ b/download_scripts/log_files/log_20240611-165207.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-04 to 2024-06-11 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.404 min +++ download: 0.379 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.404 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240612-105943.out b/download_scripts/log_files/log_20240612-105943.out new file mode 100644 index 0000000000000000000000000000000000000000..d2e568e2a38b355ab69152abcd91ecbe69cc1aea --- /dev/null +++ b/download_scripts/log_files/log_20240612-105943.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-05 to 2024-06-12 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240612-115322.out b/download_scripts/log_files/log_20240612-115322.out new file mode 100644 index 0000000000000000000000000000000000000000..af9e365f0373973dd45b6e1e95fb50ec605da3f2 --- /dev/null +++ b/download_scripts/log_files/log_20240612-115322.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-05 to 2024-06-12 +************************************************************************************************************** +BJMEMC successful -- total: 0.499 min +++ download: 0.45 min +++ rsync: 0.049 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.499 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240612-163459.out b/download_scripts/log_files/log_20240612-163459.out new file mode 100644 index 0000000000000000000000000000000000000000..86561e80def1241198e5e3259e2eb097a6f7a583 --- /dev/null +++ b/download_scripts/log_files/log_20240612-163459.out @@ -0,0 +1,33 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-05 to 2024-06-12 +************************************************************************************************************** +BJMEMC successful -- total: 0.769 min +++ download: 0.701 min +++ rsync: 0.068 min +------------------------------------------------------------------------------------------------------------- + +CNEMC successful -- total: 0.548 min +++ download: 0.519 min +++ rsync: 0.029 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_AirNow_DOS successful -- total: 2.159 min +++ download: 2.117 min +++ rsync: 0.042 min +------------------------------------------------------------------------------------------------------------- + +WMO_WDCGG successful -- total: 1.168 min +++ download: 1.096 min +++ rsync: 0.072 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_CASTNET successful -- total: 0.354 min +++ download: 0.333 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +NOAA_ISD successful -- total: 33.782 min +++ download: 33.348 min +++ rsync: 0.434 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev1.5 successful -- total: 2.403 min +++ download: 2.356 min +++ rsync: 0.047 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev2.0 successful -- total: 0.552 min +++ download: 0.522 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +EEA_AQ_eReporting successful -- total: 3.657 min +++ download: 3.558 min +++ rsync: 0.099 min +------------------------------------------------------------------------------------------------------------- + +CHILE_SINCA successful -- total: 63.354 min +++ download: 63.245 min +++ rsync: 0.109 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240612-172943.out b/download_scripts/log_files/log_20240612-172943.out new file mode 100644 index 0000000000000000000000000000000000000000..d2e568e2a38b355ab69152abcd91ecbe69cc1aea --- /dev/null +++ b/download_scripts/log_files/log_20240612-172943.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-05 to 2024-06-12 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240613-121531.out b/download_scripts/log_files/log_20240613-121531.out new file mode 100644 index 0000000000000000000000000000000000000000..abec15a3a40d3fc74e826fe799969c58f93c2486 --- /dev/null +++ b/download_scripts/log_files/log_20240613-121531.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +BJMEMC successful -- total: 159.358 min +++ download: 159.172 min +++ rsync: 0.185 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240613-145644.out b/download_scripts/log_files/log_20240613-145644.out new file mode 100644 index 0000000000000000000000000000000000000000..17a9ef681a8c1dc16099cbd7cf24ff9f3d0596ca --- /dev/null +++ b/download_scripts/log_files/log_20240613-145644.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240613-154354.out b/download_scripts/log_files/log_20240613-154354.out new file mode 100644 index 0000000000000000000000000000000000000000..17a9ef681a8c1dc16099cbd7cf24ff9f3d0596ca --- /dev/null +++ b/download_scripts/log_files/log_20240613-154354.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240613-154714.out b/download_scripts/log_files/log_20240613-154714.out new file mode 100644 index 0000000000000000000000000000000000000000..859c36df19a219e2d1b51b4f227454d9f2a4ab2a --- /dev/null +++ b/download_scripts/log_files/log_20240613-154714.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 0.971 min +++ download: 0.947 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.971 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-155220.out b/download_scripts/log_files/log_20240613-155220.out new file mode 100644 index 0000000000000000000000000000000000000000..2b5a0a5bbd27b1a333220b2479ce94d425b127a5 --- /dev/null +++ b/download_scripts/log_files/log_20240613-155220.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 0.97 min +++ download: 0.949 min +++ rsync: 0.021 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.97 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-155726.out b/download_scripts/log_files/log_20240613-155726.out new file mode 100644 index 0000000000000000000000000000000000000000..2c1a10525a4055fe4a30cfcad3eaa33e203c1d02 --- /dev/null +++ b/download_scripts/log_files/log_20240613-155726.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 0.986 min +++ download: 0.95 min +++ rsync: 0.037 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.986 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-161432.out b/download_scripts/log_files/log_20240613-161432.out new file mode 100644 index 0000000000000000000000000000000000000000..17a9ef681a8c1dc16099cbd7cf24ff9f3d0596ca --- /dev/null +++ b/download_scripts/log_files/log_20240613-161432.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240613-161901.out b/download_scripts/log_files/log_20240613-161901.out new file mode 100644 index 0000000000000000000000000000000000000000..28e986a491bf534ec9672487d87651c7fbca5150 --- /dev/null +++ b/download_scripts/log_files/log_20240613-161901.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN unsuccessful -- duration 0.329 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 71, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_NTN_download.py", line 158, in download_metadata + with open('{}/US_NADP_NTN/metadata/{}/network_provided/US_NADP_NTN_META.csv'.format(dl_root,version), 'r') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_NADP_NTN/metadata/1.6/network_provided/US_NADP_NTN_META.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.329 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-162129.out b/download_scripts/log_files/log_20240613-162129.out new file mode 100644 index 0000000000000000000000000000000000000000..3d11bad865fc0545632392ba6d33c73c584a9e96 --- /dev/null +++ b/download_scripts/log_files/log_20240613-162129.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN unsuccessful -- duration 0.361 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 71, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_NTN_download.py", line 174, in download_metadata + with open(download_location+'US_NADP_NTN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_NADP_NTN/metadata/1.6/network_provided/temp/US_NADP_NTN_META_20240613.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.362 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-162332.out b/download_scripts/log_files/log_20240613-162332.out new file mode 100644 index 0000000000000000000000000000000000000000..053b33f7089e3dc97f684dd253ae95d312389b34 --- /dev/null +++ b/download_scripts/log_files/log_20240613-162332.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 0.374 min +++ download: 0.341 min +++ rsync: 0.033 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.374 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-162933.out b/download_scripts/log_files/log_20240613-162933.out new file mode 100644 index 0000000000000000000000000000000000000000..1c7c525d77dc84cb5e188df38de8fd9f7dad3bb1 --- /dev/null +++ b/download_scripts/log_files/log_20240613-162933.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_AMNet successful -- total: 0.475 min +++ download: 0.452 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.475 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-164251.out b/download_scripts/log_files/log_20240613-164251.out new file mode 100644 index 0000000000000000000000000000000000000000..8ad61cbc9cbfda451e60daf7cd3e8233518d0eeb --- /dev/null +++ b/download_scripts/log_files/log_20240613-164251.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 1.131 min +++ download: 1.129 min +++ rsync: 0.001 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.131 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-164536.out b/download_scripts/log_files/log_20240613-164536.out new file mode 100644 index 0000000000000000000000000000000000000000..21f060f9f0f0591b60a7b6de3180eaf0b22abb22 --- /dev/null +++ b/download_scripts/log_files/log_20240613-164536.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 1.018 min +++ download: 0.964 min +++ rsync: 0.054 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.018 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-165031.out b/download_scripts/log_files/log_20240613-165031.out new file mode 100644 index 0000000000000000000000000000000000000000..842f0317ed67007d070603293cea8da0c2f96cbf --- /dev/null +++ b/download_scripts/log_files/log_20240613-165031.out @@ -0,0 +1,10 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_NTN successful -- total: 1.057 min +++ download: 1.02 min +++ rsync: 0.037 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_NTN metadata successful -- total: 1.432 min +++ download: 1.392 min +++ rsync: 0.04 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.432 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-172316.out b/download_scripts/log_files/log_20240613-172316.out new file mode 100644 index 0000000000000000000000000000000000000000..604cec237cf4e414fed0f04456240577b21a8531 --- /dev/null +++ b/download_scripts/log_files/log_20240613-172316.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_MDN successful -- total: 0.652 min +++ download: 0.617 min +++ rsync: 0.035 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_MDN metadata unsuccessful -- duration 0.977 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 71, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_MDN_download.py", line 174, in download_metadata + with open(download_location+'US_NADP_MDN_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_NADP_MDN/metadata/1.6/network_provided/US_NADP_MDN_META_20240613.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.977 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-172540.out b/download_scripts/log_files/log_20240613-172540.out new file mode 100644 index 0000000000000000000000000000000000000000..1838f2b03a0d6a91190b749cc2eb1d447ff59cc2 --- /dev/null +++ b/download_scripts/log_files/log_20240613-172540.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** +US_NADP_MDN metadata successful -- total: 0.393 min +++ download: 0.373 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.393 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240613-173207.out b/download_scripts/log_files/log_20240613-173207.out new file mode 100644 index 0000000000000000000000000000000000000000..17a9ef681a8c1dc16099cbd7cf24ff9f3d0596ca --- /dev/null +++ b/download_scripts/log_files/log_20240613-173207.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 19701-01 to 2024-06-13 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240614-101812.out b/download_scripts/log_files/log_20240614-101812.out new file mode 100644 index 0000000000000000000000000000000000000000..27385ddfad5853f86336c1491ecfc7ede77e3606 --- /dev/null +++ b/download_scripts/log_files/log_20240614-101812.out @@ -0,0 +1,36 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 20246-07 to 2024-06-14 +************************************************************************************************************** +BJMEMC successful -- total: 0.52 min +++ download: 0.46 min +++ rsync: 0.06 min +------------------------------------------------------------------------------------------------------------- + +CNEMC successful -- total: 0.541 min +++ download: 0.515 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_AirNow_DOS successful -- total: 1.946 min +++ download: 1.916 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +WMO_WDCGG successful -- total: 1.098 min +++ download: 1.03 min +++ rsync: 0.068 min +------------------------------------------------------------------------------------------------------------- + +JAPAN_NIES successful -- total: 7.853 min +++ download: 7.814 min +++ rsync: 0.04 min +------------------------------------------------------------------------------------------------------------- + +UK_AIR successful -- total: 6.06 min +++ download: 6.004 min +++ rsync: 0.056 min +------------------------------------------------------------------------------------------------------------- + +NOAA_ISD successful -- total: 17.008 min +++ download: 16.772 min +++ rsync: 0.235 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev1.5 successful -- total: 1.629 min +++ download: 1.603 min +++ rsync: 0.026 min +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev2.0 successful -- total: 0.508 min +++ download: 0.482 min +++ rsync: 0.026 min +------------------------------------------------------------------------------------------------------------- + +EEA_AQ_eReporting successful -- total: 3.643 min +++ download: 3.592 min +++ rsync: 0.051 min +------------------------------------------------------------------------------------------------------------- + +CHILE_SINCA successful -- total: 62.799 min +++ download: 62.731 min +++ rsync: 0.068 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240614-103741.out b/download_scripts/log_files/log_20240614-103741.out new file mode 100644 index 0000000000000000000000000000000000000000..dd66dd75ad65b52c3e1528ffa0bc0a2e2997ca52 --- /dev/null +++ b/download_scripts/log_files/log_20240614-103741.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240614-103902.out b/download_scripts/log_files/log_20240614-103902.out new file mode 100644 index 0000000000000000000000000000000000000000..dd66dd75ad65b52c3e1528ffa0bc0a2e2997ca52 --- /dev/null +++ b/download_scripts/log_files/log_20240614-103902.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240614-115613.out b/download_scripts/log_files/log_20240614-115613.out new file mode 100644 index 0000000000000000000000000000000000000000..dd66dd75ad65b52c3e1528ffa0bc0a2e2997ca52 --- /dev/null +++ b/download_scripts/log_files/log_20240614-115613.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240614-115718.out b/download_scripts/log_files/log_20240614-115718.out new file mode 100644 index 0000000000000000000000000000000000000000..c16397a6a89b89d8d3fca35531152d58e77a334b --- /dev/null +++ b/download_scripts/log_files/log_20240614-115718.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMON successful -- total: 0.075 min +++ download: 0.034 min +++ rsync: 0.042 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.076 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-120808.out b/download_scripts/log_files/log_20240614-120808.out new file mode 100644 index 0000000000000000000000000000000000000000..7e394ad28b9d714d9e183873c950f690f0e64a65 --- /dev/null +++ b/download_scripts/log_files/log_20240614-120808.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMON successful -- total: 0.073 min +++ download: 0.031 min +++ rsync: 0.041 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMON metadata unsuccessful -- duration 0.082 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_AIRMON_download.py", line 90, in download_metadata + with open('{}/US_NADP_AIRMON/metadata/{}/network_provided/US_NADP_AIRMON_META.csv'.format(dl_root,version), 'r') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_NADP_AIRMON/metadata/1.6/network_provided/US_NADP_AIRMON_META.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.082 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-121003.out b/download_scripts/log_files/log_20240614-121003.out new file mode 100644 index 0000000000000000000000000000000000000000..eb3ce66782415477963caef96b1b9317755e26df --- /dev/null +++ b/download_scripts/log_files/log_20240614-121003.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMON successful -- total: 0.071 min +++ download: 0.031 min +++ rsync: 0.039 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMON metadata unsuccessful -- duration 0.08 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_AIRMON_download.py", line 106, in download_metadata + with open(download_location+'US_NADP_AIRMON_META_{}.csv'.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_NADP_AIRMON/metadata/1.6/network_provided/US_NADP_AIRMON_META_20240614.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.08 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-122034.out b/download_scripts/log_files/log_20240614-122034.out new file mode 100644 index 0000000000000000000000000000000000000000..f15638f498e7f9c3ddec4cb654e6924c49efc6b2 --- /dev/null +++ b/download_scripts/log_files/log_20240614-122034.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMON successful -- total: 0.074 min +++ download: 0.032 min +++ rsync: 0.043 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMON metadata unsuccessful -- duration 0.083 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_AIRMON_download.py", line 110, in download_metadata + key = row['siteId'] +KeyError: 'siteId' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.083 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-122350.out b/download_scripts/log_files/log_20240614-122350.out new file mode 100644 index 0000000000000000000000000000000000000000..dd66dd75ad65b52c3e1528ffa0bc0a2e2997ca52 --- /dev/null +++ b/download_scripts/log_files/log_20240614-122350.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240614-122423.out b/download_scripts/log_files/log_20240614-122423.out new file mode 100644 index 0000000000000000000000000000000000000000..53d1370b12c56a7d09b252445a584c7ae808ed58 --- /dev/null +++ b/download_scripts/log_files/log_20240614-122423.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMoN successful -- total: 0.058 min +++ download: 0.032 min +++ rsync: 0.026 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMoN metadata unsuccessful -- duration 0.067 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_NADP_AIRMoN_download.py", line 110, in download_metadata + key = row['siteId'] +KeyError: 'siteId' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.067 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-122815.out b/download_scripts/log_files/log_20240614-122815.out new file mode 100644 index 0000000000000000000000000000000000000000..c2f31474ef960c42aa5b3f8470c6e1574e317ff5 --- /dev/null +++ b/download_scripts/log_files/log_20240614-122815.out @@ -0,0 +1,10 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +US_NADP_AIRMoN successful -- total: 0.062 min +++ download: 0.033 min +++ rsync: 0.029 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMoN metadata successful -- total: 0.088 min +++ download: 0.071 min +++ rsync: 0.018 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.088 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240614-150849.out b/download_scripts/log_files/log_20240614-150849.out new file mode 100644 index 0000000000000000000000000000000000000000..5083af7e7c0dd565fbc8fd7ebcf4eb90efddc522 --- /dev/null +++ b/download_scripts/log_files/log_20240614-150849.out @@ -0,0 +1,9 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-14 +************************************************************************************************************** +CANADA_NAPS successful -- total: 47.464 min +++ download: 47.433 min +++ rsync: 0.031 min +------------------------------------------------------------------------------------------------------------- + +CNEMC successful -- total: 242.965 min +++ download: 242.768 min +++ rsync: 0.197 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240617-084412.out b/download_scripts/log_files/log_20240617-084412.out new file mode 100644 index 0000000000000000000000000000000000000000..94acf0e3ba357a780e0ebb1d7098f34fe9d5e2ad --- /dev/null +++ b/download_scripts/log_files/log_20240617-084412.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +EANET successful -- total: 1.959 min +++ download: 1.902 min +++ rsync: 0.057 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240617-091008.out b/download_scripts/log_files/log_20240617-091008.out new file mode 100644 index 0000000000000000000000000000000000000000..92d168f2d03d80e912883f0795aa1c6bb9005035 --- /dev/null +++ b/download_scripts/log_files/log_20240617-091008.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +CAPMoN successful -- total: 8.655 min +++ download: 8.609 min +++ rsync: 0.046 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240617-095243.out b/download_scripts/log_files/log_20240617-095243.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-095243.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-100554.out b/download_scripts/log_files/log_20240617-100554.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-100554.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-104119.out b/download_scripts/log_files/log_20240617-104119.out new file mode 100644 index 0000000000000000000000000000000000000000..74951d91ff2298f63759377985ec6ca4192d63e1 --- /dev/null +++ b/download_scripts/log_files/log_20240617-104119.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +WMO_WDCGG successful -- total: 10.212 min +++ download: 10.103 min +++ rsync: 0.109 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 10.212 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-105550.out b/download_scripts/log_files/log_20240617-105550.out new file mode 100644 index 0000000000000000000000000000000000000000..b798c12e83f468cbad1f8e9982fa263e721b14cd --- /dev/null +++ b/download_scripts/log_files/log_20240617-105550.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +WMO_WDCGG data unsuccessful -- run for 2.974 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/WMO_WDCGG_download.py", line 84, in download_data + shutil.move(download_location+"txt/"+var[i], download_location) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 804, in move + raise Error("Destination path '%s' already exists" % real_dst) +shutil.Error: Destination path '/esarchive/obs/ghost/WMO_WDCGG/original_files/1.6/CO' already exists + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.976 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-111927.out b/download_scripts/log_files/log_20240617-111927.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-111927.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-113810.out b/download_scripts/log_files/log_20240617-113810.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-113810.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-115213.out b/download_scripts/log_files/log_20240617-115213.out new file mode 100644 index 0000000000000000000000000000000000000000..dec0f68c0c2cae010a7edbde0c156118c19707f2 --- /dev/null +++ b/download_scripts/log_files/log_20240617-115213.out @@ -0,0 +1,12 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +WMO_WDCGG metadata unsuccessful -- run for 0.011 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) +AttributeError: module 'WMO_WDCGG_download' has no attribute 'download_metadata' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.012 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-115301.out b/download_scripts/log_files/log_20240617-115301.out new file mode 100644 index 0000000000000000000000000000000000000000..e64c08a5e3880c4414726c89b20e862c71cae807 --- /dev/null +++ b/download_scripts/log_files/log_20240617-115301.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN metadata unsuccessful -- run for 0.244 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 121, in download_metadata + key = row['NAPS_ID'] +KeyError: 'NAPS_ID' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.244 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-115615.out b/download_scripts/log_files/log_20240617-115615.out new file mode 100644 index 0000000000000000000000000000000000000000..bef0d8a73d85e0338cbb2f7ba2f1422a1dc35446 --- /dev/null +++ b/download_scripts/log_files/log_20240617-115615.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN metadata successful -- total: 0.076 min +++ download: 0.052 min +++ rsync: 0.024 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.076 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-115824.out b/download_scripts/log_files/log_20240617-115824.out new file mode 100644 index 0000000000000000000000000000000000000000..b7d5336a10f45a762dee98450d438199d9e98bdd --- /dev/null +++ b/download_scripts/log_files/log_20240617-115824.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN metadata unsuccessful -- run for 0.06 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 133, in download_metadata + with open(download_location.format(today.strftime('%Y%m%d'))) as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/NZ_ECAN/metadata/1.6/network_provided/NZ_ECAN_META_20240617.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.06 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-115926.out b/download_scripts/log_files/log_20240617-115926.out new file mode 100644 index 0000000000000000000000000000000000000000..6d00e7306af7fdd2704cc556ba32a706343353b8 --- /dev/null +++ b/download_scripts/log_files/log_20240617-115926.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN metadata successful -- total: 0.072 min +++ download: 0.05 min +++ rsync: 0.021 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.072 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-120402.out b/download_scripts/log_files/log_20240617-120402.out new file mode 100644 index 0000000000000000000000000000000000000000..310b48a2f90c2d03ba8d99ed35434ace42c1a846 --- /dev/null +++ b/download_scripts/log_files/log_20240617-120402.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.02 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 57, in download_data + url = '{}/beijing_all_{}.csv'.format(base_url, day) +NameError: name 'day' is not defined + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.02 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-121218.out b/download_scripts/log_files/log_20240617-121218.out new file mode 100644 index 0000000000000000000000000000000000000000..5062c4ce083922b933bfde817c7b1259d1c1f424 --- /dev/null +++ b/download_scripts/log_files/log_20240617-121218.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.023 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 41, in download_data + station_codes = list(metadata.keys()).split('_')[0] +AttributeError: 'list' object has no attribute 'split' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.023 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-121309.out b/download_scripts/log_files/log_20240617-121309.out new file mode 100644 index 0000000000000000000000000000000000000000..6441894370ef40698b3ee7b71963e379fde3dad7 --- /dev/null +++ b/download_scripts/log_files/log_20240617-121309.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.013 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 41, in download_data + station_codes = list(metadata.keys()).split('_')[0] +AttributeError: 'list' object has no attribute 'split' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.014 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-121506.out b/download_scripts/log_files/log_20240617-121506.out new file mode 100644 index 0000000000000000000000000000000000000000..71485a16e9fa044159767c36b98289d34d8c7d1f --- /dev/null +++ b/download_scripts/log_files/log_20240617-121506.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.018 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 66, in download_data + url = '{}/beijing_all_{}.csv'.format(base_url, day) +NameError: name 'day' is not defined + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.018 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-121642.out b/download_scripts/log_files/log_20240617-121642.out new file mode 100644 index 0000000000000000000000000000000000000000..2328714465a73a8daf84891609be172af629d7cb --- /dev/null +++ b/download_scripts/log_files/log_20240617-121642.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.016 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 65, in download_data + url = '{}/beijing_all_{}.csv'.format(base_url, day) +NameError: name 'day' is not defined + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.016 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-121709.out b/download_scripts/log_files/log_20240617-121709.out new file mode 100644 index 0000000000000000000000000000000000000000..f753371c854f0ccc81f4fe53ca48d390a2b9e7e5 --- /dev/null +++ b/download_scripts/log_files/log_20240617-121709.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.012 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 65, in download_data + url = '{}/beijing_all_{}.csv'.format(base_url, day) +NameError: name 'day' is not defined + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.012 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-122924.out b/download_scripts/log_files/log_20240617-122924.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-122924.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-123650.out b/download_scripts/log_files/log_20240617-123650.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-123650.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-124551.out b/download_scripts/log_files/log_20240617-124551.out new file mode 100644 index 0000000000000000000000000000000000000000..1a5f7f9061835b7b9d690603396344d388e62d73 --- /dev/null +++ b/download_scripts/log_files/log_20240617-124551.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240617-125107.out b/download_scripts/log_files/log_20240617-125107.out new file mode 100644 index 0000000000000000000000000000000000000000..5fd78b566cfa75c2941ad430e4d4e960dbd99d35 --- /dev/null +++ b/download_scripts/log_files/log_20240617-125107.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 2.396 min +++ download: 2.361 min +++ rsync: 0.035 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.396 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-142706.out b/download_scripts/log_files/log_20240617-142706.out new file mode 100644 index 0000000000000000000000000000000000000000..fb67cb4fabc5ffb5b81244529dde760675fef1fe --- /dev/null +++ b/download_scripts/log_files/log_20240617-142706.out @@ -0,0 +1,61 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 3.1 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 445, in _make_request + six.raise_from(e, None) + File "", line 3, in raise_from + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 440, in _make_request + httplib_response = conn.getresponse() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1349, in getresponse + response.begin() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 316, in begin + version, status, reason = self._read_status() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 277, in _read_status + line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/socket.py", line 704, in readinto + return self._sock.recv_into(b) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 532, in increment + raise six.reraise(type(error), error, _stacktrace) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/packages/six.py", line 770, in reraise + raise value + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 447, in _make_request + self._raise_timeout(err=e, url=url, timeout_value=read_timeout) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 336, in _raise_timeout + raise ReadTimeoutError( +urllib3.exceptions.ReadTimeoutError: HTTPConnectionPool(host='data.ecan.govt.nz', port=80): Read timed out. (read timeout=10) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 69, in download_data + r = requests.get(base_url.format(temporal_resolution, station_ID, start_date, end_date), timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 578, in send + raise ReadTimeout(e, request=request) +requests.exceptions.ReadTimeout: HTTPConnectionPool(host='data.ecan.govt.nz', port=80): Read timed out. (read timeout=10) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 3.105 minutes \ No newline at end of file diff --git a/download_scripts/.gitkeep b/download_scripts/log_files/log_20240617-143334.out similarity index 100% rename from download_scripts/.gitkeep rename to download_scripts/log_files/log_20240617-143334.out diff --git a/download_scripts/log_files/log_20240617-144141.out b/download_scripts/log_files/log_20240617-144141.out new file mode 100644 index 0000000000000000000000000000000000000000..03573d61c9b7bdf44b0543ed45dbd0d58d957dca --- /dev/null +++ b/download_scripts/log_files/log_20240617-144141.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 17.124 min +++ download: 17.09 min +++ rsync: 0.033 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 17.124 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-160111.out b/download_scripts/log_files/log_20240617-160111.out new file mode 100644 index 0000000000000000000000000000000000000000..9fc21ae29e6c91dd2565985ddd71db5e157716b0 --- /dev/null +++ b/download_scripts/log_files/log_20240617-160111.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 15.715 min +++ download: 15.679 min +++ rsync: 0.036 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 15.716 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-164152.out b/download_scripts/log_files/log_20240617-164152.out new file mode 100644 index 0000000000000000000000000000000000000000..d89b77dcc0f5013a67f290766c9027d4980c2725 --- /dev/null +++ b/download_scripts/log_files/log_20240617-164152.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 1.447 min +++ download: 1.425 min +++ rsync: 0.022 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.447 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-165012.out b/download_scripts/log_files/log_20240617-165012.out new file mode 100644 index 0000000000000000000000000000000000000000..41a318a44f7c4b3c03fec8edeab62939d69c24dd --- /dev/null +++ b/download_scripts/log_files/log_20240617-165012.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN data unsuccessful -- run for 0.014 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 36, in download_data + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/NZ_ECAN/metadata/nrt/processed/NZ_ECAN_META.json' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.014 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-165307.out b/download_scripts/log_files/log_20240617-165307.out new file mode 100644 index 0000000000000000000000000000000000000000..efac952012c8cb3c84720fb1af17e309588cf3fb --- /dev/null +++ b/download_scripts/log_files/log_20240617-165307.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 1.32 min +++ download: 1.285 min +++ rsync: 0.035 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.32 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-165806.out b/download_scripts/log_files/log_20240617-165806.out new file mode 100644 index 0000000000000000000000000000000000000000..b7f70cbae3d53483961b99aa8e75afcf52840f85 --- /dev/null +++ b/download_scripts/log_files/log_20240617-165806.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 1.803 min +++ download: 1.764 min +++ rsync: 0.039 min +------------------------------------------------------------------------------------------------------------- + +NZ_ECAN metadata unsuccessful -- run for 1.836 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NZ_ECAN_download.py", line 165, in download_metadata + with open('{}/NZ_ECAN/metadata/{}/processed/NZ_ECAN_META.json'.format(dl_root, version), 'r', encoding='utf-8') as f: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/NZ_ECAN/metadata/nrt/processed/NZ_ECAN_META.json' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.836 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-170348.out b/download_scripts/log_files/log_20240617-170348.out new file mode 100644 index 0000000000000000000000000000000000000000..1f65ce8c179af309c517bf3fd611e7658383084c --- /dev/null +++ b/download_scripts/log_files/log_20240617-170348.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN metadata successful -- total: 0.092 min +++ download: 0.061 min +++ rsync: 0.031 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.093 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-172018.out b/download_scripts/log_files/log_20240617-172018.out new file mode 100644 index 0000000000000000000000000000000000000000..5f45bad315133652eef90718c9a0179bae974a86 --- /dev/null +++ b/download_scripts/log_files/log_20240617-172018.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA nrt, GHOST version 1.6, from 2024-06-10 to 2024-06-17 +************************************************************************************************************** +NZ_ECAN successful -- total: 1.814 min +++ download: 1.769 min +++ rsync: 0.044 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.814 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240617-172750.out b/download_scripts/log_files/log_20240617-172750.out new file mode 100644 index 0000000000000000000000000000000000000000..9acf70d92d21f7b73eb1a56607dacfae21f2af2c --- /dev/null +++ b/download_scripts/log_files/log_20240617-172750.out @@ -0,0 +1,13 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-17 +************************************************************************************************************** +US_NADP_AMNet successful -- total: 1.155 min +++ download: 1.116 min +++ rsync: 0.038 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AMoN successful -- total: 0.53 min +++ download: 0.508 min +++ rsync: 0.022 min +------------------------------------------------------------------------------------------------------------- + +NZ_ECAN successful -- total: 65.069 min +++ download: 64.988 min +++ rsync: 0.082 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 65.069 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-103606.out b/download_scripts/log_files/log_20240618-103606.out new file mode 100644 index 0000000000000000000000000000000000000000..5d27486655b0292c37ddfb15bf02f808c8106a69 --- /dev/null +++ b/download_scripts/log_files/log_20240618-103606.out @@ -0,0 +1,84 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 0.364 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +OSError: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1982.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 44, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1982.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +------------------------------------------------------------------------------------------------------------- + +NOAA_ISD successful -- total: 820.925 min +++ download: 802.923 min +++ rsync: 18.001 min +------------------------------------------------------------------------------------------------------------- + +WMO_WDCGG data unsuccessful -- run for 1578.473 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/WMO_WDCGG_download.py", line 82, in download_data + # move files +IndexError: list index out of range + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1578.475 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-105155.out b/download_scripts/log_files/log_20240618-105155.out new file mode 100644 index 0000000000000000000000000000000000000000..bed36165f0faab14530f5f61a1b5927c48b41e87 --- /dev/null +++ b/download_scripts/log_files/log_20240618-105155.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 0.41 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=10)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1988.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=10)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 44, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1988.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=10)')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.41 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-110311.out b/download_scripts/log_files/log_20240618-110311.out new file mode 100644 index 0000000000000000000000000000000000000000..4b4c34c440477d304a3caac03d7a5b9c75a9213e --- /dev/null +++ b/download_scripts/log_files/log_20240618-110311.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 2.596 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=20)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_2009.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=20)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 44, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_2009.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=20)')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.597 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-110900.out b/download_scripts/log_files/log_20240618-110900.out new file mode 100644 index 0000000000000000000000000000000000000000..b20095c5966898cdfe62ea2faba9de2780c2f649 --- /dev/null +++ b/download_scripts/log_files/log_20240618-110900.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 0.886 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=30)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1990.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=30)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 44, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1990.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=30)')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.886 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-111316.out b/download_scripts/log_files/log_20240618-111316.out new file mode 100644 index 0000000000000000000000000000000000000000..ca7bc10dc3cbabc06078d577b824fd00373c154b --- /dev/null +++ b/download_scripts/log_files/log_20240618-111316.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 2.152 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=60)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1997.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=60)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 44, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1997.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=60)')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.152 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-111744.out b/download_scripts/log_files/log_20240618-111744.out new file mode 100644 index 0000000000000000000000000000000000000000..49396c3588ed72b3d7513d472ac9b37b94d4200f --- /dev/null +++ b/download_scripts/log_files/log_20240618-111744.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 2.03 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=90)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=90)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 45, in download_data + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by ConnectTimeoutError(, 'Connection to www.aire.cdmx.gob.mx timed out. (connect timeout=90)')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.03 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-112413.out b/download_scripts/log_files/log_20240618-112413.out new file mode 100644 index 0000000000000000000000000000000000000000..0efbf4497687868c2149ecf5b11663a66019d067 --- /dev/null +++ b/download_scripts/log_files/log_20240618-112413.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 0.613 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +OSError: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 45, in download_data + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.613 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-112624.out b/download_scripts/log_files/log_20240618-112624.out new file mode 100644 index 0000000000000000000000000000000000000000..034c9d861e6fe7df0e761c8ca144cdd23fb96b5a --- /dev/null +++ b/download_scripts/log_files/log_20240618-112624.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 1.696 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +OSError: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1996.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 45, in download_data + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1996.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.696 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-112837.out b/download_scripts/log_files/log_20240618-112837.out new file mode 100644 index 0000000000000000000000000000000000000000..f16673b22bb53be5aa5ca4390ec75542a8f902a2 --- /dev/null +++ b/download_scripts/log_files/log_20240618-112837.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 1.076 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +OSError: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 45, in download_data + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1991.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.076 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-113659.out b/download_scripts/log_files/log_20240618-113659.out new file mode 100644 index 0000000000000000000000000000000000000000..4cdc19b65f2d681faa23047deb8a14136091e281 --- /dev/null +++ b/download_scripts/log_files/log_20240618-113659.out @@ -0,0 +1,71 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX data unsuccessful -- run for 0.126 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +OSError: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 394, in _make_request + conn.request(method, url, **httplib_request_kw) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 234, in request + super(HTTPConnection, self).request(method, url, body=body, headers=headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1257, in request + self._send_request(method, url, body, headers, encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1303, in _send_request + self.endheaders(body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1252, in endheaders + self._send_output(message_body, encode_chunked=encode_chunked) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 1012, in _send_output + self.send(msg) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/http/client.py", line 952, in send + self.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 200, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 113] No route to host + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1986.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 45, in download_data + r = requests.get(url, timeout=max_time_per_dl, headers=Headers) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.aire.cdmx.gob.mx', port=80): Max retries exceeded with url: /opendata/anuales_horarios_gz/contaminantes_1986.csv.gz (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 113] No route to host')) + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.127 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-115034.out b/download_scripts/log_files/log_20240618-115034.out new file mode 100644 index 0000000000000000000000000000000000000000..4a2bb9081866eaef51f7d8d6d2c7fb48d0f58f28 --- /dev/null +++ b/download_scripts/log_files/log_20240618-115034.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MEXICO_CDMX successful -- total: 12.338 min +++ download: 12.309 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 12.339 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-143818.out b/download_scripts/log_files/log_20240618-143818.out new file mode 100644 index 0000000000000000000000000000000000000000..60a736701c91ea79e4df661fb8f1589f651c883b --- /dev/null +++ b/download_scripts/log_files/log_20240618-143818.out @@ -0,0 +1,60 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +MITECO data unsuccessful -- run for 0.297 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MITECO_download.py", line 55, in download_data + driver = webdriver.Chrome(service=svc, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__ + super().__init__( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chromium/webdriver.py", line 61, in __init__ + super().__init__(command_executor=executor, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 208, in __init__ + self.start_session(capabilities) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 292, in start_session + response = self.execute(Command.NEW_SESSION, caps)["value"] + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 347, in execute + self.error_handler.check_response(response) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py", line 229, in check_response + raise exception_class(message, screen, stacktrace) +selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally. + (unknown error: DevToolsActivePort file doesn't exist) + (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.) +Stacktrace: +#0 0x55a33540e463 +#1 0x55a3351d28d8 +#2 0x55a3351fab6a +#3 0x55a3351f5c05 +#4 0x55a335239802 +#5 0x55a3352392af +#6 0x55a335231443 +#7 0x55a3352023c5 +#8 0x55a335203531 +#9 0x55a335460dce +#10 0x55a335464192 +#11 0x55a33544593e +#12 0x55a335465103 +#13 0x55a335438d85 +#14 0x55a3354860a8 +#15 0x55a335486239 +#16 0x55a3354a1492 +#17 0x7f18d84db1cf start_thread + + +------------------------------------------------------------------------------------------------------------- + +US_EPA_CASTNET data unsuccessful -- run for 8.307 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_CASTNET_download.py", line 191, in download_data + with zipfile.ZipFile(storage_location.format(variable, variable, "allyears"), 'r') as zip_ref: + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1239, in __init__ + self.fp = io.open(file, filemode) +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_EPA_CASTNET/original_files/1.6/drychem/drychem_allyears.zip' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 8.308 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-153830.out b/download_scripts/log_files/log_20240618-153830.out new file mode 100644 index 0000000000000000000000000000000000000000..8e2ba7c371d16f32e3319a114931ea3a2be5b157 --- /dev/null +++ b/download_scripts/log_files/log_20240618-153830.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_CASTNET data unsuccessful -- run for 9.006 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_CASTNET_download.py", line 212, in download_data + file.write(r.content) +TypeError: write() argument must be str, not bytes + +------------------------------------------------------------------------------------------------------------- + +MITECO successful -- total: 12.889 min +++ download: 12.86 min +++ rsync: 0.029 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 12.889 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-160511.out b/download_scripts/log_files/log_20240618-160511.out new file mode 100644 index 0000000000000000000000000000000000000000..ec03580f229d1d769db4a655e3bcd7da977bbaf8 --- /dev/null +++ b/download_scripts/log_files/log_20240618-160511.out @@ -0,0 +1,10 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 8.803 min +++ download: 8.773 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_AirNow_DOS successful -- total: 60.679 min +++ download: 60.635 min +++ rsync: 0.044 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 60.68 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-163836.out b/download_scripts/log_files/log_20240618-163836.out new file mode 100644 index 0000000000000000000000000000000000000000..1aeefbb71b127508f781e39a59de5f1ddc05cc60 --- /dev/null +++ b/download_scripts/log_files/log_20240618-163836.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.112 min +++ download: 0.084 min +++ rsync: 0.027 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.112 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-163942.out b/download_scripts/log_files/log_20240618-163942.out new file mode 100644 index 0000000000000000000000000000000000000000..b337eba2233377eaa7dbcc1d7b0602aaf73c44b7 --- /dev/null +++ b/download_scripts/log_files/log_20240618-163942.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.136 min +++ download: 0.108 min +++ rsync: 0.028 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.136 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-164916.out b/download_scripts/log_files/log_20240618-164916.out new file mode 100644 index 0000000000000000000000000000000000000000..806a4e94cb196c2a2bf38a2ba7841ff289af9ea7 --- /dev/null +++ b/download_scripts/log_files/log_20240618-164916.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_CASTNET successful -- total: 0.12 min +++ download: 0.09 min +++ rsync: 0.03 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.12 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-173115.out b/download_scripts/log_files/log_20240618-173115.out new file mode 100644 index 0000000000000000000000000000000000000000..8baa531b302aa744f8d0498f64454accbd936f59 --- /dev/null +++ b/download_scripts/log_files/log_20240618-173115.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +US_EPA_AirNow_DOS data unsuccessful -- run for 0.338 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_AirNow_DOS_download.py", line 72, in download_data + with open(dl_root+'/US_EPA_AirNow_DOS/original_files/'+version+'/'+local_filename, 'wb') as outfile: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/US_EPA_AirNow_DOS/original_files/1.6//tmp/tmpryd1kktj' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.338 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-174720.out b/download_scripts/log_files/log_20240618-174720.out new file mode 100644 index 0000000000000000000000000000000000000000..38df35cc015307a4f82d919994955492c45cda18 --- /dev/null +++ b/download_scripts/log_files/log_20240618-174720.out @@ -0,0 +1,51 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +JAPAN_NIES data unsuccessful -- run for 0.146 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 130, in download_data + driver = webdriver.Chrome(service=svc, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__ + super().__init__( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chromium/webdriver.py", line 61, in __init__ + super().__init__(command_executor=executor, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 208, in __init__ + self.start_session(capabilities) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 292, in start_session + response = self.execute(Command.NEW_SESSION, caps)["value"] + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 347, in execute + self.error_handler.check_response(response) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py", line 229, in check_response + raise exception_class(message, screen, stacktrace) +selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally. + (unknown error: DevToolsActivePort file doesn't exist) + (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.) +Stacktrace: +#0 0x55a484e83463 +#1 0x55a484c478d8 +#2 0x55a484c6fb6a +#3 0x55a484c6ac05 +#4 0x55a484cae802 +#5 0x55a484cae2af +#6 0x55a484ca6443 +#7 0x55a484c773c5 +#8 0x55a484c78531 +#9 0x55a484ed5dce +#10 0x55a484ed9192 +#11 0x55a484eba93e +#12 0x55a484eda103 +#13 0x55a484eadd85 +#14 0x55a484efb0a8 +#15 0x55a484efb239 +#16 0x55a484f16492 +#17 0x7f3cff02a1cf start_thread + + +------------------------------------------------------------------------------------------------------------- + +CHILE_SINCA successful -- total: 284.98 min +++ download: 284.785 min +++ rsync: 0.195 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 284.98 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240618-174956.out b/download_scripts/log_files/log_20240618-174956.out new file mode 100644 index 0000000000000000000000000000000000000000..78f5d3441ec37261e00097758cc2eba90c0f1a3b --- /dev/null +++ b/download_scripts/log_files/log_20240618-174956.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-18 +************************************************************************************************************** +JAPAN_NIES data unsuccessful -- run for 0.338 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 140, in download_data + filename = [file for file in os.listdir(download_location.format(version)) if os.path.isfile(os.path.join(download_location.format(version), file))][0] +IndexError: list index out of range + +------------------------------------------------------------------------------------------------------------- + +CHILE_SINCA successful -- total: 285.157 min +++ download: 285.033 min +++ rsync: 0.124 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 285.157 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-101519.out b/download_scripts/log_files/log_20240619-101519.out new file mode 100644 index 0000000000000000000000000000000000000000..b155330c7577a5cec2dacceaff50f01f5f485e07 --- /dev/null +++ b/download_scripts/log_files/log_20240619-101519.out @@ -0,0 +1,63 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +AERONET_v3_lev2.0 data unsuccessful -- run for 17.298 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 411, in connect + self.sock = ssl_wrap_socket( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket + ssl_sock = _ssl_wrap_socket_impl( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl + return ssl_context.wrap_socket(sock, server_hostname=server_hostname) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 500, in wrap_socket + return self.sslsocket_class._create( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1040, in _create + self.do_handshake() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1309, in do_handshake + self._sslobj.do_handshake() +socket.timeout: _ssl.c:1112: The handshake operation timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 532, in increment + raise six.reraise(type(error), error, _stacktrace) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/packages/six.py", line 770, in reraise + raise value + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 385, in _make_request + self._raise_timeout(err=e, url=url, timeout_value=conn.timeout) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 336, in _raise_timeout + raise ReadTimeoutError( +urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/AERONET_v3_lev20_download.py", line 53, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 578, in send + raise ReadTimeout(e, request=request) +requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240619-104836.out b/download_scripts/log_files/log_20240619-104836.out new file mode 100644 index 0000000000000000000000000000000000000000..85675536d05001eb08a1fa0256c8821093c177e6 --- /dev/null +++ b/download_scripts/log_files/log_20240619-104836.out @@ -0,0 +1,123 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +AERONET_v3_lev1.5 data unsuccessful -- run for 0.223 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 411, in connect + self.sock = ssl_wrap_socket( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket + ssl_sock = _ssl_wrap_socket_impl( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl + return ssl_context.wrap_socket(sock, server_hostname=server_hostname) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 500, in wrap_socket + return self.sslsocket_class._create( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1040, in _create + self.do_handshake() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1309, in do_handshake + self._sslobj.do_handshake() +socket.timeout: _ssl.c:1112: The handshake operation timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 532, in increment + raise six.reraise(type(error), error, _stacktrace) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/packages/six.py", line 770, in reraise + raise value + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 385, in _make_request + self._raise_timeout(err=e, url=url, timeout_value=conn.timeout) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 336, in _raise_timeout + raise ReadTimeoutError( +urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/AERONET_v3_lev15_download.py", line 54, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 578, in send + raise ReadTimeout(e, request=request) +requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +------------------------------------------------------------------------------------------------------------- + +AERONET_v3_lev2.0 data unsuccessful -- run for 0.224 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 411, in connect + self.sock = ssl_wrap_socket( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket + ssl_sock = _ssl_wrap_socket_impl( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl + return ssl_context.wrap_socket(sock, server_hostname=server_hostname) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 500, in wrap_socket + return self.sslsocket_class._create( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1040, in _create + self.do_handshake() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1309, in do_handshake + self._sslobj.do_handshake() +socket.timeout: _ssl.c:1112: The handshake operation timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 532, in increment + raise six.reraise(type(error), error, _stacktrace) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/packages/six.py", line 770, in reraise + raise value + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 385, in _make_request + self._raise_timeout(err=e, url=url, timeout_value=conn.timeout) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 336, in _raise_timeout + raise ReadTimeoutError( +urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/AERONET_v3_lev20_download.py", line 53, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 578, in send + raise ReadTimeout(e, request=request) +requests.exceptions.ReadTimeout: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Read timed out. (read timeout=1) + +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240619-105646.out b/download_scripts/log_files/log_20240619-105646.out new file mode 100644 index 0000000000000000000000000000000000000000..5c0e3bc60848cd8df42b6b4402b6befeb554cdc7 --- /dev/null +++ b/download_scripts/log_files/log_20240619-105646.out @@ -0,0 +1,57 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +AERONET_v3_lev1.5 data unsuccessful -- run for 1782.948 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 411, in connect + self.sock = ssl_wrap_socket( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 449, in ssl_wrap_socket + ssl_sock = _ssl_wrap_socket_impl( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/ssl_.py", line 493, in _ssl_wrap_socket_impl + return ssl_context.wrap_socket(sock, server_hostname=server_hostname) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 500, in wrap_socket + return self.sslsocket_class._create( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1040, in _create + self.do_handshake() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/ssl.py", line 1309, in do_handshake + self._sslobj.do_handshake() +ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1129) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Max retries exceeded with url: /cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1129)'))) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/AERONET_v3_lev15_download.py", line 54, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 563, in send + raise SSLError(e, request=request) +requests.exceptions.SSLError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Max retries exceeded with url: /cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1129)'))) + +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240619-112117.out b/download_scripts/log_files/log_20240619-112117.out new file mode 100644 index 0000000000000000000000000000000000000000..e374236c2e0799c3c4f1e25db9892554a0b9d08d --- /dev/null +++ b/download_scripts/log_files/log_20240619-112117.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240619-112718.out b/download_scripts/log_files/log_20240619-112718.out new file mode 100644 index 0000000000000000000000000000000000000000..eb49049f790a680f78cb09919fb550d6f11a086c --- /dev/null +++ b/download_scripts/log_files/log_20240619-112718.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +US_EPA_AirNow_DOS data unsuccessful -- run for 0.283 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_AirNow_DOS_download.py", line 71, in download_data + urllib.request.urlretrieve(url, dl_root+'/US_EPA_AirNow_DOS/original_files/'+version+'/temp/') + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/urllib/request.py", line 249, in urlretrieve + tfp = open(filename, 'wb') +IsADirectoryError: [Errno 21] Is a directory: '/esarchive/obs/ghost/US_EPA_AirNow_DOS/original_files/1.6/temp/' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.283 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-114327.out b/download_scripts/log_files/log_20240619-114327.out new file mode 100644 index 0000000000000000000000000000000000000000..6d67477f2111751df9bf77f226d59f18d83c9525 --- /dev/null +++ b/download_scripts/log_files/log_20240619-114327.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +US_EPA_AirNow_DOS data unsuccessful -- run for 0.25 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_AirNow_DOS_download.py", line 71, in download_data + d = r.headers['content-disposition'] + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/structures.py", line 52, in __getitem__ + return self._store[key.lower()][1] +KeyError: 'content-disposition' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.25 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-114532.out b/download_scripts/log_files/log_20240619-114532.out new file mode 100644 index 0000000000000000000000000000000000000000..8f115eb1fe2596b3446deb91fabfe9edff1f7f0e --- /dev/null +++ b/download_scripts/log_files/log_20240619-114532.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +US_EPA_AirNow_DOS data unsuccessful -- run for 0.282 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/US_EPA_AirNow_DOS_download.py", line 73, in download_data + urllib.request.urlretrieve(url, dl_root+'/US_EPA_AirNow_DOS/original_files/'+version+'/temp/') + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/urllib/request.py", line 249, in urlretrieve + tfp = open(filename, 'wb') +IsADirectoryError: [Errno 21] Is a directory: '/esarchive/obs/ghost/US_EPA_AirNow_DOS/original_files/1.6/temp/' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.284 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-114827.out b/download_scripts/log_files/log_20240619-114827.out new file mode 100644 index 0000000000000000000000000000000000000000..0d63917ddc65e741c63626e5b5fc9f2eb865d96a --- /dev/null +++ b/download_scripts/log_files/log_20240619-114827.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +US_EPA_AirNow_DOS successful -- total: 34.794 min +++ download: 34.758 min +++ rsync: 0.036 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 34.794 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-121819.out b/download_scripts/log_files/log_20240619-121819.out new file mode 100644 index 0000000000000000000000000000000000000000..e79725f2891894da8490e149a507d1b5d902a14c --- /dev/null +++ b/download_scripts/log_files/log_20240619-121819.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +NZ_LAWA successful -- total: 0.792 min +++ download: 0.771 min +++ rsync: 0.021 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.792 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-122311.out b/download_scripts/log_files/log_20240619-122311.out new file mode 100644 index 0000000000000000000000000000000000000000..f65be09d19d6b3b0d4998f0cdffc5d9eba463de8 --- /dev/null +++ b/download_scripts/log_files/log_20240619-122311.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +NZ_LAWA successful -- total: 0.722 min +++ download: 0.7 min +++ rsync: 0.022 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.722 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-124410.out b/download_scripts/log_files/log_20240619-124410.out new file mode 100644 index 0000000000000000000000000000000000000000..b02d197d3bab3ead4197cfb92448b398a587cb88 --- /dev/null +++ b/download_scripts/log_files/log_20240619-124410.out @@ -0,0 +1,27 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +WMO_WDCGG data unsuccessful -- run for 3.42 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 806, in move + os.rename(src, real_dst) +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/WMO_WDCGG/original_files/1.6/txt/co' -> '/esarchive/obs/ghost/WMO_WDCGG/original_files/1.6/txt/CO' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/WMO_WDCGG_download.py", line 82, in download_data + shutil.move(download_location+"txt/"+variable, download_location+"txt/"+var[i]) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 826, in move + copy_function(src, real_dst) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 435, in copy2 + copyfile(src, dst, follow_symlinks=follow_symlinks) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 264, in copyfile + with open(src, 'rb') as fsrc, open(dst, 'wb') as fdst: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/WMO_WDCGG/original_files/1.6/txt/co' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 3.421 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-125056.out b/download_scripts/log_files/log_20240619-125056.out new file mode 100644 index 0000000000000000000000000000000000000000..e374236c2e0799c3c4f1e25db9892554a0b9d08d --- /dev/null +++ b/download_scripts/log_files/log_20240619-125056.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240619-125839.out b/download_scripts/log_files/log_20240619-125839.out new file mode 100644 index 0000000000000000000000000000000000000000..3a0f0432b3c2a4f7c3a94f944039342b0da62e69 --- /dev/null +++ b/download_scripts/log_files/log_20240619-125839.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +WMO_WDCGG data unsuccessful -- run for 2.248 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/WMO_WDCGG_download.py", line 83, in download_data + shutil.move(download_location+"txt/"+variable, download_location+var[i]+'/') + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/shutil.py", line 804, in move + raise Error("Destination path '%s' already exists" % real_dst) +shutil.Error: Destination path '/esarchive/obs/ghost/WMO_WDCGG/original_files/1.6/CO/co' already exists + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.249 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-130706.out b/download_scripts/log_files/log_20240619-130706.out new file mode 100644 index 0000000000000000000000000000000000000000..7269ae45781907cc768cedd361b7c197f8c1e7ee --- /dev/null +++ b/download_scripts/log_files/log_20240619-130706.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +WMO_WDCGG successful -- total: 10.505 min +++ download: 10.465 min +++ rsync: 0.04 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 10.505 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-142958.out b/download_scripts/log_files/log_20240619-142958.out new file mode 100644 index 0000000000000000000000000000000000000000..1fadfea60e658fc3fc11c68c54be4cbe3fe511a4 --- /dev/null +++ b/download_scripts/log_files/log_20240619-142958.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES data unsuccessful -- run for 0.898 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 140, in download_data + filename = [file for file in os.listdir(download_location.format(version)) if os.path.isfile(os.path.join(download_location.format(version), file))][0] +IndexError: list index out of range + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.899 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-143715.out b/download_scripts/log_files/log_20240619-143715.out new file mode 100644 index 0000000000000000000000000000000000000000..667724d304437584b63dd5aa8ceaf6b5b4435365 --- /dev/null +++ b/download_scripts/log_files/log_20240619-143715.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES data unsuccessful -- run for 2.692 min +++ +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 171, in download_data + with zipfile.ZipFile(download_location.format(version)+'monthly/{}'.format(file), 'r') as zip_ref: + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1239, in __init__ + self.fp = io.open(file, filemode) +IsADirectoryError: [Errno 21] Is a directory: '/esarchive/obs/ghost/JAPAN_NIES/original_files/1.6/monthly/1971' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 2.696 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-144906.out b/download_scripts/log_files/log_20240619-144906.out new file mode 100644 index 0000000000000000000000000000000000000000..ffdb8d87a2b94aa34af09eafd2322358ae78f7df --- /dev/null +++ b/download_scripts/log_files/log_20240619-144906.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES successful -- total: 20.065 min +++ download: 19.85 min +++ rsync: 0.214 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 20.066 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-151753.out b/download_scripts/log_files/log_20240619-151753.out new file mode 100644 index 0000000000000000000000000000000000000000..7d4d2bdd1dcfd504c57565d970483b62fcf04262 --- /dev/null +++ b/download_scripts/log_files/log_20240619-151753.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES successful -- total: 18.454 min +++ download: 18.281 min +++ rsync: 0.173 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 18.454 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-151911.out b/download_scripts/log_files/log_20240619-151911.out new file mode 100644 index 0000000000000000000000000000000000000000..3225969b4db35f80d46963c0401f2838ac30d246 --- /dev/null +++ b/download_scripts/log_files/log_20240619-151911.out @@ -0,0 +1,28 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 0.426 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 404, in download_metadata + data1970 = pd.read_csv('{}/JAPAN_NIES/metadata/{}/network_provided/temp/TM19700000.txt'.format(dl_root,version), sep=',', encoding='ISO-8859-1') + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/util/_decorators.py", line 211, in wrapper + return func(*args, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/util/_decorators.py", line 331, in wrapper + return func(*args, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 950, in read_csv + return _read(filepath_or_buffer, kwds) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 605, in _read + parser = TextFileReader(filepath_or_buffer, **kwds) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1442, in __init__ + self._engine = self._make_engine(f, self.engine) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1735, in _make_engine + self.handles = get_handle( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/common.py", line 856, in get_handle + handle = open( +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/JAPAN_NIES/metadata/1.6/network_provided/temp/TM19700000.txt' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.427 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-152819.out b/download_scripts/log_files/log_20240619-152819.out new file mode 100644 index 0000000000000000000000000000000000000000..148e90144647235fe8c10c932bf4bba0f119d90e --- /dev/null +++ b/download_scripts/log_files/log_20240619-152819.out @@ -0,0 +1,28 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 1.281 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 416, in download_metadata + data = pd.read_csv('{}/JAPAN_NIES/metadata/{}/network_provided/temp/TM{}0000.txt'.format(dl_root,version, year.strftime('%Y')), encoding='ISO-8859-1') + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/util/_decorators.py", line 211, in wrapper + return func(*args, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/util/_decorators.py", line 331, in wrapper + return func(*args, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 950, in read_csv + return _read(filepath_or_buffer, kwds) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 605, in _read + parser = TextFileReader(filepath_or_buffer, **kwds) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1442, in __init__ + self._engine = self._make_engine(f, self.engine) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/parsers/readers.py", line 1735, in _make_engine + self.handles = get_handle( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/pandas/1.5.3-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/pandas/io/common.py", line 856, in get_handle + handle = open( +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/JAPAN_NIES/metadata/1.6/network_provided/temp/TM19700000.txt' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.281 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-153322.out b/download_scripts/log_files/log_20240619-153322.out new file mode 100644 index 0000000000000000000000000000000000000000..e333503d179f4b86334ddce2a698c2a698680a74 --- /dev/null +++ b/download_scripts/log_files/log_20240619-153322.out @@ -0,0 +1,18 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 1.137 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 397, in download_metadata + with zipfile.ZipFile(download_location+file, 'r') as zip_ref: + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1257, in __init__ + self._RealGetContents() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1324, in _RealGetContents + raise BadZipFile("File is not a zip file") +zipfile.BadZipFile: File is not a zip file + +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.139 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-153950.out b/download_scripts/log_files/log_20240619-153950.out new file mode 100644 index 0000000000000000000000000000000000000000..69f6fdbbe4ea6595d6d7ce4d877708f561f9fb44 --- /dev/null +++ b/download_scripts/log_files/log_20240619-153950.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 11.273 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 445, in download_metadata + f.write(json.dumps(json_metadata, indent=4, ensure_ascii=False)) +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/JAPAN_NIES/metadata/1.6/network_provided/temp/JAPAN_NIES_META_1970.json' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 11.279 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-155044.out b/download_scripts/log_files/log_20240619-155044.out new file mode 100644 index 0000000000000000000000000000000000000000..a1ad44fce0790b271c7ec5793cec17ea69553b76 --- /dev/null +++ b/download_scripts/log_files/log_20240619-155044.out @@ -0,0 +1,16 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 0.292 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 372, in download_metadata + switch_panels(driver, 3, max_time_per_dl) # 3 stands for station tab + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 28, in switch_panels + print('Started downloading {}'.foramt(tab_index)) +AttributeError: 'str' object has no attribute 'foramt' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.293 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-155241.out b/download_scripts/log_files/log_20240619-155241.out new file mode 100644 index 0000000000000000000000000000000000000000..5b376a6f60a5ea2f7710ce0bfbcfd47622937c6c --- /dev/null +++ b/download_scripts/log_files/log_20240619-155241.out @@ -0,0 +1,18 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 0.983 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 401, in download_metadata + with zipfile.ZipFile(download_location+file, 'r') as zip_ref: + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1257, in __init__ + self._RealGetContents() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/zipfile.py", line 1324, in _RealGetContents + raise BadZipFile("File is not a zip file") +zipfile.BadZipFile: File is not a zip file + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.985 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-160611.out b/download_scripts/log_files/log_20240619-160611.out new file mode 100644 index 0000000000000000000000000000000000000000..0ecff8f936a279c3764c8b7b5adbe945686737ea --- /dev/null +++ b/download_scripts/log_files/log_20240619-160611.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata unsuccessful -- run for 12.012 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/JAPAN_NIES_download.py", line 449, in download_metadata + with open('{}/JAPAN_NIES/metadata/{}/network_provided/temp/JAPAN_NIES_META_1970.json'.format(dl_root,version), 'r', encoding='ISO-8859-1') as f: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/JAPAN_NIES/metadata/1.6/network_provided/temp/JAPAN_NIES_META_1970.json' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 12.018 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-162319.out b/download_scripts/log_files/log_20240619-162319.out new file mode 100644 index 0000000000000000000000000000000000000000..14a72bc1e7f4bd1fa57ce03f10d2ffcd24164b02 --- /dev/null +++ b/download_scripts/log_files/log_20240619-162319.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +JAPAN_NIES metadata successful -- total: 14.71 min +++ download: 14.678 min +++ rsync: 0.033 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 14.711 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-162841.out b/download_scripts/log_files/log_20240619-162841.out new file mode 100644 index 0000000000000000000000000000000000000000..e374236c2e0799c3c4f1e25db9892554a0b9d08d --- /dev/null +++ b/download_scripts/log_files/log_20240619-162841.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240619-165040.out b/download_scripts/log_files/log_20240619-165040.out new file mode 100644 index 0000000000000000000000000000000000000000..cf9358f2a46629e157e022ffe22da6ec68853b98 --- /dev/null +++ b/download_scripts/log_files/log_20240619-165040.out @@ -0,0 +1,20 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +EANET metadata successful -- total: 0.324 min +++ download: 0.3 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +CAPMoN metadata unsuccessful -- run for 0.026 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/CAPMoN_download.py", line 156, in download_metadata + with open(download_location.format(today.strftime('%Y%m%d')), 'wb') as outfile: +IndexError: Replacement index 1 out of range for positional args tuple + +------------------------------------------------------------------------------------------------------------- + +CANADA_NAPS metadata successful -- total: 0.076 min +++ download: 0.057 min +++ rsync: 0.019 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.427 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-165954.out b/download_scripts/log_files/log_20240619-165954.out new file mode 100644 index 0000000000000000000000000000000000000000..3f3f2de63c78f24b78103f0095cee8cd70657436 --- /dev/null +++ b/download_scripts/log_files/log_20240619-165954.out @@ -0,0 +1,22 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +CAPMoN metadata successful -- total: 0.09 min +++ download: 0.053 min +++ rsync: 0.036 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AMNet metadata successful -- total: 0.593 min +++ download: 0.569 min +++ rsync: 0.023 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AMoN metadata successful -- total: 0.359 min +++ download: 0.339 min +++ rsync: 0.019 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_NTN metadata successful -- total: 0.383 min +++ download: 0.364 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_MDN metadata successful -- total: 0.374 min +++ download: 0.354 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +US_NADP_AIRMoN metadata successful -- total: 0.047 min +++ download: 0.028 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 1.846 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-171355.out b/download_scripts/log_files/log_20240619-171355.out new file mode 100644 index 0000000000000000000000000000000000000000..ac3b207658d4ee622f0eb9660652ad8546ecbf55 --- /dev/null +++ b/download_scripts/log_files/log_20240619-171355.out @@ -0,0 +1,24 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +MEXICO_CDMX metadata unsuccessful -- run for 0.041 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MEXICO_CDMX_download.py", line 94, in download_metadata + with open(download_location.format('_unformatted'), 'wb') as outfile: +IndexError: Replacement index 1 out of range for positional args tuple + +------------------------------------------------------------------------------------------------------------- + +MITECO metadata unsuccessful -- run for 0.052 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MITECO_download.py", line 253, in download_metadata + with open(download_location.format(today.strftime('%Y%m%d')), encoding='ISO-8859-1') as file: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/MITECO/metadata/1.6/network_provided/MITECO_META_20240619.xlsx' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.093 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240619-172401.out b/download_scripts/log_files/log_20240619-172401.out new file mode 100644 index 0000000000000000000000000000000000000000..5f31242f8c3b4166beb89189f8983a47b2c3c0a4 --- /dev/null +++ b/download_scripts/log_files/log_20240619-172401.out @@ -0,0 +1,17 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-19 +************************************************************************************************************** +MEXICO_CDMX metadata successful -- total: 0.192 min +++ download: 0.123 min +++ rsync: 0.069 min +------------------------------------------------------------------------------------------------------------- + +MITECO metadata unsuccessful -- run for 0.06 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MITECO_download.py", line 257, in download_metadata + key = row['COD_ESTACION_DEM'] +KeyError: 'COD_ESTACION_DEM' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.253 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-103734.out b/download_scripts/log_files/log_20240620-103734.out new file mode 100644 index 0000000000000000000000000000000000000000..d8a90d37b886c34915df27ae16bbadd785cee77a --- /dev/null +++ b/download_scripts/log_files/log_20240620-103734.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +MITECO metadata unsuccessful -- run for 0.44 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/MITECO_download.py", line 303, in download_metadata + with open('{}/MITECO/metadata/{}/network_provided/MITECO_META_{}.json'.format(dl_root, version, today.strftime('%Y%m%d')), 'r', encoding='ISO-8859-1') as f: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/MITECO/metadata/1.6/network_provided/MITECO_META_20240620.json' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.44 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-104122.out b/download_scripts/log_files/log_20240620-104122.out new file mode 100644 index 0000000000000000000000000000000000000000..fd0c4178afa03ef708076af9b9d39cd79f2ef151 --- /dev/null +++ b/download_scripts/log_files/log_20240620-104122.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +MITECO metadata successful -- total: 0.083 min +++ download: 0.054 min +++ rsync: 0.029 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.083 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-105232.out b/download_scripts/log_files/log_20240620-105232.out new file mode 100644 index 0000000000000000000000000000000000000000..58e359d9ea6eb32d2e0d4536cae8636f7c9e82af --- /dev/null +++ b/download_scripts/log_files/log_20240620-105232.out @@ -0,0 +1,20 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +CHILE_SINCA metadata successful -- total: 12.266 min +++ download: 12.226 min +++ rsync: 0.039 min +------------------------------------------------------------------------------------------------------------- + +US_EPA_CASTNET metadata successful -- total: 0.052 min +++ download: 0.032 min +++ rsync: 0.02 min +------------------------------------------------------------------------------------------------------------- + +NOAA_ISD metadata unsuccessful -- run for 0.027 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NOAA_ISD_download.py", line 108, in download_metadata + with open(download_location.format(version, today.strftime('%Y%m%d')), 'wb') as outfile: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/NOAA_ISD/metdata/1.6/network_provided/NOAA_ISD_META_20240620.csv' + +------------------------------------------------------------------------------------------------------------- + +Total duration: 12.345 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-112425.out b/download_scripts/log_files/log_20240620-112425.out new file mode 100644 index 0000000000000000000000000000000000000000..e2b7032ca45c714118f185945f22368f8e83e5a8 --- /dev/null +++ b/download_scripts/log_files/log_20240620-112425.out @@ -0,0 +1,14 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +NOAA_ISD metadata unsuccessful -- run for 0.054 minutes +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 68, in download_network + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/NOAA_ISD_download.py", line 146, in download_metadata + with open(download_location.format(today.strftime('%Y%m%d')), encoding='utf-8') as file: +IndexError: Replacement index 1 out of range for positional args tuple + +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.054 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-112601.out b/download_scripts/log_files/log_20240620-112601.out new file mode 100644 index 0000000000000000000000000000000000000000..c6c77a727f8033ce67d5fd0e38dc3aa802277987 --- /dev/null +++ b/download_scripts/log_files/log_20240620-112601.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +NOAA_ISD metadata successful -- total: 0.199 min +++ download: 0.175 min +++ rsync: 0.025 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 0.199 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240620-113140.out b/download_scripts/log_files/log_20240620-113140.out new file mode 100644 index 0000000000000000000000000000000000000000..8463271a571c74430650c787f6ab9fb460e0d60d --- /dev/null +++ b/download_scripts/log_files/log_20240620-113140.out @@ -0,0 +1,6 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +UK_AIR metadata successful -- total: 2.764 min +++ download: 2.73 min +++ rsync: 0.034 min +------------------------------------------------------------------------------------------------------------- + diff --git a/download_scripts/log_files/log_20240620-114607.out b/download_scripts/log_files/log_20240620-114607.out new file mode 100644 index 0000000000000000000000000000000000000000..c466c6df249668a65ae5137595d7175317f2b755 --- /dev/null +++ b/download_scripts/log_files/log_20240620-114607.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240620-142507.out b/download_scripts/log_files/log_20240620-142507.out new file mode 100644 index 0000000000000000000000000000000000000000..c466c6df249668a65ae5137595d7175317f2b755 --- /dev/null +++ b/download_scripts/log_files/log_20240620-142507.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240620-143545.out b/download_scripts/log_files/log_20240620-143545.out new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/download_scripts/log_files/log_20240620-173018.out b/download_scripts/log_files/log_20240620-173018.out new file mode 100644 index 0000000000000000000000000000000000000000..cc2ddaccc19ceaa9c74730ef270fac87f7b60895 --- /dev/null +++ b/download_scripts/log_files/log_20240620-173018.out @@ -0,0 +1,64 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-20 +************************************************************************************************************** +AERONET_v3_lev1.5 data unsuccessful -- run for 19.3 min +++ +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 73, in create_connection + for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/socket.py", line 953, in getaddrinfo + for res in _socket.getaddrinfo(host, port, family, type, proto, flags): +socket.gaierror: [Errno -2] Name or service not known + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn + raise NewConnectionError( +urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno -2] Name or service not known + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Max retries exceeded with url: /cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/AERONET_v3_lev15_download.py", line 54, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 565, in send + raise ConnectionError(e, request=request) +requests.exceptions.ConnectionError: HTTPSConnectionPool(host='aeronet.gsfc.nasa.gov', port=443): Max retries exceeded with url: /cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 (Caused by NewConnectionError(': Failed to establish a new connection: [Errno -2] Name or service not known')) + +------------------------------------------------------------------------------------------------------------- + +EBAS successful -- total: 444.431 min +++ download: 444.135 min +++ rsync: 0.296 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 444.431 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240621-100941.out b/download_scripts/log_files/log_20240621-100941.out new file mode 100644 index 0000000000000000000000000000000000000000..4724aec5d9b93335e15a0082e083da33bcdcc1e9 --- /dev/null +++ b/download_scripts/log_files/log_20240621-100941.out @@ -0,0 +1,7 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-21 +************************************************************************************************************** +AERONET_v3_lev1.5 successful -- total: 70.875 min +++ download: 70.195 min +++ rsync: 0.679 min +------------------------------------------------------------------------------------------------------------- + +Total duration: 70.875 minutes \ No newline at end of file diff --git a/download_scripts/log_files/log_20240621-102556.out b/download_scripts/log_files/log_20240621-102556.out new file mode 100644 index 0000000000000000000000000000000000000000..5ffc5b83f00ae1c062861f9fd701edf724153248 --- /dev/null +++ b/download_scripts/log_files/log_20240621-102556.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-21 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240621-103247.out b/download_scripts/log_files/log_20240621-103247.out new file mode 100644 index 0000000000000000000000000000000000000000..5ffc5b83f00ae1c062861f9fd701edf724153248 --- /dev/null +++ b/download_scripts/log_files/log_20240621-103247.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-21 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240621-103930.out b/download_scripts/log_files/log_20240621-103930.out new file mode 100644 index 0000000000000000000000000000000000000000..5ffc5b83f00ae1c062861f9fd701edf724153248 --- /dev/null +++ b/download_scripts/log_files/log_20240621-103930.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-21 +************************************************************************************************************** diff --git a/download_scripts/log_files/log_20240621-104522.out b/download_scripts/log_files/log_20240621-104522.out new file mode 100644 index 0000000000000000000000000000000000000000..5ffc5b83f00ae1c062861f9fd701edf724153248 --- /dev/null +++ b/download_scripts/log_files/log_20240621-104522.out @@ -0,0 +1,3 @@ +************************************************************************************************************** +BEGINNING DOWNLOADING DATA all, GHOST version 1.6, from 1970-01-01 to 2024-06-21 +************************************************************************************************************** diff --git a/download_scripts/log_files/nohup_20240606-124954.out b/download_scripts/log_files/nohup_20240606-124954.out new file mode 100644 index 0000000000000000000000000000000000000000..bae125a47081e04d302eb3049155052195dd8946 --- /dev/null +++ b/download_scripts/log_files/nohup_20240606-124954.out @@ -0,0 +1,337 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Mode: nrt +Ghost version: 1.6 +Started downloading data of US_EPA_AirNow_DOS +['2024'] +['06', '05'] +Downloaded PM2.5 202406 in NewDehli +Downloaded PM2.5 202405 in NewDehli +No OZONE 202406 in NewDehli +No OZONE 202405 in NewDehli +No yet reported PM2.5 202406 in Chennai +Downloaded PM2.5 202405 in Chennai +No OZONE 202406 in Chennai +No OZONE 202405 in Chennai +Downloaded PM2.5 202406 in Kolkata +Downloaded PM2.5 202405 in Kolkata +No OZONE 202406 in Kolkata +No OZONE 202405 in Kolkata +Downloaded PM2.5 202406 in Mumbai +Downloaded PM2.5 202405 in Mumbai +No OZONE 202406 in Mumbai +No OZONE 202405 in Mumbai +Downloaded PM2.5 202406 in Hyderabad +Downloaded PM2.5 202405 in Hyderabad +No OZONE 202406 in Hyderabad +No OZONE 202405 in Hyderabad +Downloaded PM2.5 202406 in JakartaCentral +Downloaded PM2.5 202405 in JakartaCentral +Downloaded OZONE 202406 in JakartaCentral +Downloaded OZONE 202405 in JakartaCentral +Downloaded PM2.5 202406 in JakartaSouth +Downloaded PM2.5 202405 in JakartaSouth +No OZONE 202406 in JakartaSouth +No OZONE 202405 in JakartaSouth +Downloaded PM2.5 202406 in Ulaanbaatar +Downloaded PM2.5 202405 in Ulaanbaatar +No OZONE 202406 in Ulaanbaatar +No OZONE 202405 in Ulaanbaatar +Downloaded PM2.5 202406 in HoChiMinhCity +Downloaded PM2.5 202405 in HoChiMinhCity +No OZONE 202406 in HoChiMinhCity +No OZONE 202405 in HoChiMinhCity +Downloaded PM2.5 202406 in Hanoi +Downloaded PM2.5 202405 in Hanoi +No OZONE 202406 in Hanoi +No OZONE 202405 in Hanoi +No yet reported PM2.5 202406 in Bogota +No yet reported PM2.5 202405 in Bogota +No OZONE 202406 in Bogota +No OZONE 202405 in Bogota +No yet reported PM2.5 202406 in Lima +No yet reported PM2.5 202405 in Lima +No yet reported OZONE 202406 in Lima +No yet reported OZONE 202405 in Lima +Downloaded PM2.5 202406 in AddisAbabaCentral +Downloaded PM2.5 202405 in AddisAbabaCentral +No OZONE 202406 in AddisAbabaCentral +No OZONE 202405 in AddisAbabaCentral +Downloaded PM2.5 202406 in AddisAbabaJacros +Downloaded PM2.5 202405 in AddisAbabaJacros +No OZONE 202406 in AddisAbabaJacros +No OZONE 202405 in AddisAbabaJacros +Downloaded PM2.5 202406 in Kampala +Downloaded PM2.5 202405 in Kampala +No OZONE 202406 in Kampala +No OZONE 202405 in Kampala +Downloaded PM2.5 202406 in Beijing +Downloaded PM2.5 202405 in Beijing +Downloaded OZONE 202406 in Beijing +Downloaded OZONE 202405 in Beijing +Downloaded PM2.5 202406 in Shanghai +Downloaded PM2.5 202405 in Shanghai +No OZONE 202406 in Shanghai +No OZONE 202405 in Shanghai +Downloaded PM2.5 202406 in Guangzhou +Downloaded PM2.5 202405 in Guangzhou +Downloaded OZONE 202406 in Guangzhou +Downloaded OZONE 202405 in Guangzhou +No yet reported PM2.5 202406 in Chengdu +No yet reported PM2.5 202405 in Chengdu +No yet reported OZONE 202406 in Chengdu +No yet reported OZONE 202405 in Chengdu +Downloaded PM2.5 202406 in Shenyang +Downloaded PM2.5 202405 in Shenyang +No OZONE 202406 in Shenyang +No OZONE 202405 in Shenyang +Downloaded PM2.5 202406 in Dhaka +Downloaded PM2.5 202405 in Dhaka +Downloaded OZONE 202406 in Dhaka +Downloaded OZONE 202405 in Dhaka +Downloaded PM2.5 202406 in AbuDhabi +Downloaded PM2.5 202405 in AbuDhabi +No yet reported OZONE 202406 in AbuDhabi +No yet reported OZONE 202405 in AbuDhabi +Downloaded PM2.5 202406 in Dubai +Downloaded PM2.5 202405 in Dubai +Downloaded OZONE 202406 in Dubai +Downloaded OZONE 202405 in Dubai +Downloaded PM2.5 202406 in Pristina +Downloaded PM2.5 202405 in Pristina +No OZONE 202406 in Pristina +No OZONE 202405 in Pristina +Downloaded PM2.5 202406 in KuwaitCity +Downloaded PM2.5 202405 in KuwaitCity +No OZONE 202406 in KuwaitCity +No OZONE 202405 in KuwaitCity +Downloaded PM2.5 202406 in Manama +Downloaded PM2.5 202405 in Manama +No yet reported OZONE 202406 in Manama +No yet reported OZONE 202405 in Manama +Downloaded PM2.5 202406 in Ashgabat +Downloaded PM2.5 202405 in Ashgabat +No OZONE 202406 in Ashgabat +No OZONE 202405 in Ashgabat +Downloaded PM2.5 202406 in EmbassyKathmandu +Downloaded PM2.5 202405 in EmbassyKathmandu +Downloaded OZONE 202406 in EmbassyKathmandu +Downloaded OZONE 202405 in EmbassyKathmandu +Downloaded PM2.5 202406 in PhoraDurbarKathmandu +Downloaded PM2.5 202405 in PhoraDurbarKathmandu +Downloaded OZONE 202406 in PhoraDurbarKathmandu +Downloaded OZONE 202405 in PhoraDurbarKathmandu +Downloaded PM2.5 202406 in Colombo +Downloaded PM2.5 202405 in Colombo +No OZONE 202406 in Colombo +No OZONE 202405 in Colombo +Downloaded PM2.5 202406 in Algiers +Downloaded PM2.5 202405 in Algiers +No OZONE 202406 in Algiers +No OZONE 202405 in Algiers +No yet reported PM2.5 202406 in BuenosAires +No yet reported PM2.5 202405 in BuenosAires +No yet reported OZONE 202406 in BuenosAires +No yet reported OZONE 202405 in BuenosAires +Downloaded PM2.5 202406 in Sarajevo +Downloaded PM2.5 202405 in Sarajevo +No OZONE 202406 in Sarajevo +No OZONE 202405 in Sarajevo +Downloaded PM2.5 202406 in BanjaLuka +Downloaded PM2.5 202405 in BanjaLuka +No OZONE 202406 in BanjaLuka +No OZONE 202405 in BanjaLuka +No yet reported PM2.5 202406 in Curacao +No yet reported PM2.5 202405 in Curacao +No yet reported OZONE 202406 in Curacao +No yet reported OZONE 202405 in Curacao +No yet reported PM2.5 202406 in Dhahran +No yet reported PM2.5 202405 in Dhahran +No yet reported OZONE 202406 in Dhahran +No yet reported OZONE 202405 in Dhahran +Downloaded PM2.5 202406 in Jeddah +Downloaded PM2.5 202405 in Jeddah +No OZONE 202406 in Jeddah +No OZONE 202405 in Jeddah +No yet reported PM2.5 202406 in Riyadh +No yet reported PM2.5 202405 in Riyadh +No yet reported OZONE 202406 in Riyadh +No yet reported OZONE 202405 in Riyadh +Downloaded PM2.5 202406 in Astana +Downloaded PM2.5 202405 in Astana +No OZONE 202406 in Astana +No OZONE 202405 in Astana +Downloaded PM2.5 202406 in Almaty +Downloaded PM2.5 202405 in Almaty +No OZONE 202406 in Almaty +No OZONE 202405 in Almaty +Downloaded PM2.5 202406 in Tashkent +Downloaded PM2.5 202405 in Tashkent +Downloaded OZONE 202406 in Tashkent +Downloaded OZONE 202405 in Tashkent +Downloaded PM2.5 202406 in Baghdad +Downloaded PM2.5 202405 in Baghdad +No OZONE 202406 in Baghdad +No OZONE 202405 in Baghdad +Downloaded PM2.5 202406 in Rangoon +Downloaded PM2.5 202405 in Rangoon +No OZONE 202406 in Rangoon +No OZONE 202405 in Rangoon +Downloaded PM2.5 202406 in Bishkek +Downloaded PM2.5 202405 in Bishkek +No OZONE 202406 in Bishkek +No OZONE 202405 in Bishkek +Downloaded PM2.5 202406 in Dushanbe +Downloaded PM2.5 202405 in Dushanbe +No OZONE 202406 in Dushanbe +No OZONE 202405 in Dushanbe +No yet reported PM2.5 202406 in SanJose +No yet reported PM2.5 202405 in SanJose +No yet reported OZONE 202406 in SanJose +No yet reported OZONE 202405 in SanJose +Downloaded PM2.5 202406 in Islamabad +Downloaded PM2.5 202405 in Islamabad +No OZONE 202406 in Islamabad +No OZONE 202405 in Islamabad +Downloaded PM2.5 202406 in Lahore +Downloaded PM2.5 202405 in Lahore +No OZONE 202406 in Lahore +No OZONE 202405 in Lahore +No yet reported PM2.5 202406 in Karachi +Downloaded PM2.5 202405 in Karachi +No OZONE 202406 in Karachi +No OZONE 202405 in Karachi +Downloaded PM2.5 202406 in Peshawar +Downloaded PM2.5 202405 in Peshawar +No OZONE 202406 in Peshawar +No OZONE 202405 in Peshawar +No yet reported PM2.5 202406 in Amman +No yet reported PM2.5 202405 in Amman +No yet reported OZONE 202406 in Amman +No yet reported OZONE 202405 in Amman +Downloaded PM2.5 202406 in Vientiane +Downloaded PM2.5 202405 in Vientiane +No OZONE 202406 in Vientiane +No OZONE 202405 in Vientiane +No yet reported PM2.5 202406 in Bamako +No yet reported PM2.5 202405 in Bamako +No yet reported OZONE 202406 in Bamako +No yet reported OZONE 202405 in Bamako +Downloaded PM2.5 202406 in Antananarivo +Downloaded PM2.5 202405 in Antananarivo +No OZONE 202406 in Antananarivo +No OZONE 202405 in Antananarivo +Downloaded PM2.5 202406 in GuatemalaCity +Downloaded PM2.5 202405 in GuatemalaCity +No yet reported OZONE 202406 in GuatemalaCity +No yet reported OZONE 202405 in GuatemalaCity +No yet reported PM2.5 202406 in Libreville +No yet reported PM2.5 202405 in Libreville +No yet reported OZONE 202406 in Libreville +No yet reported OZONE 202405 in Libreville +Downloaded PM2.5 202406 in Abidjan +Downloaded PM2.5 202405 in Abidjan +No OZONE 202406 in Abidjan +No OZONE 202405 in Abidjan +No yet reported PM2.5 202406 in Chisinau +No yet reported PM2.5 202405 in Chisinau +No yet reported OZONE 202406 in Chisinau +No yet reported OZONE 202405 in Chisinau +No yet reported PM2.5 202406 in Conakry +No yet reported PM2.5 202405 in Conakry +No yet reported OZONE 202406 in Conakry +No yet reported OZONE 202405 in Conakry +Downloaded PM2.5 202406 in NDjamena +Downloaded PM2.5 202405 in NDjamena +No OZONE 202406 in NDjamena +No OZONE 202405 in NDjamena +Downloaded PM2.5 202406 in Accra +Downloaded PM2.5 202405 in Accra +No OZONE 202406 in Accra +No OZONE 202405 in Accra +Downloaded PM2.5 202406 in KualaLumpur +Downloaded PM2.5 202405 in KualaLumpur +No OZONE 202406 in KualaLumpur +No OZONE 202405 in KualaLumpur +Downloaded PM2.5 202406 in Lagos +Downloaded PM2.5 202405 in Lagos +No OZONE 202406 in Lagos +No OZONE 202405 in Lagos +Downloaded PM2.5 202406 in Abuja +Downloaded PM2.5 202405 in Abuja +No OZONE 202406 in Abuja +No OZONE 202405 in Abuja +No yet reported PM2.5 202406 in Doha +No yet reported PM2.5 202405 in Doha +No yet reported OZONE 202406 in Doha +No yet reported OZONE 202405 in Doha +Downloaded PM2.5 202406 in Nairobi +Downloaded PM2.5 202405 in Nairobi +No OZONE 202406 in Nairobi +No OZONE 202405 in Nairobi +Downloaded PM2.5 202406 in Baku +Downloaded PM2.5 202405 in Baku +No OZONE 202406 in Baku +No OZONE 202405 in Baku +Downloaded PM2.5 202406 in Cairo +Downloaded PM2.5 202405 in Cairo +No OZONE 202406 in Cairo +No OZONE 202405 in Cairo +No yet reported PM2.5 202406 in Dakar +No yet reported PM2.5 202405 in Dakar +No OZONE 202406 in Dakar +No OZONE 202405 in Dakar +Downloaded PM2.5 202406 in Tijuana +Downloaded PM2.5 202405 in Tijuana +No OZONE 202406 in Tijuana +No OZONE 202405 in Tijuana +No yet reported PM2.5 202406 in Yerevan +No yet reported PM2.5 202405 in Yerevan +No yet reported OZONE 202406 in Yerevan +No yet reported OZONE 202405 in Yerevan +Downloaded PM2.5 202406 in Kinshasa +Downloaded PM2.5 202405 in Kinshasa +No OZONE 202406 in Kinshasa +No OZONE 202405 in Kinshasa +Downloaded PM2.5 202406 in Ouagadougou +Downloaded PM2.5 202405 in Ouagadougou +No OZONE 202406 in Ouagadougou +No OZONE 202405 in Ouagadougou +Downloaded PM2.5 202406 in SaoPaulo +Downloaded PM2.5 202405 in SaoPaulo +No OZONE 202406 in SaoPaulo +No OZONE 202405 in SaoPaulo +No yet reported PM2.5 202406 in Kigali +Downloaded PM2.5 202405 in Kigali +No OZONE 202406 in Kigali +No OZONE 202405 in Kigali +Downloaded PM2.5 202406 in Lome +Downloaded PM2.5 202405 in Lome +No OZONE 202406 in Lome +No OZONE 202405 in Lome +Downloaded PM2.5 202406 in Asuncion +Downloaded PM2.5 202405 in Asuncion +No OZONE 202406 in Asuncion +No OZONE 202405 in Asuncion +Downloaded PM2.5 202406 in Belmopan +Downloaded PM2.5 202405 in Belmopan +No OZONE 202406 in Belmopan +No OZONE 202405 in Belmopan +Downloaded PM2.5 202406 in Manila +Downloaded PM2.5 202405 in Manila +No OZONE 202406 in Manila +No OZONE 202405 in Manila +Downloaded PM2.5 202406 in Maputo +Downloaded PM2.5 202405 in Maputo +Downloaded OZONE 202406 in Maputo +Downloaded OZONE 202405 in Maputo +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +Submitted batch job 59507 + +real 3m27,805s +user 0m6,522s +sys 0m0,740s diff --git a/download_scripts/log_files/nohup_AERONET15_EBAS.out b/download_scripts/log_files/nohup_AERONET15_EBAS.out new file mode 100644 index 0000000000000000000000000000000000000000..1c626b1f0453dc7d3cf0952060b85d9a87305b21 --- /dev/null +++ b/download_scripts/log_files/nohup_AERONET15_EBAS.out @@ -0,0 +1,17366 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of EBASStarted downloading data of AERONET_v3_lev1.5 + +Downloaded DOI XQWK-FUW7 +Downloaded DOI RT3Z-WXXG +Downloaded DOI XQ6W-5B4R +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NFMZ-YCEP +Downloaded DOI 8D5J-DHSG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MXJY-YQ8T +Downloaded DOI VC5V-7J7B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BSH6-7EWM +Downloaded DOI ZKK3-ZBCF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BA9Y-GC5N +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SSHR-GA6Y +Downloaded DOI W3M5-49F2 +Downloaded DOI 3T2N-T3HK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KGHP-HG8D +Downloaded DOI 52AC-E5RR +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BGME-YVQJ +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI E4MA-BH5T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8XAS-FVX9 +Downloaded DOI 9X7G-9J9G +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ETPT-RAQV +Downloaded DOI SF65-SSR5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NXY9-Y8R7 +Downloaded DOI ARSG-RQQX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=12&year2=2021&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3RGV-MGMP +Downloaded DOI 6ABX-NR2P +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=13&year2=2021&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI DXWA-P3JZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=14&year2=2021&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI P2Q4-NGDV +Downloaded DOI KPZ2-N9VM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=15&year2=2021&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EV7S-M3ED +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=16&year2=2021&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 65J9-TQZE +Downloaded DOI ZC6M-28GV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=17&year2=2021&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Y52S-55WR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=18&year2=2021&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QYP9-TQG4 +No data found, error 404 +Downloaded DOI RCAX-EPTS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=19&year2=2021&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Z9UX-QUFQ +Downloaded DOI RPVJ-YE7B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=20&year2=2021&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI JEGJ-QNNU +Downloaded DOI WE5J-PQAN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=21&year2=2021&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FFTK-BNJS +Downloaded DOI 9U95-6QHU +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=22&year2=2021&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YYZ4-9PRT +No data found, error 404 +Downloaded DOI 2DKF-7KD3 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=23&year2=2021&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NPS5-YQ6Q +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=24&year2=2021&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 65DW-36A4 +Downloaded DOI T2UQ-BP94 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=25&year2=2021&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RGSZ-SJ33 +Downloaded DOI G2BQ-K9CC +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=26&year2=2021&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI JU4S-82WB +Downloaded DOI B2HD-JJRN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=27&year2=2021&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FNDN-X4N7 +Downloaded DOI Y2S5-BP9F +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=28&year2=2021&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Y6FB-8WQ5 +Downloaded DOI UBTR-EXK9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=29&year2=2021&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TZNH-AT9K +Downloaded DOI 6PEY-82ZF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=30&year2=2021&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T34M-8DFD +Downloaded DOI YJQK-ZRQM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=31&year2=2021&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3UYR-FJUB +Downloaded DOI HY3B-J79F +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=1&year2=2021&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MB5H-NEC5 +Downloaded DOI 7MJ4-WA3B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=2&year2=2021&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BY5V-PKRR +Downloaded DOI E594-43FQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=3&year2=2021&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TY99-ZMX5 +Downloaded DOI 6MKK-HHWW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=4&year2=2021&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CKCM-P3B4 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=5&year2=2021&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 62MQ-F8D5 +Downloaded DOI VD53-2B43 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=6&year2=2021&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI JBPE-37YP +Downloaded DOI JDKC-4DZ8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=7&year2=2021&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H9UB-CMEB +Downloaded DOI S7S6-RTGV +Downloaded DOI WFUQ-3GJW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=8&year2=2021&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8DC4-666F +Downloaded DOI 9TBY-JY87 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=9&year2=2021&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DCHM-G3EH +Downloaded DOI 5TE3-6NZV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=10&year2=2021&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI PT7Q-ZS9M +Downloaded DOI JYFS-NRB2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=11&year2=2021&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SZ8N-TXX4 +Downloaded DOI NTTT-4KB3 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=12&year2=2021&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZFD6-9QQX +Downloaded DOI KS5J-Q4Y9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=13&year2=2021&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6AQT-N4RF +Downloaded DOI 87B9-AAAY +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=14&year2=2021&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZNKS-7PVJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=15&year2=2021&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5X2E-VS23 +Downloaded DOI 7TWH-K5K8 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=16&year2=2021&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RYRM-MMNX +Downloaded DOI 3KF5-XG8V +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=17&year2=2021&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RAAD-466E +Downloaded DOI 8ADU-DMFA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=18&year2=2021&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YBXC-SX26 +Downloaded DOI ACRB-XYYG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=19&year2=2021&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI U6S5-4HA2 +Downloaded DOI MMQH-5K4A +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=20&year2=2021&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4XXV-KX7N +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=21&year2=2021&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI C34R-VU3X +Downloaded DOI TNHZ-25R2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=22&year2=2021&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZTUB-YT4B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=23&year2=2021&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZBJD-E4RR +Downloaded DOI A9V3-HKRR +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=24&year2=2021&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T9RT-UQR3 +Downloaded DOI RNB3-W88M +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=25&year2=2021&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI M6QD-EQKQ +Downloaded DOI Q3XK-SQZ4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=26&year2=2021&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI URSV-U93R +Downloaded DOI 7BN7-WDQS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=27&year2=2021&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5CKW-RKSC +Downloaded DOI FZ9V-C8MK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=28&year2=2021&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EJ56-WNBF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=29&year2=2021&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI USP2-3Z2N +Downloaded DOI 5UQC-MHTZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=4&day=30&year2=2021&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI C4XD-9F32 +Downloaded DOI 6JHC-F4UK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=1&year2=2021&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3N84-KYE2 +Downloaded DOI C8TJ-YE8J +Downloaded DOI 5KSJ-SDXS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=2&year2=2021&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CPSZ-J6SK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=3&year2=2021&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI A3DC-SHB7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=4&year2=2021&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3NY3-HMW2 +Downloaded DOI K54Y-P45P +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=5&year2=2021&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=6&year2=2021&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EAJE-46W7 +Downloaded DOI KRDG-2ZX8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=7&year2=2021&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5BK2-TWMH +Downloaded DOI RTPZ-FTHU +Downloaded DOI 6WPY-84DY +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=8&year2=2021&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4GZV-4VN5 +Downloaded DOI 2TH8-48KM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=9&year2=2021&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8NGU-6Z2Y +Downloaded DOI 5YRB-Y59Y +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=10&year2=2021&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 8GVX-NBJ5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=11&year2=2021&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI KZX9-V6X7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=12&year2=2021&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI GR3Y-HCB7 +No data found, error 404 +Downloaded DOI XXSX-XKTE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=13&year2=2021&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI GZFP-686K +No data found, error 404 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=14&year2=2021&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YHHP-83DG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=15&year2=2021&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MJZ7-VNZ9 +Downloaded DOI 6C8K-U2A2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=16&year2=2021&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4BZW-WZQZ +Downloaded DOI DN66-TJEF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=17&year2=2021&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 528S-FP73 +Downloaded DOI PEUC-E2HG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=18&year2=2021&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HZE9-UAKM +Downloaded DOI VDJH-RNYD +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=19&year2=2021&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WZ6F-MJQZ +Downloaded DOI F9F5-X8FR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=20&year2=2021&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 685Z-74JM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=21&year2=2021&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NH2D-UC2X +Downloaded DOI FFGQ-93N5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=22&year2=2021&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI E8XP-J6UJ +Downloaded DOI WEE3-KFU6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=23&year2=2021&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HFMQ-7NCQ +Downloaded DOI XNZT-TY8U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=24&year2=2021&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H3E2-E47R +Downloaded DOI KR72-7FKU +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=25&year2=2021&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CK8P-AJXU +Downloaded DOI BTWF-66Z9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=26&year2=2021&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FMGF-3QGE +Downloaded DOI ZCS4-YKAR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=27&year2=2021&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KHYQ-T23T +Downloaded DOI U27W-UKEF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=28&year2=2021&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI E6NB-YHWJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=29&year2=2021&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI J8C9-8WWT +Downloaded DOI X5CE-M53M +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=30&year2=2021&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 7F53-XSJA +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=5&day=31&year2=2021&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QPXF-KR7N +Downloaded DOI XHXE-8ZP7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=1&year2=2021&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CE6J-MQVN +Downloaded DOI KUXM-V9NS +Downloaded DOI Y7C9-AQRF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=2&year2=2021&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BH6Q-D66T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=3&year2=2021&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QCFB-BMRQ +Downloaded DOI EZ48-6N85 +Downloaded DOI PE8Q-7TM5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=4&year2=2021&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VUB9-MBPC +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=5&year2=2021&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI ZJUT-QUE6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=6&year2=2021&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8CRF-4NST +Downloaded DOI W7G2-EE8K +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=7&year2=2021&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MXAF-KW43 +Downloaded DOI 7NFD-N3FN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=8&year2=2021&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FCHD-RE82 +Downloaded DOI V5JN-4BT8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=9&year2=2021&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI XVSZ-HXV5 +Downloaded DOI FCV7-FGQ7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=10&year2=2021&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 2VJM-MT7V +Downloaded DOI UQQQ-W3P7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=11&year2=2021&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI GSZ5-9UTD +Downloaded DOI VVAT-XG7D +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=12&year2=2021&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VPDA-NV78 +Downloaded DOI F7UZ-FPWV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=13&year2=2021&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI PZQS-99BP +Downloaded DOI 3QE5-5MQA +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=14&year2=2021&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EU8H-PGK2 +Downloaded DOI XYVF-KPV6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=15&year2=2021&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6DKM-JAF8 +Downloaded DOI 5HNA-2GDP +Downloaded DOI YT4B-BJZ2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=16&year2=2021&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CCQD-A7TK +Downloaded DOI TUVA-5PFA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=17&year2=2021&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FRGK-7XJ3 +Downloaded DOI MMWZ-M3F8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=18&year2=2021&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VBAE-S49B +Downloaded DOI D9V5-XZKJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=19&year2=2021&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VXYW-DW79 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=20&year2=2021&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI U42S-MVZB +Downloaded DOI W58D-A9CQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=21&year2=2021&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NW4C-T54E +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=22&year2=2021&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 7KDA-HQJZ +No data found, error 404 +Downloaded DOI 9F4H-P5XV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=23&year2=2021&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZAPP-37RK +Downloaded DOI H9MM-GJ7P +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=24&year2=2021&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI XQRV-AMNT +Downloaded DOI GX9C-R3SX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=25&year2=2021&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UMWH-UDKB +Downloaded DOI PJNP-TN3E +Downloaded DOI 6DC8-7CW5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=26&year2=2021&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI XTW9-N3AS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=27&year2=2021&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI AKT3-UVEH +Downloaded DOI U67P-AH55 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=28&year2=2021&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QKBC-Y8X2 +Downloaded DOI B7ZS-VBRE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=29&year2=2021&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 74HM-H5Q3 +Downloaded DOI 5UHA-VSUP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=6&day=30&year2=2021&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZDXP-X23U +Downloaded DOI 87TQ-ED42 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=1&year2=2021&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 65AU-QYUE +Downloaded DOI W5PJ-FZ9X +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=2&year2=2021&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TQMP-Y3CQ +Downloaded DOI H8WT-N2ZV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=3&year2=2021&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4AE5-WFNA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=4&year2=2021&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DB7A-FA7J +Downloaded DOI 3VDK-7SRP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=5&year2=2021&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DQYE-34D4 +Downloaded DOI QQXB-XZ8H +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=6&year2=2021&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 44ZK-UXU8 +Downloaded DOI UW5M-JQTM +Downloaded DOI RYFP-FC7F +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=7&year2=2021&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI K4HW-36DN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=8&year2=2021&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5X8T-EZDZ +Downloaded DOI WDR5-PPK4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=9&year2=2021&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YJPY-BQKU +Downloaded DOI W2H4-4JSX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=10&year2=2021&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6H4A-3TD6 +Downloaded DOI WUAF-8D9B +Downloaded DOI TMD7-3WCC +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=11&year2=2021&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TZXM-5HD9 +Downloaded DOI ZDJY-37WS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=12&year2=2021&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WT4X-RP2N +Downloaded DOI DCGJ-3GRF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=13&year2=2021&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI KJ5X-WNH5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=14&year2=2021&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HRH2-2UWE +Downloaded DOI YRQJ-723H +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=15&year2=2021&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3DRR-DD5G +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=16&year2=2021&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI J7JT-R25P +Downloaded DOI KQDW-MXWR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=17&year2=2021&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI E3MT-DKV9 +Downloaded DOI BQAF-CYMK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=18&year2=2021&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DNRU-NDAA +Downloaded DOI 48RV-4CZW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=19&year2=2021&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4ZV3-YPD6 +Downloaded DOI TDDN-2FKV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=20&year2=2021&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI M2C6-PV9Q +Downloaded DOI FKE4-G48H +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=21&year2=2021&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 2HZM-GBDV +Downloaded DOI TABK-FSCG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=22&year2=2021&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 9K69-JM86 +Downloaded DOI MTRE-XT77 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=23&year2=2021&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 9MAG-FX2R +Downloaded DOI SB2H-KHUW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=24&year2=2021&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI RB2Z-5DJ7 +Downloaded DOI 8NYH-6GUR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=25&year2=2021&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI P94N-RVYE +Downloaded DOI JHRJ-ZHK8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=26&year2=2021&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VPP7-G2FT +Downloaded DOI EA24-ZMMP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=27&year2=2021&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HKZ7-6NWF +Downloaded DOI FMEQ-NW6Y +Downloaded DOI H6CT-FGKV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=28&year2=2021&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MF5G-EWDP +Downloaded DOI BGM2-Q4X2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=29&year2=2021&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI G52E-XRKH +Downloaded DOI 8X75-24XG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=30&year2=2021&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H3US-CXCZ +Downloaded DOI 7T9Y-5FXT +Downloaded DOI RA2J-GVQQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=7&day=31&year2=2021&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI VNRP-ZRXC +Downloaded DOI BXA7-DZKK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=1&year2=2021&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DBWU-KM3V +Downloaded DOI FGKS-J8AX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=2&year2=2021&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI F4WB-9GMJ +Downloaded DOI P49E-RKUE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=3&year2=2021&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4JZ3-WNKY +Downloaded DOI NDE5-3Z4D +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=4&year2=2021&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KGFY-PNE2 +Downloaded DOI FMEB-G3KJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=5&year2=2021&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4YME-U3J3 +Downloaded DOI 5WUN-GTPT +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=6&year2=2021&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 42SG-NAXG +Downloaded DOI P54C-HESD +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=7&year2=2021&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QXFQ-THHK +Downloaded DOI 7NE5-3T23 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=8&year2=2021&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 36BT-DFCZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=9&year2=2021&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8YX3-3MF8 +Downloaded DOI RRBV-RZNW +Downloaded DOI Q2VX-CXBK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=10&year2=2021&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 27FQ-PNS7 +Downloaded DOI RXJU-S5YC +Downloaded DOI RMJR-PBBX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=11&year2=2021&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI M769-P7ZZ +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=12&year2=2021&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UPV7-8C5C +Downloaded DOI MRK9-SFZX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=13&year2=2021&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HGNE-3E93 +Downloaded DOI V9NS-76PK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=14&year2=2021&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI XWSP-VJJ5 +Downloaded DOI RYHD-NF3Z +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=15&year2=2021&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FUSB-XY9E +Downloaded DOI 9VE2-PE97 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=16&year2=2021&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WS9A-BQGW +Downloaded DOI 8MG3-YVCA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=17&year2=2021&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NYQ5-CZTE +Downloaded DOI DN5T-5YEX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=18&year2=2021&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI J2AE-NGA7 +Downloaded DOI QVYN-E64U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=19&year2=2021&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WMEG-BNXE +Downloaded DOI QXKM-RKNP +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=20&year2=2021&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI AHVG-UKKX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=21&year2=2021&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI AFYH-HD4J +Downloaded DOI AEW6-7SDF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=22&year2=2021&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NVWY-A8WJ +Downloaded DOI VE8X-2TGQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=23&year2=2021&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CEKW-2RPF +Downloaded DOI 7DDQ-W4E4 +Downloaded DOI GHWZ-F78T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=24&year2=2021&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI APGM-Q2PR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=25&year2=2021&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI PRGA-J3AW +Downloaded DOI XPXC-GAEC +Downloaded DOI RJYD-YSAQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=26&year2=2021&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 5P38-RHRJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=27&year2=2021&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FRNF-X8UR +Downloaded DOI XWUD-SSMY +Downloaded DOI FFRU-QHA8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=28&year2=2021&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI D98J-69RB +Downloaded DOI XY3A-REBQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=29&year2=2021&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5NX8-W9HG +Downloaded DOI XY5Q-K99B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=30&year2=2021&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZQY3-CRQ7 +Downloaded DOI NQBW-AQTN +Downloaded DOI WJ3K-E25M +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=8&day=31&year2=2021&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HHZQ-2Y6W +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=1&year2=2021&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI M7TU-9695 +Downloaded DOI UGYU-NCFJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=2&year2=2021&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 58XE-T5NF +No data found, error 404 +Downloaded DOI 7DQE-BVRM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=3&year2=2021&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TYV8-CVMF +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=4&year2=2021&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Z2JQ-E3JJ +Downloaded DOI UBCQ-QVMU +Downloaded DOI QR4N-2VY7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=5&year2=2021&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TJY6-Y6FE +Downloaded DOI S2T2-GE6A +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=6&year2=2021&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI A4RZ-9MRS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=7&year2=2021&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI JV9E-CH5B +Downloaded DOI CHNE-VS8U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=8&year2=2021&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3WQ2-HF79 +Downloaded DOI Q9S3-RWDW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=9&year2=2021&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI HWN5-843F +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=10&year2=2021&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 92TJ-MTXD +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=11&year2=2021&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3T8T-MUVR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=12&year2=2021&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4MRS-7GFQ +Downloaded DOI 64H9-9BH4 +Downloaded DOI NAE2-6NH9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=13&year2=2021&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T2YD-BSEQ +Downloaded DOI 4EAV-6F3F +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=14&year2=2021&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI B69Z-7QAA +Downloaded DOI RYKN-8TKZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=15&year2=2021&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FNCP-NHH4 +Downloaded DOI 2K3W-YZTX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=16&year2=2021&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI XZB3-E849 +Downloaded DOI SWMX-GZ22 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=17&year2=2021&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CMKZ-GBPH +Downloaded DOI YGA9-JP7V +Downloaded DOI PCRN-S3DD +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=18&year2=2021&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5CQ8-MYG7 +Downloaded DOI FQ8P-B7MY +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=19&year2=2021&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI R222-HMTR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=20&year2=2021&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI U5U6-GRYU +Downloaded DOI 4QZN-J8FF +Downloaded DOI 2Q8C-BHSQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=21&year2=2021&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NC5D-6GFP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=22&year2=2021&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZYDX-GGNA +Downloaded DOI RY7G-S384 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=23&year2=2021&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WW32-TZBH +Downloaded DOI WGN7-M4Z4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=24&year2=2021&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MKN2-JF5R +Downloaded DOI YG76-RG52 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=25&year2=2021&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI BW3C-95U9 +Downloaded DOI 2W4X-JN4U +Downloaded DOI 46EF-2B2Z +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=26&year2=2021&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BKQV-WJYH +Downloaded DOI 4K6A-JKUM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=27&year2=2021&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI DPPC-YTHP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=28&year2=2021&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI WSRR-3TY9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=29&year2=2021&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RPWT-B5R6 +Downloaded DOI K5S4-FG9T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=9&day=30&year2=2021&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI D64C-G57Q +Downloaded DOI GK8R-EK3H +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=1&year2=2021&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FNSS-5RAR +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=2&year2=2021&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TV8Z-EMZH +Downloaded DOI K47J-2HDA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=3&year2=2021&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 97JV-UPTA +Downloaded DOI 665B-X6RH +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=4&year2=2021&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4HDH-J9VD +Downloaded DOI YMS6-YVV5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=5&year2=2021&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WUDG-GHMH +Downloaded DOI 3PCG-3J29 +Downloaded DOI FUJ3-CWET +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=6&year2=2021&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZF95-QDXE +Downloaded DOI 6FN6-HNB2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=7&year2=2021&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI B2GV-MMF2 +Downloaded DOI FRBA-WNDQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=8&year2=2021&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MCER-2WVJ +Downloaded DOI K5N9-JDQE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=9&year2=2021&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI C29J-2X82 +Downloaded DOI FSWD-VKFH +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=10&year2=2021&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI XF72-UWWN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=11&year2=2021&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8RBW-6V73 +Downloaded DOI 27KW-7Z5U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=12&year2=2021&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FY3P-9UJD +Downloaded DOI HAGY-B9HZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=13&year2=2021&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8WCP-CEM6 +Downloaded DOI U3AP-8ACE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=14&year2=2021&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8UC6-8ZP4 +Downloaded DOI GC82-YF2U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=15&year2=2021&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KZWD-EJYA +Downloaded DOI TCBW-DNE9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=16&year2=2021&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3AYN-6NSB +Downloaded DOI H36C-7SZ3 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=17&year2=2021&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 7NW6-WDY6 +Downloaded DOI MRSV-BMUU +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=18&year2=2021&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SSUN-9WS8 +Downloaded DOI 22MS-978R +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=19&year2=2021&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KJNH-VTKW +Downloaded DOI GTR4-U3P9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=20&year2=2021&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8TGR-UDFE +Downloaded DOI 3ZZE-KDSF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=21&year2=2021&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI R73H-WXU4 +Downloaded DOI YTPH-YU2R +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=22&year2=2021&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HNEW-EUFK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=23&year2=2021&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T57A-VY8V +Downloaded DOI A76Z-RPDT +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=24&year2=2021&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI K42F-4AQJ +Downloaded DOI R3KJ-W66B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=25&year2=2021&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 58JQ-SFQX +Downloaded DOI GR38-TKZM +Downloaded DOI A8JD-MDKN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=26&year2=2021&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UP3Q-EVPD +Downloaded DOI AHS6-GFQ9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=27&year2=2021&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI GEFE-GDD4 +Downloaded DOI SUFK-TVN6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=28&year2=2021&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI D2UJ-ZTDD +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=29&year2=2021&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NJWE-C6ZW +Downloaded DOI PH6S-A9JX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=30&year2=2021&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T62F-NHR8 +Downloaded DOI 8E4F-MCY7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=10&day=31&year2=2021&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EF5G-32HN +Downloaded DOI A7GB-KUHJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=1&year2=2021&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WSNF-37XE +Downloaded DOI 9YJT-YX2J +Downloaded DOI J5JD-HEHJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=2&year2=2021&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BN69-UDSK +Downloaded DOI NP8E-XD62 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=3&year2=2021&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3Q93-PT4F +Downloaded DOI EH9B-9B67 +Downloaded DOI YUTH-K7BX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=4&year2=2021&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI D6FR-ZY8A +Downloaded DOI PGSV-JU4A +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=5&year2=2021&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CVP4-PSSB +Downloaded DOI QEZG-ZXUP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=6&year2=2021&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UT3E-CNM4 +Downloaded DOI HPJY-QDVC +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=7&year2=2021&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KY8A-H25X +Downloaded DOI PYKH-MKH7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=8&year2=2021&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3ZWZ-ESZB +Downloaded DOI 6Z9C-SQUU +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=9&year2=2021&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8SW3-F363 +Downloaded DOI PHTH-P2YX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=10&year2=2021&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UB9P-57T8 +Downloaded DOI NYAT-KRAY +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=11&year2=2021&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 2ZMK-95CZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=12&year2=2021&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SHA3-RYRT +Downloaded DOI G7PF-GVZT +Downloaded DOI ZECQ-YYBJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=13&year2=2021&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI UBRJ-WFXZ +Downloaded DOI RC37-5AFH +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=14&year2=2021&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4F5X-UPSN +Downloaded DOI UQCV-2DZR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=15&year2=2021&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI MXDP-77AH +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=16&year2=2021&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI P6YQ-N7CF +Downloaded DOI XFEQ-NPUY +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=17&year2=2021&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6GDJ-C2KA +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=18&year2=2021&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI W36A-C3QZ +Downloaded DOI Y22R-ZQUW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=19&year2=2021&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI V4U5-8U4U +Downloaded DOI ACTF-FQB2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=20&year2=2021&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KNA6-87D4 +Downloaded DOI SGUS-M6X2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=21&year2=2021&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CSAE-62TW +Downloaded DOI 7JVP-EF26 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=22&year2=2021&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Z8H8-Y2J4 +Downloaded DOI H26M-58PQ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=23&year2=2021&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI K3C5-UJAW +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=24&year2=2021&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI CN45-D7ES +Downloaded DOI 8NAM-DQS7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=25&year2=2021&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI B4JZ-2SJP +Downloaded DOI MQTY-YSHV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=26&year2=2021&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5R6Y-AXDH +Downloaded DOI EY8W-4CNP +Downloaded DOI E5VE-WA5F +Downloaded DOI TH5X-BTWJ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=27&year2=2021&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SP2K-DGGH +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=28&year2=2021&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 7YZQ-R484 +Downloaded DOI ZQG3-VSYK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=29&year2=2021&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI AN7K-BM75 +Downloaded DOI FHMS-NVE8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=11&day=30&year2=2021&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QEHF-C54A +Downloaded DOI 255A-84N7 +Downloaded DOI 772B-8AJ2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=1&year2=2021&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 7K46-PHW9 +Downloaded DOI UDQJ-EW8B +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=2&year2=2021&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4YW7-5YQU +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=3&year2=2021&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WHJM-YUYW +Downloaded DOI 2TMU-GCUK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=4&year2=2021&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 73HY-EARF +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=5&year2=2021&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8HME-2VJF +Downloaded DOI 24AC-ECVN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=6&year2=2021&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 5DVU-DD83 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=7&year2=2021&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZPA4-228K +Downloaded DOI YT4X-TJ9M +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=8&year2=2021&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI A9JT-PSTF +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=9&year2=2021&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BKNJ-AXFH +Downloaded DOI 42UY-N2X8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=10&year2=2021&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NHCQ-NYC7 +Downloaded DOI XJ5K-B3N8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=11&year2=2021&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI KRZM-NZ4Z +Downloaded DOI A728-B77A +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=12&year2=2021&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=13&year2=2021&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RGMG-9SAR +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=14&year2=2021&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WHTX-SPAS +Downloaded DOI PGGN-DED7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=15&year2=2021&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI T7D4-F28F +Downloaded DOI A3HD-H7SN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=16&year2=2021&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8FSS-6K6C +Downloaded DOI 6KBR-J2E5 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=17&year2=2021&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZG82-YAZ8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=18&year2=2021&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI DXQJ-TFU6 +Downloaded DOI KE6U-VR9G +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=19&year2=2021&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NADR-YT8C +Downloaded DOI CJ48-F9TE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=20&year2=2021&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI YMCT-AMER +Downloaded DOI 959W-F4GF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=21&year2=2021&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3P7R-BQYJ +Downloaded DOI EH7M-ZG68 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=22&year2=2021&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 32HM-UHWE +Downloaded DOI BD6M-HWFS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=23&year2=2021&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI G5D2-7NZ4 +Downloaded DOI Q3TZ-X5XK +Downloaded DOI G8EY-SDWX +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=24&year2=2021&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI NB5V-NQYQ +Downloaded DOI 3NU3-7M5T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=25&year2=2021&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QF3Y-J9SR +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=26&year2=2021&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EFRN-6FK6 +Downloaded DOI R5T2-95T4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=27&year2=2021&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 8WTQ-9ZXP +Downloaded DOI DZ4K-DDXB +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=28&year2=2021&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI HNK4-24Z9 +Downloaded DOI DGS4-8ZWN +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=29&year2=2021&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BJ4B-AKJ8 +Downloaded DOI EM6A-9W5Z +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=30&year2=2021&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded DOI U3ME-MGEZ +Downloaded DOI 7SXM-3WC2 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=12&day=31&year2=2022&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QH7Q-XP8D +Downloaded DOI TW7J-UJ4J +Downloaded DOI TS4B-65W9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=1&year2=2022&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZDBN-E572 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=2&year2=2022&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI G38Q-ZPTG +Downloaded DOI KE76-5PKV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=3&year2=2022&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Z9AA-XM9K +Downloaded DOI D9ME-59FZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=4&year2=2022&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI G9BQ-NU3J +Downloaded DOI HT2F-HUA9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=5&year2=2022&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 2R4E-YDS5 +Downloaded DOI AJYY-P3X8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=6&year2=2022&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3VCY-FFR4 +Downloaded DOI NK59-VAUG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=7&year2=2022&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YZ8E-2E9M +No data found, error 404 +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=8&year2=2022&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI GJNG-4XPE +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=9&year2=2022&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Z8GK-ZKPX +Downloaded DOI TAZC-2A9H +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=10&year2=2022&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI ZEC6-424Z +Downloaded DOI MDB2-64RZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=11&year2=2022&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H3BS-WUV9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=12&year2=2022&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 2RCZ-Q7EX +Downloaded DOI NNRJ-D3EK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=13&year2=2022&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI A6AU-JWN4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=14&year2=2022&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RBEJ-WWMM +Downloaded DOI N8ME-3PEB +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=15&year2=2022&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TMPA-KKUY +Downloaded DOI APG6-3UHZ +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=16&year2=2022&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI QXTN-E8CB +Downloaded DOI 455K-K35V +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=17&year2=2022&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI CPN3-YVT8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=18&year2=2022&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 5SY4-ZVMJ +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=19&year2=2022&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI EK9Z-NCND +Downloaded DOI 286N-RH9Y +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=20&year2=2022&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 9DSS-8S7V +Downloaded DOI WEVB-YPG4 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=21&year2=2022&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded DOI V6BS-JB7B +Downloaded DOI EWRT-CQU8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=22&year2=2022&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI RBZE-WXGS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=23&year2=2022&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5VAD-VKHX +Downloaded DOI RW8N-246Q +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=24&year2=2022&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 28YM-BTVR +Downloaded DOI 8588-M2E9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=25&year2=2022&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H95E-FZYQ +Downloaded DOI Y24D-X3TV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=26&year2=2022&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6XAX-S4QF +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=27&year2=2022&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded DOI XUFJ-4WJH +Downloaded DOI W3MK-PT38 +Downloaded DOI XB3E-TP5T +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=28&year2=2022&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded DOI APYY-QYZE +Downloaded DOI SKJT-FCJ6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=29&year2=2022&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 3A5X-35JG +Downloaded DOI XBQ5-99UG +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=30&year2=2022&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI 5KB8-J8VK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=1&day=31&year2=2022&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 865F-9XD9 +Downloaded DOI CG6T-A6PF +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=1&year2=2022&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded DOI PERA-2KRP +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=2&year2=2022&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RF69-R4F5 +Downloaded DOI ENK3-698W +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=3&year2=2022&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded DOI TYJ4-DR8Z +Downloaded DOI FMXP-ET8X +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=4&year2=2022&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Y6HJ-HU3B +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=5&year2=2022&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded DOI PDWH-WQNK +Downloaded DOI 3XTP-ZHYU +Downloaded DOI MM5R-SW2X +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=6&year2=2022&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Q8NE-JWHP +No data found, error 404 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=7&year2=2022&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded DOI U2ZA-QMHG +No data found, error 404 +Downloaded DOI 3MEP-6VVM +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=8&year2=2022&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5KUB-NVM6 +Downloaded DOI 99UJ-BP8Q +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=9&year2=2022&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded DOI H8W5-ATGA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=10&year2=2022&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5JT9-VHHW +Downloaded DOI RW5Y-3UUH +Downloaded DOI 7VR2-2USK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=11&year2=2022&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 5K2B-EKPB +Downloaded DOI CYYP-HNER +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=12&year2=2022&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded DOI N99R-KWA4 +Downloaded DOI 36T8-9HBS +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=13&year2=2022&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded DOI WCH8-878T +Downloaded DOI ZQXZ-8TR3 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=14&year2=2022&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded DOI FCMU-JBF8 +Downloaded DOI 6T4T-V4QK +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=15&year2=2022&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI F5YF-N2K4 +Downloaded DOI ZZWV-3DT6 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=16&year2=2022&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 9A7A-EU4U +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=17&year2=2022&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded DOI Y7ZY-QND4 +Downloaded DOI SPW3-SJFD +Downloaded DOI R4TV-NC4V +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=18&year2=2022&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded DOI BCD4-ET2J +Downloaded DOI D6ZA-8N7Q +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=19&year2=2022&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 9V64-JDBY +Downloaded DOI MQ2E-5F48 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=20&year2=2022&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 6YRF-WABV +Downloaded DOI D5AA-X6BA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=21&year2=2022&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +No data found, error 404 +Downloaded DOI XEXH-9HY3 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=22&year2=2022&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded DOI YSUH-X6G7 +No data found, error 404 +Downloaded DOI UD6E-TTY8 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=23&year2=2022&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded DOI RKQF-PFPV +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=24&year2=2022&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded DOI 4V82-MYX4 +Downloaded DOI 3ZBP-VNE9 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=25&year2=2022&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded DOI SZRX-C2Q4 +Downloaded DOI BN4J-N5J7 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=26&year2=2022&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded DOI AGXV-N4MF +Downloaded DOI T85B-UXMF +Downloaded DOI PDJQ-ABWA +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2022&month=2&day=27&year2=2022&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 + +Downloaded DOI DANW-7Q5P +Downloaded DOI JXN2-CGJ3 +No data found, error 404 +Downloaded DOI 6WM4-FGCN +Downloaded DOI PPC5-ATD6 +Downloaded DOI T7QR-JKEN +Downloaded DOI RNFP-SHNR +Downloaded DOI WHGF-QH49 +Downloaded DOI TM8G-PUQU +Downloaded DOI MJHX-VAA8 +Downloaded DOI H6N5-XWR2 +Downloaded DOI E67S-HA6K +Downloaded DOI KPE3-6TP4 +Downloaded DOI J52G-YS8J +Downloaded DOI KBSK-Z8S5 +Downloaded DOI Q73U-UNAJ +Downloaded DOI NQ57-S4HP +Downloaded DOI DGSG-7UV9 +Downloaded DOI H4F8-JPVZ +Downloaded DOI 758X-Y9PN +Downloaded DOI PVME-PH77 +Downloaded DOI TVNZ-ATV9 +Downloaded DOI 86YF-B7YH +Downloaded DOI P4YG-KFXV +Downloaded DOI U3XV-GU5B +Downloaded DOI 9MR8-K6CJ +No data found, error 404 +Downloaded DOI UH2F-YX27 +Downloaded DOI BFXV-U8JW +Downloaded DOI GWMZ-5HSV +Downloaded DOI 4VBB-JHZQ +Downloaded DOI 7ZPF-UTFJ +Downloaded DOI FC54-6SXY +Downloaded DOI 3766-VJ8N +Downloaded DOI 8RWS-SWYR +Downloaded DOI 4Q2R-N7AM +Downloaded DOI S383-Y65K +Downloaded DOI FXRS-Q68C +Downloaded DOI QWZ3-DAP6 +Downloaded DOI 9S59-XSCQ +Downloaded DOI P6GY-UMKE +Downloaded DOI 54ZB-UNHA +Downloaded DOI RM7T-AQ4B +Downloaded DOI W8FH-GAP8 +No data found, error 404 +Downloaded DOI R6UK-NQZ7 +Downloaded DOI U7T6-MFPY +Downloaded DOI CT2F-KDM5 +Downloaded DOI KNBM-X66V +Downloaded DOI USQK-PDCE +Downloaded DOI NCHC-QP3Q +Downloaded DOI 77G8-2PWH +Downloaded DOI C4US-CMG4 +Downloaded DOI DEQV-K52K +Downloaded DOI AVWX-QERX +Downloaded DOI ACJH-ZWPF +Downloaded DOI EHX5-SEWU +Downloaded DOI 2CZD-ECP2 +Downloaded DOI XQPQ-95JP +Downloaded DOI TA7F-ST23 +Downloaded DOI 7YH9-MC9X +Downloaded DOI T6EM-TCGH +Downloaded DOI WENB-PMDA +Downloaded DOI RSFF-YV9B +Downloaded DOI VBTS-G3X7 +Downloaded DOI 888P-RRPE +Downloaded DOI GKYF-EVKS +Downloaded DOI CGJ2-HYAS +No data found, error 404 +Downloaded DOI TQJR-2VTS +Downloaded DOI 73S4-F7RU +Downloaded DOI NKZB-QC7X +Downloaded DOI HU9Z-JYQ3 +Downloaded DOI K2UM-NQ2S +Downloaded DOI FGXV-S4JP +Downloaded DOI 5Z8E-VZRU +No data found, error 404 +Downloaded DOI JUDZ-FSJD +Downloaded DOI 5NMR-AZD7 +Downloaded DOI KWJV-5AMP +Downloaded DOI N6BP-FYT9 +Downloaded DOI 3NE9-U2B3 +Downloaded DOI PUHR-CBC8 +Downloaded DOI HV4G-5WJP +Downloaded DOI M4UN-7AAN +Downloaded DOI KNXE-X6H9 +Downloaded DOI Q9VX-CU9W +Downloaded DOI AY8F-A5QS +Downloaded DOI VEKZ-QJJ8 +Downloaded DOI 8K6B-XAN6 +Downloaded DOI 4UGS-H9ER +Downloaded DOI 3WHK-U9CM +Downloaded DOI 7UMV-NNEJ +No data found, error 404 +Downloaded DOI 6CAT-2TVV +Downloaded DOI UYH2-NGPR +Downloaded DOI 57G6-QGP5 +Downloaded DOI 6MV4-8K5V +Downloaded DOI NTUQ-4WGX +Downloaded DOI F6AQ-65M5 +Downloaded DOI 3TBB-REWA +Downloaded DOI JHPT-AGJ4 +No data found, error 404 +Downloaded DOI NU9G-MXUR +No data found, error 404 +Downloaded DOI 4CTZ-YNWD +Downloaded DOI 7P4X-SAET +Downloaded DOI PJHU-3DBH +Downloaded DOI 7DX9-98K7 +Downloaded DOI 26JV-A45Z +Downloaded DOI B2QJ-6MXB +Downloaded DOI F9A6-9YXQ +Downloaded DOI U8NQ-9WNH +Downloaded DOI RUCR-RQV7 +Downloaded DOI EB3N-RVYB +Downloaded DOI YKKH-ZCXF +Downloaded DOI V5XH-TNZ4 +Downloaded DOI 4MQS-7EAB +Downloaded DOI VCHW-D8XS +Downloaded DOI KX7D-PMXT +Downloaded DOI MVQ7-MVP2 +Downloaded DOI 9WJ9-SZH7 +Downloaded DOI 945D-HQVY +Downloaded DOI Q733-FB5Q +Downloaded DOI BSCD-ZQ2X +Downloaded DOI 8MD4-98KV +Downloaded DOI 5HCF-8GQD +Downloaded DOI W9W5-ANC6 +Downloaded DOI 34SF-SS8E +Downloaded DOI VTPW-KT5E +Downloaded DOI NJYC-3TJY +No data found, error 404 +Downloaded DOI 4NK3-4FYU +Downloaded DOI 95HE-BMNU +Downloaded DOI 6Q72-2HF8 +Downloaded DOI CHND-Y7YU +Downloaded DOI 2QA8-E975 +Downloaded DOI APJJ-JG8C +Downloaded DOI CJW3-5CNJ +No data found, error 404 +Downloaded DOI BYHS-F4ZE +Downloaded DOI S64J-Q3J3 +Downloaded DOI 89AD-KZ2P +Downloaded DOI YGQC-CNGK +Downloaded DOI NSVY-GCC9 +Downloaded DOI SPRY-N558 +Downloaded DOI 5KKU-TQ6P +Downloaded DOI N4UM-F26X +Downloaded DOI GKHA-V88Z +Downloaded DOI 7VMC-NJ2E +Downloaded DOI MECX-2BM9 +Downloaded DOI Y4XB-WAVE +Downloaded DOI DXBF-MVPD +Downloaded DOI AUBF-RT2A +Downloaded DOI MDGY-FGE4 +Downloaded DOI AXAT-VGH9 +Downloaded DOI UBE4-T6N3 +Downloaded DOI XGEA-T5TA +No data found, error 404 +Downloaded DOI 6Q33-77EC +Downloaded DOI 7SW3-A4A4 +No data found, error 404 +Downloaded DOI NGVX-HRDH +Downloaded DOI TXCJ-WXKH +Downloaded DOI DUMC-MUU6 +Downloaded DOI TSJ2-6KY9 +Downloaded DOI Z8TC-PGX8 +Downloaded DOI AZ59-MDWG +Downloaded DOI AQTV-HV6R +Downloaded DOI VMCT-23ZB +Downloaded DOI XJD4-25V6 +Downloaded DOI ADV4-4F8W +Downloaded DOI ZSXJ-9UX8 +Downloaded DOI CY4U-D5GR +Downloaded DOI B4XM-RFAD +Downloaded DOI UXQ7-9YWM +Downloaded DOI 35TP-ZXSG +Downloaded DOI 8237-JH8W +Downloaded DOI 9VSD-426S +Downloaded DOI GEM7-Y5RN +No data found, error 404 +Downloaded DOI BTHJ-UREZ +No data found, error 404 +No data found, error 404 +Downloaded DOI 7EQR-YWC2 +Downloaded DOI 4ZGN-8FYP +Downloaded DOI A49V-K22S +Downloaded DOI ZP93-A28Q +Downloaded DOI 4Y5D-4U4M +Downloaded DOI PPSZ-C9Y7 +Downloaded DOI 4RET-GYHP +Downloaded DOI PA4S-FEX8 +Downloaded DOI 2BD7-A4SX +Downloaded DOI K66H-D4XZ +Downloaded DOI ZSSB-GYAC +Downloaded DOI 39FG-HPWT +Downloaded DOI B5DM-5GCG +No data found, error 404 +Downloaded DOI H2WS-8P9Y +Downloaded DOI 2SDQ-9XBV +Downloaded DOI 94ZZ-D37X +Downloaded DOI SRHS-TZ2A +Downloaded DOI P85A-35N3 +Downloaded DOI V7YR-XH8Y +Downloaded DOI 8PH6-95Q8 +Downloaded DOI JJ5F-QWQE +Downloaded DOI 3G5S-YZP8 +Downloaded DOI TXRP-WB3X +Downloaded DOI QBCE-ARXC +Downloaded DOI VK3G-MARY +Downloaded DOI FBMF-C3ZJ +Downloaded DOI 9WYQ-6KVF +Downloaded DOI 3D6R-SD8D +Downloaded DOI R538-SAW2 +Downloaded DOI VSFZ-82BW +Downloaded DOI 9UXQ-XRWH +Downloaded DOI G6G9-CS2J +Downloaded DOI EZWH-GKE5 +Downloaded DOI SR6U-ZK9A +Downloaded DOI YAN5-YXBK +Downloaded DOI EZFT-M8Z7 +Downloaded DOI 2P88-S28P +Downloaded DOI 7YC4-AZ6T +Downloaded DOI WDNW-5TK6 +Downloaded DOI F8EZ-CM3E +Downloaded DOI GVM2-Y4WK +Downloaded DOI Q74C-J8PY +Downloaded DOI ETVR-Y6XX +Downloaded DOI AT72-S4QD +Downloaded DOI M8Z5-63QC +Downloaded DOI TWR4-UH6Q +Downloaded DOI FC76-QGVU +Downloaded DOI EQKQ-8R6G +Downloaded DOI KHFA-A53T +Downloaded DOI AVCF-SW3S +Downloaded DOI 756Q-75TV +Downloaded DOI 8S4A-VDZ6 +Downloaded DOI RZXU-P2H4 +Downloaded DOI R685-CMSE +Downloaded DOI NGW6-874Z +Downloaded DOI 8ZRY-6YJ4 +Downloaded DOI HDXY-SDNQ +Downloaded DOI 8VAA-NQBQ +Downloaded DOI 8ER3-WUDU +Downloaded DOI 5APJ-X9YM +Downloaded DOI 7QUC-4N73 +Downloaded DOI 5HPS-YEZH +Downloaded DOI CCXT-ZXPV +Downloaded DOI RA6V-MGQS +No data found, error 404 +No data found, error 404 +Downloaded DOI 44YH-3UZ4 +Downloaded DOI 3RVE-NDJD +Downloaded DOI 8YZJ-P2UZ +Downloaded DOI 2BKB-59UW +Downloaded DOI ADAJ-HS5Y +Downloaded DOI XVKG-EJ9H +Downloaded DOI 6TED-ZJ6K +Downloaded DOI KKY8-N3N3 +Downloaded DOI 8YN5-3VEV +Downloaded DOI RYZA-DEQG +Downloaded DOI G7V5-ASFZ +Downloaded DOI 7V5S-495V +Downloaded DOI XB7Q-QH69 +Downloaded DOI 9QJZ-PEWD +No data found, error 404 +Downloaded DOI 8PRH-PV5K +Downloaded DOI 7PWC-APZ5 +Downloaded DOI 4NDT-N42E +Downloaded DOI Q8D8-DEWM +Downloaded DOI U6XE-ABXB +Downloaded DOI KZ25-NJC9 +Downloaded DOI R4Q9-N4CE +Downloaded DOI JEDP-6W8X +Downloaded DOI ZRJA-RRGQ +Downloaded DOI TXY5-2TZ2 +Downloaded DOI WAP8-A9UN +Downloaded DOI ABJ5-YPUN +Downloaded DOI 5359-75DT +Downloaded DOI US2F-N2DA +No data found, error 404 +Downloaded DOI 2JQG-XCJZ +Downloaded DOI WCNU-AE2B +Downloaded DOI SPHZ-Z37B +Downloaded DOI FRP9-CAPN +Downloaded DOI SWHX-86UY +Downloaded DOI 4FDC-6K6K +Downloaded DOI BZUQ-U33Z +Downloaded DOI D4NF-ZDT9 +Downloaded DOI JCJ2-CHVN +Downloaded DOI P7JB-67NS +Downloaded DOI 23CP-FJT5 +Downloaded DOI KFKY-MMAS +Downloaded DOI X9X2-SFM4 +Downloaded DOI 8YZ4-DJNQ +Downloaded DOI JGYQ-FNEH +No data found, error 404 +Downloaded DOI 2KH6-MYQM +No data found, error 404 +Downloaded DOI KKD7-88ME +Downloaded DOI 2YV5-SETN +Downloaded DOI BGVU-PY5G +Downloaded DOI 8QDC-WDTA +Downloaded DOI YDZG-7BDR +No data found, error 404 +Downloaded DOI HUBV-5VHU +Downloaded DOI 29XS-C26A +Downloaded DOI 39ED-85F4 +Downloaded DOI AWCH-MHBZ +Downloaded DOI VKT3-XB59 +No data found, error 404 +Downloaded DOI S6JG-7QHQ +Downloaded DOI NR33-ANDC +Downloaded DOI TKDP-CFT4 +Downloaded DOI JXU4-ZWTM +Downloaded DOI BJT5-AW8Z +Downloaded DOI S427-VMNN +Downloaded DOI NTTZ-GK9Y +Downloaded DOI R6AW-HMQW +Downloaded DOI CX6U-CVKZ +Downloaded DOI YFWZ-H8DE +Downloaded DOI X5GH-YFAK +No data found, error 404 +Downloaded DOI 7CTT-72JX +Downloaded DOI DCU5-TP9D +Downloaded DOI 2W9W-RA3Z +Downloaded DOI 7ZNT-PJ7D +Downloaded DOI PZ8T-76M8 +Downloaded DOI UX5D-66SY +Downloaded DOI 3WQF-GV3M +Downloaded DOI EY9B-M79M +Downloaded DOI HDKA-6GAN +Downloaded DOI RCKF-2QFY +Downloaded DOI UGGB-PXC7 +No data found, error 404 +Downloaded DOI RXEC-QSE4 +Downloaded DOI M4KF-BYPC +Downloaded DOI VRCH-D87V +Downloaded DOI ASSS-SSKZ +Downloaded DOI BMAW-TGWX +Downloaded DOI 36NY-GJ4X +Downloaded DOI 9H9P-MFJ8 +Downloaded DOI 74NE-WJG2 +Downloaded DOI P6BC-YBWZ +Downloaded DOI EN8D-F5FN +No data found, error 404 +Downloaded DOI YQYC-2FNS +Downloaded DOI 868Y-J2CF +Downloaded DOI BB8C-5EF2 +No data found, error 404 +Downloaded DOI JE75-KV6C +Downloaded DOI 5QDQ-WEFZ +Downloaded DOI M5VX-4PZE +Downloaded DOI CN7N-68JE +Downloaded DOI RCNT-FN4Y +Downloaded DOI MHWG-AJKN +Downloaded DOI EU2Z-ANKD +Downloaded DOI 63DP-HVH2 +Downloaded DOI JQAS-A2PY +Downloaded DOI CT6X-ECZU +Downloaded DOI GXKR-EXGE +Downloaded DOI NJBV-EFQB +Downloaded DOI Q99A-48WW +Downloaded DOI H3H9-DJTF +No data found, error 404 +Downloaded DOI FMYR-TETY +Downloaded DOI U2EK-422X +Downloaded DOI RP45-K5NG +Downloaded DOI 9K5Z-SNFW +Downloaded DOI 8FKV-H4Z7 +Downloaded DOI W3KF-AGDS +Downloaded DOI 2JV3-Z4QC +Downloaded DOI 7DY2-3Y77 +No data found, error 404 +Downloaded DOI DM35-4G6Z +Downloaded DOI 54ZM-9D7G +Downloaded DOI XEKK-KTZ5 +Downloaded DOI ZS8U-FYRS +Downloaded DOI 2QTJ-6U3Y +Downloaded DOI 8DEG-YMK9 +Downloaded DOI RPPF-Q6TE +No data found, error 404 +Downloaded DOI JYY8-B4ER +Downloaded DOI CWTK-94RH +Downloaded DOI PQXT-NCS9 +Downloaded DOI 8ZRD-M45S +Downloaded DOI MPR7-UUSQ +Downloaded DOI WD6V-FJ4N +Downloaded DOI BMAR-HPPH +Downloaded DOI SVKF-GQDX +Downloaded DOI QXY9-PDNC +Downloaded DOI A3JN-FUFZ +Downloaded DOI KTF6-ET6J +Downloaded DOI XFQS-G9EM +Downloaded DOI VK6E-4BE5 +Downloaded DOI 46U3-4E6R +No data found, error 404 +No data found, error 404 +Downloaded DOI P2PY-HS7Z +Downloaded DOI HUWD-2TMS +Downloaded DOI HDY2-CFSU +No data found, error 404 +Downloaded DOI N5MQ-AGBF +Downloaded DOI EY2H-3RD7 +Downloaded DOI 4HB9-T2KU +Downloaded DOI BMMD-7V8K +No data found, error 404 +Downloaded DOI VSHS-8TKV +Downloaded DOI 5V5U-7ATV +No data found, error 404 +Downloaded DOI YJX2-RJQC +No data found, error 404 +Downloaded DOI XRWR-QDUM +Downloaded DOI MM55-TEBY +Downloaded DOI 7HBE-PEQK +Downloaded DOI 26TA-6Z87 +Downloaded DOI 88B6-9UUX +Downloaded DOI D3Z5-ZFRP +Downloaded DOI ZUTH-7F56 +Downloaded DOI JKEQ-WQP6 +Downloaded DOI BYCB-A859 +Downloaded DOI RDHW-DZY4 +No data found, error 404 +Downloaded DOI 72MJ-2RM2 +Downloaded DOI S6CN-DXGU +Downloaded DOI F272-9444 +Downloaded DOI ZKMZ-396Y +Downloaded DOI 5UCA-RTH6 +Downloaded DOI EEXH-JBCN +Downloaded DOI R9SS-DEFB +Downloaded DOI 9R9Z-5GYW +Downloaded DOI 7XG9-CJXT +Downloaded DOI 5CMK-NXCY +Downloaded DOI 9TNQ-H3JB +Downloaded DOI 4NW7-283W +No data found, error 404 +Downloaded DOI 5JJQ-B4UH +Downloaded DOI WQMB-ZV94 +Downloaded DOI 5R4G-SAEK +Downloaded DOI VAXQ-334S +Downloaded DOI GQ98-G8W8 +No data found, error 404 +Downloaded DOI F53S-PCQA +Downloaded DOI W9JE-J4WU +Downloaded DOI VZDC-JMAM +Downloaded DOI 3HTJ-7Y2T +Downloaded DOI T9D2-27X8 +Downloaded DOI 4FCB-4W4A +Downloaded DOI SPBY-UPDW +Downloaded DOI SRUR-XPK8 +Downloaded DOI 9SPJ-9DYW +Downloaded DOI V7ZC-XRMW +Downloaded DOI DHBX-DHH5 +Downloaded DOI 3C9Z-5NAC +Downloaded DOI ZZ85-CGKM +Downloaded DOI 2U6N-EWXB +Downloaded DOI CSDC-84EP +Downloaded DOI FHPM-EUNQ +Downloaded DOI GCYA-GPFY +Downloaded DOI 4XNC-TVE3 +Downloaded DOI TAP2-GGHH +Downloaded DOI 3AK7-Q8RU +Downloaded DOI NEJR-NAKD +Downloaded DOI TY8N-KJUJ +Downloaded DOI PHCY-R275 +Downloaded DOI ZF5F-UUB5 +Downloaded DOI GH6D-EZ2E +Downloaded DOI M6RC-TP9M +Downloaded DOI HZPY-EEQ4 +Downloaded DOI 5X92-WCWS +Downloaded DOI FKQZ-NQMW +Downloaded DOI NQTQ-X3K2 +Downloaded DOI F5FW-472B +Downloaded DOI 4Y9R-PS36 +Downloaded DOI EBW4-QESX +Downloaded DOI 9N87-7D87 +Downloaded DOI XB4U-SGJW +Downloaded DOI U8V3-6KNR +Downloaded DOI UHQ5-JBWH +Downloaded DOI SGRH-DDPC +Downloaded DOI 3882-CNRQ +Downloaded DOI SJAZ-QKG9 +Downloaded DOI 3TGB-5ZVJ +Downloaded DOI URGM-TWSA +Downloaded DOI UQKB-YEU7 +Downloaded DOI 9NGE-FEW6 +Downloaded DOI Z5XR-GTNQ +No data found, error 404 +Downloaded DOI JGKP-P9F5 +Downloaded DOI SJVR-7GNE +Downloaded DOI XQMA-HPE5 +No data found, error 404 +Downloaded DOI FJG9-UUMX +Downloaded DOI VYAP-SWZ7 +Downloaded DOI ZMJW-3FMR +Downloaded DOI X37R-JBYN +Downloaded DOI RDYR-69K8 +Downloaded DOI E2N6-AGGG +Downloaded DOI HXMP-9PYU +Downloaded DOI X5YE-RZEB +Downloaded DOI 9S9S-HV85 +Downloaded DOI NC2P-ZESE +Downloaded DOI SSWK-ERZZ +Downloaded DOI PV8H-DQ28 +No data found, error 404 +Downloaded DOI BBES-M66W +Downloaded DOI JFWP-HFPZ +Downloaded DOI DEVS-QRCR +Downloaded DOI AFZ7-R2E4 +Downloaded DOI 5RDZ-FHES +No data found, error 404 +Downloaded DOI RXUE-H3ED +Downloaded DOI 9TWE-6J2A +Downloaded DOI VN2G-9AMN +Downloaded DOI GAG6-YCA9 +Downloaded DOI HSSZ-PHUA +Downloaded DOI HEJ8-4MUD +Downloaded DOI WPKR-SF8Q +Downloaded DOI 29MM-NVMR +No data found, error 404 +No data found, error 404 +Downloaded DOI THRR-HV46 +Downloaded DOI 5QHR-SGVQ +Downloaded DOI DP26-HWE7 +Downloaded DOI KHGE-YTFB +Downloaded DOI WUFR-YVQZ +Downloaded DOI HQZQ-ZYJU +Downloaded DOI 6KC4-PHCR +No data found, error 404 +Downloaded DOI EHBB-3AB5 +Downloaded DOI HJH9-TYA3 +No data found, error 404 +Downloaded DOI UJ2H-CQCH +Downloaded DOI 5JT4-VEE2 +Downloaded DOI 7ZA5-ZP8R +Downloaded DOI MY26-DD9F +Downloaded DOI 3HMJ-GH9S +Downloaded DOI WW2G-Y3JE +Downloaded DOI RDZZ-7N9W +Downloaded DOI JDFC-84S5 +Downloaded DOI YTD3-DMME +Downloaded DOI Q2V8-JQF4 +Downloaded DOI J8MA-2DFY +Downloaded DOI MME6-ZVDY +Downloaded DOI ZKT3-7TYX +Downloaded DOI CDHM-Y42S +Downloaded DOI ZSN8-CGCE +Downloaded DOI J6RQ-Q82X +Downloaded DOI 292U-N4C9 +Downloaded DOI Q56H-SMHJ +Downloaded DOI 42KS-EU4R +Downloaded DOI J7EC-KTCK +Downloaded DOI JKHS-E7XP +Downloaded DOI ABXM-77EU +Downloaded DOI HT2W-G4CE +Downloaded DOI 5NZS-KERK +Downloaded DOI ERRK-32QM +No data found, error 404 +Downloaded DOI 5H7P-XWDJ +Downloaded DOI GABY-WT8R +Downloaded DOI XX2F-XG9D +Downloaded DOI 6YMM-M456 +Downloaded DOI K3UQ-ZGSK +Downloaded DOI U5TX-ZUVU +Downloaded DOI 4YNZ-BGVW +No data found, error 404 +Downloaded DOI BWHP-CQXM +Downloaded DOI WTJS-5YNG +Downloaded DOI 2EWW-H4MX +No data found, error 404 +Downloaded DOI PCB6-H476 +No data found, error 404 +Downloaded DOI 76AE-NNP4 +Downloaded DOI AN9A-NKJW +No data found, error 404 +Downloaded DOI S695-JUM7 +Downloaded DOI SZK6-RPSZ +Downloaded DOI QSXW-9759 +Downloaded DOI 39BV-5QYM +Downloaded DOI YBV5-UNK6 +No data found, error 404 +Downloaded DOI 93SK-YDNC +No data found, error 404 +Downloaded DOI Q88H-CNDF +Downloaded DOI H5ZZ-Q6RF +Downloaded DOI BP2K-GA47 +Downloaded DOI 4EYE-H2KD +No data found, error 404 +Downloaded DOI XPZV-UKJB +Downloaded DOI FMET-C5XE +Downloaded DOI 7D89-PUGN +Downloaded DOI 38DE-NWFT +Downloaded DOI PG3X-QKGJ +Downloaded DOI 29X6-98KC +Downloaded DOI GVMN-J285 +Downloaded DOI WQUR-ABYX +Downloaded DOI W5Z6-QSN3 +Downloaded DOI F8UC-KJJE +Downloaded DOI QSH4-66DG +No data found, error 404 +Downloaded DOI 6C98-XNVH +Downloaded DOI Y78Y-KMWM +Downloaded DOI UGQZ-W758 +No data found, error 404 +Downloaded DOI FE54-99PF +Downloaded DOI 4Z9S-YNCJ +Downloaded DOI 8SNN-BD8F +Downloaded DOI 2GU4-DSA8 +No data found, error 404 +Downloaded DOI QF7C-WN6X +Downloaded DOI Y55C-U67P +No data found, error 404 +Downloaded DOI 2Y8P-ZCUQ +Downloaded DOI X2CA-366K +Downloaded DOI FC8S-KW98 +Downloaded DOI XBBQ-TFUY +Downloaded DOI TTF9-XSBN +Downloaded DOI S4MM-DBCU +Downloaded DOI Z453-J2QK +Downloaded DOI RNAX-DY9X +Downloaded DOI 2SK2-X7RW +Downloaded DOI 5SUH-APJB +Downloaded DOI Z3A6-XGTS +Downloaded DOI KQET-Z65S +Downloaded DOI QMEG-SKCW +Downloaded DOI 56FX-P83W +Downloaded DOI 53RQ-HK24 +Downloaded DOI NQYT-7CMN +Downloaded DOI PVDD-U4EZ +Downloaded DOI WJ2A-8Q3G +Downloaded DOI 8BTZ-K3AP +Downloaded DOI VWM9-9KZK +Downloaded DOI WSP5-2PVU +Downloaded DOI NY4P-HSTX +Downloaded DOI 32J5-SC2K +Downloaded DOI FA7E-JTJW +Downloaded DOI J36B-XKV2 +Downloaded DOI 7UC4-46DX +Downloaded DOI QXZR-CJJW +Downloaded DOI YV3B-QU8P +Downloaded DOI 7JM2-FYQ8 +No data found, error 404 +Downloaded DOI 27SA-RVZ8 +Downloaded DOI QD4U-PZ92 +Downloaded DOI 4RAM-XGFW +Downloaded DOI 46JP-SF96 +Downloaded DOI HFWZ-8C5T +No data found, error 404 +Downloaded DOI 4V2B-DCUM +Downloaded DOI F83R-TZYT +Downloaded DOI V2AR-9CHX +Downloaded DOI WEJ2-EVAR +Downloaded DOI 2JEC-FUND +Downloaded DOI QUJ2-TPGT +Downloaded DOI 9XK4-6UKT +Downloaded DOI NG9K-GGAX +Downloaded DOI 8NGM-GTFF +Downloaded DOI MPWQ-HH5G +Downloaded DOI NRDH-UXCE +Downloaded DOI SDTK-CF82 +Downloaded DOI MU7J-WMER +Downloaded DOI T3ZK-EFAE +Downloaded DOI 9ZZR-VHAT +Downloaded DOI UB7C-W94F +Downloaded DOI UY8K-MXA2 +Downloaded DOI 5Z52-HCUD +Downloaded DOI MSD2-BN2B +Downloaded DOI MYEX-HJ9S +Downloaded DOI WXK3-85WM +Downloaded DOI 6URX-CVZT +Downloaded DOI Z4AV-U5RS +Downloaded DOI DQZK-ZWN8 +No data found, error 404 +Downloaded DOI 3HGP-XKEU +Downloaded DOI S5MW-MR53 +Downloaded DOI 8FBF-DEAT +Downloaded DOI 987C-PEND +Downloaded DOI 42PW-XF3J +Downloaded DOI QBD3-2VTB +Downloaded DOI C3A9-CGGH +Downloaded DOI HC55-G9CB +Downloaded DOI JFF9-ZHGS +No data found, error 404 +Downloaded DOI QWPF-FFB7 +Downloaded DOI HZV3-Q6WA +Downloaded DOI 4UKN-M2EV +Downloaded DOI 6XH7-WB9T +Downloaded DOI HY72-V3HW +Downloaded DOI 4CXW-3CWF +Downloaded DOI PQ9K-ANVH +Downloaded DOI GRFJ-V2Q4 +Downloaded DOI Y3A5-Q2DN +Downloaded DOI PC2Q-T2U9 +Downloaded DOI VHKW-AH49 +Downloaded DOI 9YGT-WPUF +Downloaded DOI M45Y-CZB8 +Downloaded DOI DRPF-DDD7 +Downloaded DOI FS8V-2F5R +Downloaded DOI GK55-7JGP +Downloaded DOI GR2R-KP39 +Downloaded DOI FUD7-D4FP +Downloaded DOI QHWA-68GY +No data found, error 404 +Downloaded DOI 3SKW-22U9 +Downloaded DOI 9AHP-Y2R4 +Downloaded DOI 9RQE-QK8R +Downloaded DOI QNWF-A56C +Downloaded DOI SY9W-68SV +Downloaded DOI WDCE-8PXG +Downloaded DOI V2C7-BWEY +Downloaded DOI QZFQ-RRC8 +Downloaded DOI BBED-UXQU +No data found, error 404 +Downloaded DOI UKFZ-2KGW +Downloaded DOI M3BZ-N3P9 +Downloaded DOI NUYV-TT6R +No data found, error 404 +Downloaded DOI W6XF-FPSJ +Downloaded DOI UHRR-8N48 +Downloaded DOI GEMM-2ZUP +Downloaded DOI 5GBT-GBKY +Downloaded DOI NXCT-E7GB +Downloaded DOI JQGC-NHXY +No data found, error 404 +Downloaded DOI R96A-9XY7 +Downloaded DOI X3PQ-2YJ2 +Downloaded DOI PEEX-HBW6 +Downloaded DOI SD8T-CTRQ +Downloaded DOI EKVX-XUC9 +Downloaded DOI 6F9P-J6AR +Downloaded DOI MZQM-5MG8 +Downloaded DOI 43VT-J7U6 +Downloaded DOI XTEZ-EU4E +Downloaded DOI GK8X-7SP3 +Downloaded DOI Z2Y3-2Y3V +Downloaded DOI KCZW-QP9Y +Downloaded DOI H4HB-8CPV +Downloaded DOI XAQ2-NZPJ +Downloaded DOI U9ZW-8JME +Downloaded DOI G6A2-HVPS +Downloaded DOI W9PS-CQXQ +Downloaded DOI JTRY-VZPS +Downloaded DOI 92NZ-6DUS +Downloaded DOI U4R7-R94P +Downloaded DOI VQRF-EG2M +Downloaded DOI 4TED-PSXN +Downloaded DOI YYKE-ZF7V +Downloaded DOI QMWN-RE55 +No data found, error 404 +Downloaded DOI 652F-Z8X6 +Downloaded DOI SMP4-5YKT +Downloaded DOI J8ZR-57B4 +No data found, error 404 +Downloaded DOI P5SB-EPSN +Downloaded DOI YXKE-H2FA +Downloaded DOI YWNC-7BQV +No data found, error 404 +Downloaded DOI UPNE-NQMS +Downloaded DOI CTYB-72E2 +Downloaded DOI EH2Q-RCJ4 +Downloaded DOI MB7F-PDAV +Downloaded DOI TCF6-PVYP +Downloaded DOI J3RH-R3UE +Downloaded DOI 4YJ8-C3YC +Downloaded DOI KQJE-UT6J +Downloaded DOI RTXT-URJR +Downloaded DOI 3J4J-9YU3 +No data found, error 404 +Downloaded DOI WQMD-UK22 +Downloaded DOI YP4R-DATZ +Downloaded DOI CJ83-VYRJ +Downloaded DOI TMUV-Z525 +Downloaded DOI UMK7-PA44 +Downloaded DOI 6V3W-WWVN +Downloaded DOI 75F4-6AZY +Downloaded DOI ST9C-4UC4 +Downloaded DOI Z438-TJVY +Downloaded DOI KMNC-3RRS +Downloaded DOI 3T4G-EXYU +Downloaded DOI X8H8-Y9DJ +Downloaded DOI V5Q5-ZAC7 +Downloaded DOI 7MHK-S3FB +Downloaded DOI 55NC-BAHJ +Downloaded DOI X4BA-N9XD +No data found, error 404 +Downloaded DOI FUEF-E2HD +Downloaded DOI NW9Y-T4T2 +Downloaded DOI C5EH-8GCC +Downloaded DOI ZEDQ-3WY5 +Downloaded DOI 34N2-TVJP +Downloaded DOI N9EB-C2C8 +Downloaded DOI AGES-WJNA +Downloaded DOI SDXA-2G94 +Downloaded DOI NEJK-YHBN +Downloaded DOI BCYT-6Y4J +Downloaded DOI RUG6-UX4K +Downloaded DOI JY8Q-98NZ +Downloaded DOI 7U95-EHWU +Downloaded DOI JEQ9-MWGQ +Downloaded DOI E4XC-HW9T +No data found, error 404 +Downloaded DOI FWP9-KWXF +Downloaded DOI V7RW-HEAK +No data found, error 404 +Downloaded DOI GD43-EW6U +Downloaded DOI Z8R4-7QWJ +Downloaded DOI KBV5-NDBJ +Downloaded DOI UDC9-9FYB +Downloaded DOI 25FU-X7CV +Downloaded DOI Y84M-738T +Downloaded DOI 38E9-244Y +Downloaded DOI VZT8-AXQS +No data found, error 404 +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI UBWG-WEPM +Downloaded DOI VVMM-2598 +No data found, error 404 +Downloaded DOI FM4F-GT9H +No data found, error 404 +Downloaded DOI DUFV-85Y6 +No data found, error 404 +Downloaded DOI 25WG-HVUC +Downloaded DOI JCMW-ACZW +Downloaded DOI Z87H-8PQZ +Downloaded DOI HDYG-83KQ +Downloaded DOI G7CB-Z8YN +Downloaded DOI 24ZS-3P5G +Downloaded DOI 3HFX-9MAV +Downloaded DOI WHPT-TQ9C +Downloaded DOI E3AX-NZZY +Downloaded DOI HNTC-NKFS +Downloaded DOI 783D-KR6P +Downloaded DOI T6AD-ZQP6 +Downloaded DOI UGZX-46EQ +Downloaded DOI FMAV-SBH3 +Downloaded DOI UN4B-TA9D +Downloaded DOI 9P4V-5GNU +Downloaded DOI 3YJR-RZPS +Downloaded DOI ANPG-ASDY +Downloaded DOI GHSF-8CCE +Downloaded DOI GTHN-CQR7 +No data found, error 404 +Downloaded DOI ZJ6Y-VKYW +No data found, error 404 +Downloaded DOI ZBXT-9KB9 +Downloaded DOI 6M5B-65MV +Downloaded DOI TXCS-25MX +Downloaded DOI GBQA-PCCR +Downloaded DOI W26A-F9PJ +No data found, error 404 +Downloaded DOI KKRC-GR2G +Downloaded DOI HDAX-CBAZ +Downloaded DOI D5RK-NBCU +Downloaded DOI V823-X8MM +Downloaded DOI M636-9NHY +Downloaded DOI W4UV-8FC7 +Downloaded DOI Q4JA-PMUD +Downloaded DOI 37Z3-WTQG +Downloaded DOI 995P-EP5D +Downloaded DOI S96F-UCN8 +Downloaded DOI ZXQT-FWG7 +Downloaded DOI ETQQ-PQRU +Downloaded DOI AY75-YDAT +Downloaded DOI Z52G-GY5Z +Downloaded DOI F4Q4-49V4 +Downloaded DOI 459D-9WEW +Downloaded DOI WAHK-RMX6 +Downloaded DOI CUH4-RR4C +Downloaded DOI 57GP-KXAH +Downloaded DOI 8QWV-NWA5 +No data found, error 404 +Downloaded DOI 8EJ2-N5C5 +Downloaded DOI DHCJ-232T +Downloaded DOI SZ4A-726T +Downloaded DOI BSF4-JKDP +Downloaded DOI SBHW-G59Q +Downloaded DOI GBH6-23U5 +Downloaded DOI PQGM-2VAP +Downloaded DOI SSGS-EKYN +Downloaded DOI T3DY-V2FB +Downloaded DOI ZNS7-S5CE +Downloaded DOI 4MDB-8W72 +Downloaded DOI 65T5-WZ3B +Downloaded DOI 95ZM-AF7X +Downloaded DOI KD36-U9UC +Downloaded DOI 4HME-YKKE +Downloaded DOI UYHV-JK3U +Downloaded DOI TZ5N-BDGF +Downloaded DOI CPYY-VMTD +Downloaded DOI Z5QV-JQKK +Downloaded DOI PERN-XKHE +Downloaded DOI 3AV9-YEM2 +Downloaded DOI DSAK-KXH9 +Downloaded DOI 9Q5C-W47K +Downloaded DOI NGA3-QZ85 +Downloaded DOI U9J8-GYD8 +Downloaded DOI ENHW-G8YB +Downloaded DOI 348U-SDNA +Downloaded DOI QCQF-TSCX +Downloaded DOI Z6UB-UHY9 +No data found, error 404 +Downloaded DOI TBGW-T5WP +Downloaded DOI KCBQ-KEFZ +Downloaded DOI U45Z-9KNH +Downloaded DOI MTQU-MPTB +Downloaded DOI EPKC-6BA5 +Downloaded DOI PQAX-7YTE +Downloaded DOI KQ4S-8BZX +Downloaded DOI F6WK-E9XB +Downloaded DOI 6266-BPXT +Downloaded DOI KZVG-NC7E +Downloaded DOI UJ46-73AC +Downloaded DOI D8GB-UFR3 +Downloaded DOI 8QWS-2E3J +Downloaded DOI H3QW-76S7 +Downloaded DOI 59JP-ACT9 +Downloaded DOI N8C9-N2YS +No data found, error 404 +Downloaded DOI U73Q-6Y4D +Downloaded DOI 9DKZ-RNHT +No data found, error 404 +Downloaded DOI QHS3-EVA6 +Downloaded DOI E2K9-C5SZ +Downloaded DOI 7HSR-7BBU +Downloaded DOI VW9T-JD3N +Downloaded DOI 66WP-S338 +Downloaded DOI CYFQ-G3GM +Downloaded DOI ZANN-SYF7 +Downloaded DOI CA9R-G8N5 +No data found, error 404 +Downloaded DOI D8WK-EN2Q +Downloaded DOI R64S-GH7G +No data found, error 404 +Downloaded DOI WVBM-T8G9 +Downloaded DOI KKMM-F2PM +Downloaded DOI PSNC-A2AZ +Downloaded DOI RUAS-FM7Y +Downloaded DOI VXQV-4SYZ +Downloaded DOI TEGD-6G42 +Downloaded DOI 4YA6-2SQF +Downloaded DOI VNAW-CPVP +Downloaded DOI YRRS-ZAKB +Downloaded DOI WJJD-8N78 +Downloaded DOI XRG4-JN78 +Downloaded DOI N37K-623Q +Downloaded DOI FY7T-QPU6 +Downloaded DOI H4EX-5H2C +Downloaded DOI R3AB-X353 +Downloaded DOI X3RS-G2CR +Downloaded DOI N2FW-CSTZ +Downloaded DOI JMZP-ASVH +Downloaded DOI CCWR-A8AE +Downloaded DOI YSC3-C2DA +Downloaded DOI TMPP-WKZM +Downloaded DOI Y9U9-ZN2X +Downloaded DOI 67K4-U8MC +Downloaded DOI 8X3Z-SVGK +Downloaded DOI A9UC-9SKR +Downloaded DOI VJ4R-TMNR +Downloaded DOI RFG9-K9JV +Downloaded DOI VQR3-SW45 +Downloaded DOI G2U6-EXQF +Downloaded DOI BB88-RWY8 +Downloaded DOI GVQN-6U67 +Downloaded DOI UWQE-YHSE +Downloaded DOI TT3S-JPA4 +Downloaded DOI HVHP-32Q6 +Downloaded DOI 8YBH-VGKH +Downloaded DOI RTR5-SX8Q +Downloaded DOI MN68-ZJG5 +Downloaded DOI TEMW-KYGY +No data found, error 404 +No data found, error 404 +Downloaded DOI 3QWJ-K3X3 +Downloaded DOI SZJQ-H6GJ +Downloaded DOI 22U8-WK52 +No data found, error 404 +Downloaded DOI 4VEX-3MHY +Downloaded DOI 2WRW-NF2U +Downloaded DOI MNSS-27ZV +Downloaded DOI NNDW-JVVB +No data found, error 404 +Downloaded DOI 9P3B-NE4X +Downloaded DOI FJHV-9962 +Downloaded DOI FYYB-XKVF +Downloaded DOI EST5-XB6M +Downloaded DOI SPR8-RD8Y +Downloaded DOI TYVQ-N2KN +Downloaded DOI 9NY2-MSVP +Downloaded DOI 62FY-4BT4 +Downloaded DOI AEG2-CDFQ +Downloaded DOI V299-J9A8 +Downloaded DOI TYSS-PAYX +Downloaded DOI CJM9-CHWT +Downloaded DOI UVXA-AX43 +Downloaded DOI A9MR-VAZ9 +Downloaded DOI K2GS-KVEQ +Downloaded DOI TX86-YVYG +Downloaded DOI 4F29-9NY2 +Downloaded DOI JTP8-BZX7 +Downloaded DOI WU8G-KG7X +Downloaded DOI RRKY-NXFY +Downloaded DOI X2HE-C2TP +Downloaded DOI Q46E-BZDR +Downloaded DOI X69P-5WNT +Downloaded DOI 543V-P36R +Downloaded DOI UVF4-BQ9H +Downloaded DOI EH4J-UEQ5 +Downloaded DOI TJ77-6PZ2 +Downloaded DOI G5WH-UT6C +Downloaded DOI W3DY-VJGZ +Downloaded DOI UUYY-CYBE +Downloaded DOI 65FH-BU88 +Downloaded DOI 4T7T-WWXA +Downloaded DOI CCQY-JJTN +Downloaded DOI W7E3-9K9Y +Downloaded DOI N3X6-YW2K +Downloaded DOI H76K-FKME +Downloaded DOI FNYC-UXF5 +Downloaded DOI B4N5-RTR6 +Downloaded DOI N5QC-4GMK +Downloaded DOI 2YVK-N436 +Downloaded DOI QRDR-ATVR +Downloaded DOI GH37-88PV +Downloaded DOI NC3M-2REW +Downloaded DOI YZTF-DCPV +Downloaded DOI XJHB-WS3Y +Downloaded DOI PTHU-NFXP +Downloaded DOI U5F2-R6DZ +Downloaded DOI E96J-W3C3 +No data found, error 404 +Downloaded DOI SCDH-H2HH +No data found, error 404 +Downloaded DOI PZHE-5BV2 +Downloaded DOI 5GFG-HSJG +Downloaded DOI 68N3-8N2G +Downloaded DOI Q7TR-YMUK +No data found, error 404 +Downloaded DOI VC8K-W5UN +Downloaded DOI TSKC-PB67 +Downloaded DOI 793F-EFUM +Downloaded DOI 7HEU-QS2C +Downloaded DOI YAFY-F22D +Downloaded DOI 3UB8-VYPN +Downloaded DOI XD8R-SEPV +Downloaded DOI F584-XHZF +No data found, error 404 +Downloaded DOI 6VXA-S279 +Downloaded DOI F6DJ-6G5B +Downloaded DOI KX23-YM9A +Downloaded DOI S98E-QFYP +Downloaded DOI SG59-PTZU +No data found, error 404 +Downloaded DOI XKAQ-QFC5 +Downloaded DOI Y3HU-XJJX +Downloaded DOI C48U-9MQT +Downloaded DOI ZET9-5HW2 +Downloaded DOI 9SCV-DDSG +Downloaded DOI EZT6-BZJ7 +Downloaded DOI E6MH-YG58 +Downloaded DOI HVPY-2R2M +Downloaded DOI ZKTQ-CSA9 +Downloaded DOI HPEN-TWJK +Downloaded DOI NZRK-NYAK +No data found, error 404 +Downloaded DOI DJ7T-6ZFV +Downloaded DOI PN8B-US6R +Downloaded DOI 4M6H-5KUY +Downloaded DOI S29W-TJMH +Downloaded DOI 9VNV-EWZV +Downloaded DOI FFHQ-UR7B +No data found, error 404 +Downloaded DOI 422P-8G6Q +Downloaded DOI QCKZ-UFSX +Downloaded DOI E4AS-N3G9 +No data found, error 404 +Downloaded DOI D2FS-TVFR +Downloaded DOI TPJW-J6KB +Downloaded DOI Z6HR-KYFS +Downloaded DOI T3SB-DZPE +Downloaded DOI 56AK-69X5 +Downloaded DOI RGN9-6X8E +Downloaded DOI KTKU-RQJ5 +Downloaded DOI 9HKN-S3TQ +Downloaded DOI G43B-3RPD +Downloaded DOI QCPF-4Y7M +Downloaded DOI FZSP-CPS2 +Downloaded DOI DPB2-KAFC +Downloaded DOI 7Q5P-5N5A +Downloaded DOI 6EUH-RYDF +Downloaded DOI ADVF-6RSF +Downloaded DOI PZ5N-QTTA +Downloaded DOI JK6K-MA4D +Downloaded DOI 5F56-UEE8 +Downloaded DOI 6W2F-SZF4 +Downloaded DOI HDV8-ZKRB +Downloaded DOI 6RFM-MYF9 +No data found, error 404 +Downloaded DOI 8NSK-7UWW +Downloaded DOI NCZQ-D3VW +Downloaded DOI 5JEN-Y2RJ +Downloaded DOI G8V2-V496 +Downloaded DOI VNRY-5E4J +Downloaded DOI XNW8-VQQS +Downloaded DOI B3DT-PACU +Downloaded DOI 5JJZ-WRZ3 +No data found, error 404 +Downloaded DOI K549-UR5N +Downloaded DOI WTDY-HTGN +Downloaded DOI QPH6-554Y +Downloaded DOI A68X-2JEH +Downloaded DOI 4JBT-YXMG +No data found, error 404 +Downloaded DOI 28UM-B7QM +Downloaded DOI EMQF-WX7U +Downloaded DOI 39Q3-SYXY +Downloaded DOI BB5G-27Y3 +Downloaded DOI BDPP-SCVH +Downloaded DOI KC7S-5HN4 +No data found, error 404 +Downloaded DOI SY9M-J58J +Downloaded DOI MQEF-GKP2 +Downloaded DOI XSBJ-43AE +No data found, error 404 +Downloaded DOI QDYS-SWRZ +Downloaded DOI U7TJ-6K3F +Downloaded DOI FRNH-CS7C +Downloaded DOI DRVT-JQV3 +Downloaded DOI BQV3-MKN5 +Downloaded DOI QT4G-2PNZ +Downloaded DOI JK5T-AGBH +Downloaded DOI WMZY-5CWC +Downloaded DOI 4G72-GHUB +Downloaded DOI 26FY-HVDZ +Downloaded DOI FT5X-TQ9M +Downloaded DOI Q97D-W8XY +Downloaded DOI VP9B-YRZX +Downloaded DOI ASYS-ZC4P +No data found, error 404 +Downloaded DOI YWFD-GHVT +Downloaded DOI Z9DJ-MF8M +Downloaded DOI F9KM-BCSE +Downloaded DOI UFGU-P3F5 +Downloaded DOI U6X8-TA8F +Downloaded DOI UTMF-WBE5 +No data found, error 404 +No data found, error 404 +Downloaded DOI DYUS-8UKD +Downloaded DOI FDXT-QKZ2 +No data found, error 404 +Downloaded DOI JP4Q-YV66 +Downloaded DOI F6D9-75GS +Downloaded DOI BGYK-YF4H +Downloaded DOI BYQY-M4U7 +Downloaded DOI YPK9-TXH4 +Downloaded DOI QJNR-MSJB +Downloaded DOI 4MGD-8KUZ +Downloaded DOI RWKE-SKS7 +Downloaded DOI P3PG-5KZG +Downloaded DOI 5JKX-UUKQ +No data found, error 404 +Downloaded DOI 5CWS-C3RB +Downloaded DOI D24E-UZBM +Downloaded DOI D4A9-YNS2 +Downloaded DOI SF4P-FGYR +Downloaded DOI QZSV-CVG6 +Downloaded DOI ENAT-Z6AF +Downloaded DOI FGHV-4FQT +No data found, error 404 +Downloaded DOI V7CS-4P3X +Downloaded DOI ZQ96-X5NF +Downloaded DOI 5NNX-QEGK +Downloaded DOI YGK2-APAB +No data found, error 404 +Downloaded DOI NZAW-GQFB +Downloaded DOI GWYN-4YVK +Downloaded DOI ANZB-WZKA +Downloaded DOI 2MDG-CD6Z +Downloaded DOI AYCF-T2XC +No data found, error 404 +Downloaded DOI 5YP7-M7PS +Downloaded DOI 2UCW-G9R8 +Downloaded DOI VWDU-26SD +Downloaded DOI B4GM-KS4J +No data found, error 404 +Downloaded DOI AVCT-FPNE +Downloaded DOI 89FJ-JH3V +Downloaded DOI 4CAC-MX7R +Downloaded DOI WZSZ-HUW8 +Downloaded DOI BJXY-KHBV +Downloaded DOI 734H-ZJ4D +Downloaded DOI JZFV-3CU7 +Downloaded DOI WHHC-DU6Q +Downloaded DOI JCWT-PVKE +Downloaded DOI 3E69-ZZ95 +Downloaded DOI 8BBM-ABAH +No data found, error 404 +Downloaded DOI M4VY-SB34 +Downloaded DOI X3Q8-GSZX +Downloaded DOI FJW7-SX3U +Downloaded DOI CHCY-6KPC +Downloaded DOI SSCP-BTNG +Downloaded DOI EJ92-TQJH +Downloaded DOI RP9S-9PKU +Downloaded DOI M24R-JBPU +Downloaded DOI NC26-ZPD9 +Downloaded DOI YUAT-WF9B +Downloaded DOI 5QV3-GM7F +Downloaded DOI BRQ2-RS78 +Downloaded DOI XKWD-GZ6Z +Downloaded DOI FD6W-CBM2 +No data found, error 404 +No data found, error 404 +Downloaded DOI 8F75-HP4E +Downloaded DOI 2J7F-VNK8 +Downloaded DOI FMQT-SRQR +Downloaded DOI XMGH-9QKD +Downloaded DOI AJK2-RCTU +Downloaded DOI BJMQ-ZZYA +Downloaded DOI XN7W-5PG2 +No data found, error 404 +No data found, error 404 +Downloaded DOI WB3P-DWWK +Downloaded DOI 46EZ-89UF +Downloaded DOI HPGJ-7J9D +Downloaded DOI 5JX8-2JC2 +Downloaded DOI SBTC-3QM2 +Downloaded DOI 3USC-HZYH +Downloaded DOI GHCT-8YWF +Downloaded DOI J7ZY-X6GJ +No data found, error 404 +Downloaded DOI 4JAX-24NE +Downloaded DOI VA36-JMX8 +Downloaded DOI EAAA-DKCJ +Downloaded DOI T8P4-HZZK +No data found, error 404 +Downloaded DOI RNNW-3JDR +Downloaded DOI FWN6-36BS +Downloaded DOI DBNM-6KNZ +Downloaded DOI Q9NE-M4KG +Downloaded DOI UK3P-4673 +No data found, error 404 +No data found, error 404 +Downloaded DOI Q6A3-ZEN7 +Downloaded DOI SVSH-TQ3B +Downloaded DOI 4R2Y-ANBE +Downloaded DOI E5JB-H7UV +Downloaded DOI QRUZ-AW9N +Downloaded DOI ZJCB-S23H +Downloaded DOI TAER-YH7N +Downloaded DOI X8JP-PAV8 +Downloaded DOI 8ENT-CX4E +Downloaded DOI DXHJ-Y85R +Downloaded DOI NHST-WD79 +Downloaded DOI 4558-KTHE +Downloaded DOI E5DT-YSFY +Downloaded DOI V6AH-BNJM +Downloaded DOI TNMS-9RC5 +Downloaded DOI A8RA-9T62 +Downloaded DOI 3MB8-ZH79 +Downloaded DOI 5C65-84C8 +Downloaded DOI PUUP-X2KA +Downloaded DOI S39F-P8VE +Downloaded DOI 694N-BUGW +Downloaded DOI YH5H-7DSX +Downloaded DOI K8JZ-R5K5 +Downloaded DOI B3V9-V2QF +Downloaded DOI 5KZS-WTUY +Downloaded DOI 8ZCV-MPAR +Downloaded DOI DHGS-A3UP +Downloaded DOI NP2J-RNH6 +Downloaded DOI M8R6-UQNR +No data found, error 404 +Downloaded DOI QSTW-PC2X +No data found, error 404 +Downloaded DOI 5T9T-HGF9 +Downloaded DOI 6UXG-TWU2 +Downloaded DOI 3S66-8N4W +Downloaded DOI F4AV-R2Y3 +Downloaded DOI MDKF-HVXD +No data found, error 404 +Downloaded DOI 7EHT-X4HR +Downloaded DOI E7VD-WTZY +Downloaded DOI 8NJP-3NBP +Downloaded DOI V3FC-C472 +Downloaded DOI AVF6-MKHB +Downloaded DOI Y479-BJA4 +Downloaded DOI ER99-XFXH +Downloaded DOI 5TZX-7VJB +Downloaded DOI SYDS-T8EW +Downloaded DOI JYEY-VCAM +Downloaded DOI DH3D-XBBZ +Downloaded DOI HU2U-QPVT +Downloaded DOI 3JDW-Q893 +Downloaded DOI 3ZCJ-5XRC +Downloaded DOI EFNW-88K8 +Downloaded DOI FV6K-AZRM +Downloaded DOI MNCP-5QRJ +Downloaded DOI RJ4F-Z7UV +Downloaded DOI 3BZY-WEC3 +Downloaded DOI 6355-B8EW +Downloaded DOI V52Q-5P4A +Downloaded DOI WSYB-Z295 +Downloaded DOI UN4Z-2S5Y +Downloaded DOI C9RK-PCXW +Downloaded DOI CBCK-VZ2X +Downloaded DOI 8CF6-KKRW +No data found, error 404 +No data found, error 404 +Downloaded DOI 9P43-UJC2 +Downloaded DOI NQPJ-4QMJ +Downloaded DOI B242-H84H +Downloaded DOI AM6X-7WF3 +No data found, error 404 +Downloaded DOI N6JH-FAV2 +Downloaded DOI XBKU-EGYF +Downloaded DOI 8YHT-Q949 +Downloaded DOI V9VS-7ZF4 +Downloaded DOI A75P-TRE4 +No data found, error 404 +Downloaded DOI CDQD-W3DG +Downloaded DOI HNK2-W2VM +Downloaded DOI SHVZ-9DV4 +Downloaded DOI K5HK-76FY +Downloaded DOI T87G-9MTN +Downloaded DOI GW78-EAMK +Downloaded DOI WSX6-ZP5E +Downloaded DOI BAG9-5884 +Downloaded DOI HGDN-JWUZ +Downloaded DOI VDBX-GMKP +Downloaded DOI 9VRC-D5RT +Downloaded DOI 442U-26MP +Downloaded DOI 34D5-7MG9 +Downloaded DOI 3AHJ-5Q32 +Downloaded DOI R5ET-KA45 +No data found, error 404 +Downloaded DOI 9XQA-T6M6 +Downloaded DOI TTXC-R8QY +Downloaded DOI 2T2J-BR6F +Downloaded DOI XNSM-EAAP +Downloaded DOI GUUY-8DND +Downloaded DOI THZD-DTSQ +Downloaded DOI PB9Z-TYMU +Downloaded DOI 5XNF-HBGH +Downloaded DOI QAN8-2EQH +Downloaded DOI 8JJ9-XJN2 +Downloaded DOI RZKJ-TPP4 +Downloaded DOI VNXG-HX59 +Downloaded DOI U9EN-UF5W +Downloaded DOI 93U8-2V3A +Downloaded DOI YB6H-H2A6 +Downloaded DOI K2P8-Y96J +Downloaded DOI 3UQN-E7WR +Downloaded DOI BZF3-SQUB +Downloaded DOI ESZE-KBW3 +Downloaded DOI BC3W-ANAA +Downloaded DOI 9DMX-V4RC +Downloaded DOI NBP7-NWTN +Downloaded DOI J35Q-QFXM +Downloaded DOI BRNP-2SFN +Downloaded DOI E4EY-J55Q +Downloaded DOI 7XCN-BPKU +Downloaded DOI 492E-5JQ9 +Downloaded DOI A9V2-AFPY +Downloaded DOI VRMP-3UCA +Downloaded DOI VSH7-U2WR +Downloaded DOI 7EQ9-G9UN +Downloaded DOI HCJP-QM6G +Downloaded DOI JZVR-2GZR +Downloaded DOI C3E5-UGRZ +Downloaded DOI 99YT-22SX +Downloaded DOI NU57-6UDJ +No data found, error 404 +No data found, error 404 +Downloaded DOI 5X8D-2JUF +Downloaded DOI 6UPW-HC9H +Downloaded DOI V3MN-G5X2 +Downloaded DOI 5S6K-H39X +Downloaded DOI HBD5-WR99 +Downloaded DOI N697-NBY6 +Downloaded DOI JKQH-ZUSF +Downloaded DOI SRE6-BF28 +Downloaded DOI 8VZ6-TZJA +Downloaded DOI ERJW-SCNZ +Downloaded DOI NP7U-DYX8 +Downloaded DOI PUHN-F4QQ +Downloaded DOI KMRF-476Y +Downloaded DOI QSKE-AJKZ +Downloaded DOI PXCQ-Z4A6 +Downloaded DOI RMQR-TQNQ +Downloaded DOI PZKN-RW6E +No data found, error 404 +Downloaded DOI 88SP-XV62 +No data found, error 404 +Downloaded DOI NASN-PAXB +Downloaded DOI USBT-9CSM +Downloaded DOI U7ZR-GUU4 +Downloaded DOI N3UX-J8T5 +Downloaded DOI 5TNT-KK2K +Downloaded DOI QZ9U-DJQU +No data found, error 404 +Downloaded DOI JMVU-WSUF +Downloaded DOI 26SN-S6TW +Downloaded DOI CMQB-83B8 +No data found, error 404 +Downloaded DOI Q9QJ-KQCH +Downloaded DOI 4MES-VPNU +Downloaded DOI 242K-MFK9 +Downloaded DOI B3NA-BYQK +Downloaded DOI WNUS-J42G +Downloaded DOI M8GM-M6KW +Downloaded DOI KN5C-ZRQ9 +Downloaded DOI SG6B-DRBW +Downloaded DOI Q7XZ-3VDW +Downloaded DOI XQGA-KB4P +Downloaded DOI QB4A-UUM8 +Downloaded DOI 2F7D-C2B5 +Downloaded DOI VCSK-6NFM +Downloaded DOI AWV7-7H2U +Downloaded DOI XH5G-A65K +Downloaded DOI HXB2-NKND +Downloaded DOI AGY9-QWTB +Downloaded DOI 9X2T-Z4ZE +No data found, error 404 +Downloaded DOI 7PWJ-KQZ4 +Downloaded DOI 3PAH-32ZQ +Downloaded DOI XW6X-XWTP +No data found, error 404 +Downloaded DOI S5FW-HDWH +No data found, error 404 +Downloaded DOI PX66-B6FZ +Downloaded DOI MEMK-SKS5 +Downloaded DOI VWS2-NKBS +Downloaded DOI 29BM-J3X9 +Downloaded DOI EJAQ-ANQ2 +Downloaded DOI KSFZ-9VMF +No data found, error 404 +Downloaded DOI UHF6-AUVM +Downloaded DOI NEKT-X8TX +Downloaded DOI CHVH-SKVB +Downloaded DOI JKSX-GHSA +Downloaded DOI WFA2-PY83 +Downloaded DOI WPKH-M47S +Downloaded DOI 5M5W-6P3P +Downloaded DOI 636C-AWSY +Downloaded DOI 4EXZ-FGA4 +Downloaded DOI NH29-CVG3 +Downloaded DOI EYE4-ZMHZ +Downloaded DOI C525-R4HB +Downloaded DOI GC47-FCBP +Downloaded DOI AN3A-YDXU +Downloaded DOI N9KA-27DG +Downloaded DOI D9GS-PJPK +Downloaded DOI JADJ-SBTM +Downloaded DOI CZ2X-RK2B +Downloaded DOI BGEE-475V +Downloaded DOI PWA9-G2ZN +Downloaded DOI S8FT-QD2U +Downloaded DOI PDX7-HFKE +Downloaded DOI DF77-E8AH +Downloaded DOI BKKR-5KYB +Downloaded DOI SSTJ-79VZ +Downloaded DOI XBWC-EE6B +Downloaded DOI QYJQ-NVEK +Downloaded DOI 7XKS-AZZT +Downloaded DOI RYMH-UYSX +Downloaded DOI U8ZE-KMWQ +Downloaded DOI 32EA-YJUH +Downloaded DOI QEB8-RH4Y +Downloaded DOI KMSZ-DN7B +Downloaded DOI G2BE-2N9Z +Downloaded DOI WV9S-FVKC +Downloaded DOI R5VF-E8JM +Downloaded DOI 7HF7-W49U +Downloaded DOI F3VA-PPE5 +Downloaded DOI H29W-UPTV +Downloaded DOI 64PQ-X9F2 +Downloaded DOI 3HSU-28MU +Downloaded DOI J2AH-4GH6 +Downloaded DOI 8NDX-V6DQ +Downloaded DOI DH9Z-WA5Q +Downloaded DOI BQP8-NF9P +Downloaded DOI TAJF-5AKS +Downloaded DOI 936Y-8UTP +No data found, error 404 +Downloaded DOI 8GAB-S2KZ +Downloaded DOI 76VZ-5UZT +Downloaded DOI 8NT9-7JRX +Downloaded DOI VZCN-XX2J +Downloaded DOI YVSR-5ZCP +Downloaded DOI 4635-CYPK +Downloaded DOI 488A-GSAK +No data found, error 404 +Downloaded DOI UVES-VF34 +Downloaded DOI MU76-RTUE +Downloaded DOI 4B7T-98FP +Downloaded DOI W9EA-VVCE +Downloaded DOI M3ZY-JCJG +Downloaded DOI UWNF-V329 +Downloaded DOI MD9G-EK4C +Downloaded DOI XQYA-C7ZF +Downloaded DOI EDEM-F38B +No data found, error 404 +Downloaded DOI SWSC-K78B +Downloaded DOI GMPP-52B7 +Downloaded DOI WBA2-WUV6 +Downloaded DOI CDDW-YGVH +Downloaded DOI C6GF-9QUH +Downloaded DOI 4NN7-GZHV +Downloaded DOI Q5NN-G2FB +Downloaded DOI WNRW-U8AQ +Downloaded DOI CGNX-5WSG +Downloaded DOI FT7U-UA85 +Downloaded DOI SAW4-JCBD +Downloaded DOI QTHT-P55V +Downloaded DOI V58E-ABSD +Downloaded DOI R9PQ-ZUP5 +Downloaded DOI BBZ7-4TCC +Downloaded DOI RNQS-RMVS +Downloaded DOI ZMWC-GZHE +Downloaded DOI 9BCX-Y235 +Downloaded DOI HGFA-UZMC +Downloaded DOI 48CB-976Q +Downloaded DOI NVNY-WWKM +Downloaded DOI UURG-6Q9Q +Downloaded DOI 78U2-X8NP +Downloaded DOI PCG3-CAX7 +Downloaded DOI 7DR3-MVGM +Downloaded DOI VJTM-995X +Downloaded DOI VJBV-WQNR +Downloaded DOI MG3V-E64C +Downloaded DOI NR6W-RHG5 +Downloaded DOI 4M34-873S +Downloaded DOI EV7B-656H +Downloaded DOI YM5G-SA4R +No data found, error 404 +No data found, error 404 +Downloaded DOI 6X87-F9BX +Downloaded DOI YGBT-K889 +Downloaded DOI X8GS-HZP8 +Downloaded DOI ZVT2-6SUF +Downloaded DOI HZX7-WE7Z +Downloaded DOI PW2Q-WTZG +Downloaded DOI XXT8-P5DA +Downloaded DOI Q9MQ-2V9R +Downloaded DOI T8EZ-STE5 +Downloaded DOI FN9W-Z4Z9 +Downloaded DOI 8U6J-QTKV +Downloaded DOI ZQAP-PAH5 +Downloaded DOI 24E4-BBHF +Downloaded DOI DXJQ-QYVY +Downloaded DOI G33B-FQUR +Downloaded DOI 4ESW-9CTK +Downloaded DOI QCBD-CAZ4 +Downloaded DOI 3B8N-UH7D +Downloaded DOI Y73U-4GZA +Downloaded DOI 75WG-WV57 +Downloaded DOI WH7C-GASF +Downloaded DOI XPBU-9GGM +Downloaded DOI HGRZ-B8ZB +Downloaded DOI ACCB-RJQD +Downloaded DOI BNJD-GK6Y +Downloaded DOI EXTU-R3SV +Downloaded DOI VZZS-X7ER +Downloaded DOI 4EE2-8ERQ +Downloaded DOI DSEZ-UKT5 +No data found, error 404 +Downloaded DOI SFVA-SAHN +Downloaded DOI RE7D-CVXV +Downloaded DOI J9GD-EDHP +Downloaded DOI KGGA-X9D4 +Downloaded DOI 3R7B-CBZD +Downloaded DOI AFHQ-JFE8 +No data found, error 404 +Downloaded DOI 4A7J-ZGFB +Downloaded DOI ZMZZ-H2CE +Downloaded DOI GE3Q-JQJS +Downloaded DOI K3DC-QF4Z +Downloaded DOI G5KY-F49Y +Downloaded DOI Q7AD-BYF2 +Downloaded DOI TZEH-A7W6 +Downloaded DOI EKZT-W3EQ +Downloaded DOI 9MMX-8UA6 +Downloaded DOI D5RE-7Q7W +Downloaded DOI 7WJ7-VYVA +Downloaded DOI TRBF-WEHZ +Downloaded DOI EUG8-XXJZ +Downloaded DOI 5N8W-ZTCD +Downloaded DOI 26R8-FZBB +Downloaded DOI 32T4-XPSM +No data found, error 404 +Downloaded DOI 6W38-8H88 +Downloaded DOI DEGP-NCEW +Downloaded DOI W22D-RG22 +No data found, error 404 +Downloaded DOI UQKZ-3R8P +Downloaded DOI H526-R4NQ +No data found, error 404 +Downloaded DOI 2NB5-UCKS +Downloaded DOI ZBSH-NSUQ +Downloaded DOI JKWR-CS2R +Downloaded DOI F8CV-YA4N +Downloaded DOI FGRV-P656 +Downloaded DOI QUG5-5JFX +No data found, error 404 +Downloaded DOI SQ53-39PC +Downloaded DOI U2RE-CN4X +Downloaded DOI 3GSW-PZ6F +Downloaded DOI 7QZN-KZ6M +Downloaded DOI FECA-VU2Y +Downloaded DOI CDUZ-Q3EA +Downloaded DOI Q8QC-T2C2 +Downloaded DOI CVZ8-3F2Q +Downloaded DOI F2R5-87SV +Downloaded DOI NUV2-7R6B +Downloaded DOI VPDE-WMGD +Downloaded DOI EPHV-7JCD +Downloaded DOI STHB-CRTP +Downloaded DOI CNMU-T74H +No data found, error 404 +Downloaded DOI JCP7-PW73 +Downloaded DOI A6CG-2FF2 +Downloaded DOI UHB8-TSUY +Downloaded DOI PVH9-CNJ2 +Downloaded DOI T4AN-TJYC +Downloaded DOI U7QF-BP2G +Downloaded DOI QJ9Y-5VB7 +Downloaded DOI 36YN-UP64 +Downloaded DOI 5N45-MNVK +Downloaded DOI UXRM-4W3Q +Downloaded DOI X4YF-H8ES +Downloaded DOI NZVR-7XT6 +Downloaded DOI SKVA-K2P8 +Downloaded DOI 87TC-RM62 +Downloaded DOI DENR-NGV4 +Downloaded DOI 9ND6-25RU +No data found, error 404 +Downloaded DOI CURW-9ABD +Downloaded DOI SUMX-87VZ +Downloaded DOI 7Z6F-G3RR +Downloaded DOI NV8Q-KC62 +Downloaded DOI JSNQ-6B9N +No data found, error 404 +Downloaded DOI MW89-BNHQ +Downloaded DOI G7PS-MFVH +Downloaded DOI TZME-TUQB +Downloaded DOI 3N4A-Z2J8 +Downloaded DOI TG8X-A965 +No data found, error 404 +Downloaded DOI U9MG-44WK +Downloaded DOI 2E3H-V5E7 +Downloaded DOI FKV4-UKBV +Downloaded DOI 87CV-Y845 +Downloaded DOI BR4Q-JFV6 +Downloaded DOI UZTA-DYYD +Downloaded DOI Y83P-77KQ +Downloaded DOI WYUD-SVQH +Downloaded DOI 8CSM-2V6B +Downloaded DOI XDRR-D7AX +Downloaded DOI M4AT-G9TA +Downloaded DOI GUE5-DYUJ +No data found, error 404 +Downloaded DOI JYPK-JXXS +Downloaded DOI 8RFH-9FSF +Downloaded DOI MJDT-NCFU +Downloaded DOI TUVA-W8RZ +No data found, error 404 +Downloaded DOI 948W-PF7B +Downloaded DOI ZFMC-V8V3 +Downloaded DOI J85T-NJVJ +Downloaded DOI GTQC-5MMV +Downloaded DOI 2N77-C57A +Downloaded DOI 767Q-GW2U +Downloaded DOI QKR3-73MZ +Downloaded DOI 8TWF-M4YD +Downloaded DOI QGUP-GR5G +Downloaded DOI 85HX-D2WX +Downloaded DOI 74YB-GWX6 +Downloaded DOI NSYB-K88Z +Downloaded DOI ETNX-F5WN +Downloaded DOI YGVK-9CPN +Downloaded DOI 9DWA-H54T +Downloaded DOI YMN8-YYAW +Downloaded DOI KJMR-5GDN +Downloaded DOI 5WMT-6M4K +Downloaded DOI AE4Q-XBV6 +Downloaded DOI MJHN-GEY2 +Downloaded DOI BDV5-WN6C +No data found, error 404 +Downloaded DOI STGQ-4633 +Downloaded DOI 9493-4488 +Downloaded DOI A49T-99XU +Downloaded DOI 6HWX-YDHP +Downloaded DOI G6VR-QECZ +Downloaded DOI 8XSN-ZBKW +Downloaded DOI EC5T-ZMHZ +No data found, error 404 +Downloaded DOI Q7HM-JGNW +Downloaded DOI K556-PZ73 +Downloaded DOI 2MDM-GFRA +Downloaded DOI TBZ9-G3C7 +Downloaded DOI 4QBN-P5DJ +Downloaded DOI SHWM-JUH9 +Downloaded DOI 8J8H-M8YH +Downloaded DOI G7AK-3Z7Y +Downloaded DOI XSFA-DSNJ +Downloaded DOI PGED-RUJ5 +Downloaded DOI F2E6-UJ8S +Downloaded DOI SQUD-XV35 +Downloaded DOI FPPC-FW55 +Downloaded DOI WKEU-Q4BH +Downloaded DOI MMV6-UDKZ +Downloaded DOI 39BY-2FZ3 +Downloaded DOI MNQH-3BFW +Downloaded DOI JVZZ-4GFS +No data found, error 404 +Downloaded DOI 5ZGV-UQF9 +Downloaded DOI 7FMP-7DUZ +Downloaded DOI MAPB-HWDC +Downloaded DOI H4YA-RV4Q +Downloaded DOI EAME-ENW2 +Downloaded DOI MSUT-M3J6 +Downloaded DOI 7VH6-RMDD +Downloaded DOI 52MF-5HR8 +Downloaded DOI NW79-6NKM +Downloaded DOI 537G-X46Y +Downloaded DOI D9GV-FWVW +Downloaded DOI 6KNM-W7AS +Downloaded DOI 99TQ-XRC4 +Downloaded DOI TV33-SEU6 +Downloaded DOI A9RV-3R7H +Downloaded DOI GQVR-RE8J +Downloaded DOI VCFD-UFDR +Downloaded DOI RWFB-YVJM +Downloaded DOI TP8M-UBHU +Downloaded DOI RZZ3-HMQM +Downloaded DOI JWZK-UNCR +Downloaded DOI ZVS4-6JJN +Downloaded DOI 7USK-FXY3 +Downloaded DOI V5SC-H5M8 +Downloaded DOI U47W-X3RH +Downloaded DOI GA3X-3UYD +Downloaded DOI H7A5-642V +Downloaded DOI 5DSZ-8BWS +Downloaded DOI RMGD-GD5M +Downloaded DOI 8ZQR-URKE +Downloaded DOI 2JXR-9P4U +Downloaded DOI QXZV-XFCD +Downloaded DOI G6DV-8UBN +Downloaded DOI 8GWZ-FEDA +Downloaded DOI 5M3Q-CDJU +Downloaded DOI FJ4J-E7UA +Downloaded DOI T3WZ-KVNC +Downloaded DOI ASG8-GJP7 +Downloaded DOI 2F64-XU4Z +Downloaded DOI TKUZ-ZVCY +Downloaded DOI DF3D-G38G +Downloaded DOI 97PE-Y4K8 +Downloaded DOI 7MWV-6JED +Downloaded DOI 67QZ-JJ6E +Downloaded DOI H5XZ-WGE8 +Downloaded DOI VT7X-TQC7 +No data found, error 404 +Downloaded DOI JCZE-AF7B +Downloaded DOI GRQT-9GFM +Downloaded DOI RN5C-2D3R +Downloaded DOI CXDA-FEPE +Downloaded DOI ERQE-7GKF +Downloaded DOI KQQ8-6Z84 +Downloaded DOI QY6W-S6JW +No data found, error 404 +Downloaded DOI MMX3-GPF6 +Downloaded DOI MUUW-RZJK +Downloaded DOI YFHV-SWH3 +Downloaded DOI DJUQ-WYHX +Downloaded DOI YMYT-6R28 +Downloaded DOI 9TP8-FQHR +Downloaded DOI 52SX-FYMD +Downloaded DOI FVU4-NSRH +Downloaded DOI FC32-FUFQ +Downloaded DOI ZRFF-ST72 +Downloaded DOI HE5N-T8VT +Downloaded DOI 3VUB-RGT4 +Downloaded DOI XJND-6G5R +Downloaded DOI ZP8S-TPCD +No data found, error 404 +Downloaded DOI 29UV-DJGD +Downloaded DOI MYZQ-ECTJ +Downloaded DOI K7H9-6YVZ +Downloaded DOI 25KH-XBSU +Downloaded DOI 3SCM-TF5G +Downloaded DOI DRAP-583E +No data found, error 404 +Downloaded DOI JZWW-QSZT +Downloaded DOI VWVF-S987 +Downloaded DOI A48U-CT9Y +Downloaded DOI JN6E-AY3S +Downloaded DOI CD6S-PXBE +Downloaded DOI PNMC-KXQZ +Downloaded DOI JRNH-U3WH +Downloaded DOI Q2JT-KGQ5 +Downloaded DOI V9X9-HHVW +No data found, error 404 +Downloaded DOI 9E9S-SMQ2 +Downloaded DOI HBDU-SCYT +Downloaded DOI APDP-MYQK +No data found, error 404 +Downloaded DOI GPCZ-FMHA +Downloaded DOI SDDJ-VYFT +Downloaded DOI JNFU-X6R8 +Downloaded DOI 3J3P-VJDB +Downloaded DOI MYGR-N2UE +Downloaded DOI AGW5-RAKU +Downloaded DOI 5DJ2-8PD7 +Downloaded DOI 979C-BUAW +Downloaded DOI DZ5P-2C9H +Downloaded DOI ZM2T-9CQX +Downloaded DOI 7RG6-4WC6 +No data found, error 404 +Downloaded DOI Q8RG-EAN5 +Downloaded DOI 9RSJ-8NTG +Downloaded DOI MP4V-AFDZ +Downloaded DOI 9AWX-4KMW +Downloaded DOI UWBA-YNGR +Downloaded DOI TFKP-P6BV +Downloaded DOI V29Z-875S +Downloaded DOI 4K3X-MQ9B +Downloaded DOI 7WWW-WH4P +Downloaded DOI 7DBJ-UHNY +Downloaded DOI MREY-C5ZH +Downloaded DOI 4JPM-85TA +Downloaded DOI 9WST-GK22 +Downloaded DOI K6ZP-W4ZW +Downloaded DOI X4G6-E2BN +Downloaded DOI 32EA-CSUK +Downloaded DOI SRZ6-6V5Z +Downloaded DOI KK87-BU5Q +Downloaded DOI B2EE-EQU4 +Downloaded DOI W67T-KUF6 +Downloaded DOI RH53-N7UA +Downloaded DOI DHQ7-Y7WA +Downloaded DOI 7EJN-Z89G +Downloaded DOI E93F-CBXG +Downloaded DOI 6TDP-VY8M +Downloaded DOI WS82-JRGE +Downloaded DOI XBZV-ACCU +Downloaded DOI 9FHX-WEMB +Downloaded DOI AC6D-N56G +Downloaded DOI 2CR6-K47Z +Downloaded DOI DGVZ-RFEU +Downloaded DOI 4FR5-V8KB +Downloaded DOI NNG7-4FC3 +Downloaded DOI 7VMC-8BKV +Downloaded DOI D6VC-7R83 +Downloaded DOI 92G2-8NZQ +Downloaded DOI B2BQ-KZZ3 +Downloaded DOI 8642-6S66 +No data found, error 404 +Downloaded DOI JNFC-M8C9 +Downloaded DOI S5JM-T6JZ +Downloaded DOI XBPU-W2YP +No data found, error 404 +Downloaded DOI T3G6-M3U8 +Downloaded DOI GXPA-GPRQ +Downloaded DOI KQPX-CPJR +Downloaded DOI X65T-84RU +Downloaded DOI R63H-MR4D +Downloaded DOI MX27-U8V2 +Downloaded DOI 4NMA-MGQW +Downloaded DOI Z4QA-TRSA +Downloaded DOI JFG2-2DDP +Downloaded DOI S9HY-EBBA +Downloaded DOI 68RF-56GN +Downloaded DOI DDZW-WKR9 +Downloaded DOI TZUQ-QRS4 +Downloaded DOI W5ZH-YXNV +No data found, error 404 +Downloaded DOI MR44-NBK2 +Downloaded DOI PYH5-T6GV +Downloaded DOI JTT2-9AG4 +Downloaded DOI WM8C-NBQY +Downloaded DOI ZWAT-QQQK +Downloaded DOI XJDK-D9UB +Downloaded DOI PGME-TEVJ +Downloaded DOI HHC2-7MTY +Downloaded DOI 4PWP-F5J3 +Downloaded DOI 7935-KP2P +Downloaded DOI TGSB-F4T6 +Downloaded DOI UWDD-RJ58 +Downloaded DOI UNXH-ESBX +Downloaded DOI PF33-GHDB +No data found, error 404 +Downloaded DOI DE9P-J6P9 +Downloaded DOI 9WR4-QSVH +Downloaded DOI UKK3-DB3D +Downloaded DOI P2UT-CT8N +Downloaded DOI DEXC-AS2W +Downloaded DOI KNE2-3U8F +Downloaded DOI 2MBX-H5WE +Downloaded DOI 8AJ9-35XE +Downloaded DOI 3R7P-V3NU +Downloaded DOI 8KB5-453U +Downloaded DOI 3MY2-T72Z +Downloaded DOI JKYD-CXQW +Downloaded DOI K8R9-H95T +No data found, error 404 +No data found, error 404 +Downloaded DOI NJFT-SCTE +Downloaded DOI 3QCP-5BHT +Downloaded DOI 22J9-VHEW +Downloaded DOI 7UJQ-R6V4 +Downloaded DOI KEHA-7ZQR +Downloaded DOI GVQ2-FXHA +Downloaded DOI RNHJ-BHW8 +Downloaded DOI SY5E-H8D9 +Downloaded DOI 9Y73-4DN3 +Downloaded DOI ZNNT-5VKX +Downloaded DOI BQYJ-V759 +Downloaded DOI 7BZ4-Q8M3 +Downloaded DOI MKUX-KZSY +Downloaded DOI GR72-8SKR +Downloaded DOI HQ2K-KXGW +Downloaded DOI DX9U-877K +Downloaded DOI CSXG-B8PC +Downloaded DOI SARP-PAWG +Downloaded DOI XZKE-NWVM +Downloaded DOI PF5C-DVNG +Downloaded DOI KCQ3-GK7K +Downloaded DOI MT6F-VBHH +Downloaded DOI JNU7-8KYF +No data found, error 404 +Downloaded DOI 4RBQ-H7S9 +Downloaded DOI UTZD-NUGP +Downloaded DOI Y447-8HYA +Downloaded DOI XPGW-VKP3 +No data found, error 404 +Downloaded DOI N4CM-ZGGP +No data found, error 404 +Downloaded DOI DAZY-NEMA +No data found, error 404 +No data found, error 404 +Downloaded DOI PSGM-83P2 +Downloaded DOI 7T3A-ACM5 +Downloaded DOI FERN-VEPT +Downloaded DOI FP7T-HUYQ +Downloaded DOI 6WRQ-NUTB +No data found, error 404 +Downloaded DOI 4T48-BQGU +Downloaded DOI 8DEH-JEF8 +Downloaded DOI 2CB5-M8WM +Downloaded DOI PTYP-CEPZ +Downloaded DOI RFB4-4MGR +Downloaded DOI 3KG3-SHYD +Downloaded DOI ECJ3-VQZU +Downloaded DOI TATF-JSJV +Downloaded DOI CWDJ-VNK4 +Downloaded DOI FR7T-TX9S +Downloaded DOI SSG9-2KVM +Downloaded DOI ME9D-GE9W +Downloaded DOI ZXZ9-XEXB +Downloaded DOI NZZ7-HEQB +No data found, error 404 +Downloaded DOI K55A-Z9P2 +Downloaded DOI TETH-VK6T +No data found, error 404 +Downloaded DOI FHDN-7VE6 +Downloaded DOI NCF2-252B +No data found, error 404 +Downloaded DOI 34E9-9JKN +Downloaded DOI XU8G-ZUCM +Downloaded DOI VX7N-QSVB +Downloaded DOI 7TJH-KAWP +Downloaded DOI QTP9-3XY2 +Downloaded DOI 4QQ8-HD52 +Downloaded DOI F3N3-4DZC +Downloaded DOI ZJFH-9F5Z +Downloaded DOI 7G38-69QN +Downloaded DOI AQU7-FQDE +Downloaded DOI ZKQU-Y4FA +No data found, error 404 +No data found, error 404 +Downloaded DOI AY8T-3ZZH +Downloaded DOI GEKS-VMYX +Downloaded DOI 4WRW-FJ2Z +Downloaded DOI 9C64-58KS +Downloaded DOI ZUP5-ATGD +Downloaded DOI K22R-NWZW +No data found, error 404 +No data found, error 404 +Downloaded DOI EAMS-6TEU +Downloaded DOI CRDQ-P5E7 +Downloaded DOI 5E9Q-DBND +Downloaded DOI YSDB-CNG2 +Downloaded DOI KED2-AWNK +Downloaded DOI SC76-NFZ5 +Downloaded DOI C8WN-U23G +Downloaded DOI 735R-QWMD +Downloaded DOI BRUT-JB64 +Downloaded DOI UEPQ-UPET +Downloaded DOI ERSV-6HP2 +Downloaded DOI UGKM-5CYG +Downloaded DOI 9ZPG-QX9S +Downloaded DOI HHXZ-DJD2 +Downloaded DOI 9QCV-9CKV +Downloaded DOI ZHDR-2QTR +Downloaded DOI ZUAD-SF5U +Downloaded DOI HWCX-AC4F +Downloaded DOI AZK8-AQ2M +Downloaded DOI CEEH-7AT3 +Downloaded DOI X34N-9N43 +Downloaded DOI 2Q69-MZ5F +Downloaded DOI XQDN-693Z +No data found, error 404 +Downloaded DOI EQHF-8G2R +Downloaded DOI MEEJ-Q2S5 +Downloaded DOI MGAB-75XF +Downloaded DOI DPGJ-BRTH +Downloaded DOI M2UU-VEVP +Downloaded DOI GHMQ-NUSB +No data found, error 404 +Downloaded DOI 4F3P-WBRS +Downloaded DOI PBCH-35VG +Downloaded DOI 846Z-WQYA +Downloaded DOI PKRU-ZF3Q +Downloaded DOI SM8X-5SVK +Downloaded DOI 466W-DX8G +No data found, error 404 +Downloaded DOI R2KG-F9WM +Downloaded DOI 4ZC3-SPJM +Downloaded DOI JYYP-PUJT +Downloaded DOI 38C5-TTU6 +Downloaded DOI 5WUF-WVEK +Downloaded DOI UDFB-D652 +Downloaded DOI MEE8-T673 +Downloaded DOI 4FPN-NUWR +Downloaded DOI C2YM-5EV5 +Downloaded DOI R37S-NWZE +Downloaded DOI 7ZKR-MY59 +Downloaded DOI G6RY-XGK7 +Downloaded DOI TKYZ-V3V3 +Downloaded DOI NTFD-845X +Downloaded DOI 5XZH-8NAJ +No data found, error 404 +Downloaded DOI E8C4-AD5X +Downloaded DOI Y8XR-V49U +Downloaded DOI N5XF-FXMT +Downloaded DOI 3MAQ-X9BY +Downloaded DOI Q7S6-9Z5J +Downloaded DOI 9BYT-UATR +Downloaded DOI 5ESW-A88P +Downloaded DOI ZQSR-KMMS +Downloaded DOI 8FAT-6BHJ +Downloaded DOI HHMJ-UFBF +Downloaded DOI 7BDR-EXTE +Downloaded DOI 5G9V-W9H9 +Downloaded DOI K87G-ET2D +Downloaded DOI EJX2-CAUS +Downloaded DOI MCUQ-KRGJ +Downloaded DOI H4QE-PXWS +Downloaded DOI 6W63-Z7HX +Downloaded DOI HAMC-5CUQ +Downloaded DOI BTFY-4Y8X +Downloaded DOI WTP4-U2MF +Downloaded DOI VSRG-UFHQ +Downloaded DOI DYC3-N58Q +Downloaded DOI UFB6-ZUDH +Downloaded DOI SS8J-XGJH +Downloaded DOI AQ46-WC6R +Downloaded DOI WRZY-C8J8 +Downloaded DOI 7CXQ-8N25 +Downloaded DOI YTPV-NTES +Downloaded DOI WUUK-KEWC +Downloaded DOI 4SUD-EHJJ +Downloaded DOI DETN-32QV +Downloaded DOI T8HZ-JT6R +Downloaded DOI WGCT-ZDGD +Downloaded DOI P34A-QPRX +Downloaded DOI XW87-PBSG +Downloaded DOI KJTB-S7CB +Downloaded DOI RPTN-JYJ5 +Downloaded DOI 3NU9-PWBX +Downloaded DOI BKNE-9YG8 +Downloaded DOI N252-NQDR +No data found, error 404 +Downloaded DOI W93W-TSX5 +Downloaded DOI W6T5-U2TX +Downloaded DOI D3BV-7FC2 +Downloaded DOI 2W4N-9YWF +Downloaded DOI 3RN9-7HHK +Downloaded DOI BM9J-QCCT +Downloaded DOI 2T5Z-A98G +Downloaded DOI RD47-KZSJ +Downloaded DOI PMNY-CBPP +No data found, error 404 +Downloaded DOI 83Z2-EUAC +No data found, error 404 +Downloaded DOI JA9S-XC6S +No data found, error 404 +Downloaded DOI QVBN-NPPJ +Downloaded DOI Z4Y6-HNQH +Downloaded DOI YBD7-NQJU +Downloaded DOI C6HU-32PB +Downloaded DOI GXT8-4QYK +Downloaded DOI YV3Q-GQJJ +Downloaded DOI RSYM-KSS6 +Downloaded DOI F82Y-8TAM +Downloaded DOI GXQN-PT4R +Downloaded DOI 88G3-639T +Downloaded DOI TCNG-9QPN +No data found, error 404 +Downloaded DOI HCSX-32CA +Downloaded DOI X6B4-RW36 +Downloaded DOI XTGH-5DT4 +Downloaded DOI U3MD-VUVP +Downloaded DOI HEG8-MBBF +Downloaded DOI 25UR-N5VZ +Downloaded DOI 3TX4-UP28 +Downloaded DOI FYXW-2ZNA +Downloaded DOI FFZB-86DG +Downloaded DOI TJNX-ETR4 +Downloaded DOI 4NKZ-YAHK +Downloaded DOI Y98W-8WPW +Downloaded DOI 9JWT-86AU +Downloaded DOI PK85-SKCH +Downloaded DOI F23C-N5X9 +Downloaded DOI F6DF-9P7S +Downloaded DOI G2KW-4ZEZ +Downloaded DOI Z6BJ-AR3N +Downloaded DOI CW2X-U3CW +Downloaded DOI F9HG-W7QZ +Downloaded DOI XVU2-ZS4H +Downloaded DOI N23E-5RMN +Downloaded DOI SRDQ-FEYT +Downloaded DOI WK5T-4MD5 +Downloaded DOI 4A8H-ZAPW +No data found, error 404 +Downloaded DOI 565A-339R +Downloaded DOI 86DK-7TNQ +Downloaded DOI ZVGQ-GGB4 +Downloaded DOI MW4U-XKAH +Downloaded DOI GCA6-TDC9 +Downloaded DOI 5BZP-3PXS +Downloaded DOI Y6Y5-8FYY +Downloaded DOI 68MS-UNCH +Downloaded DOI KXN5-2P47 +Downloaded DOI P4AS-Q2DD +Downloaded DOI C7TC-KH6Q +Downloaded DOI 4HW3-N35B +Downloaded DOI ANAM-ZTHW +Downloaded DOI S6JS-ZCQH +Downloaded DOI YTAA-ASG9 +Downloaded DOI RQKY-DVWV +Downloaded DOI FWTR-H5UJ +Downloaded DOI MH3F-NJ4K +Downloaded DOI 79K2-PMA3 +No data found, error 404 +Downloaded DOI TDJN-ZY2Z +No data found, error 404 +Downloaded DOI 24JD-A44B +Downloaded DOI 7MGW-WQKF +Downloaded DOI F47P-PPHT +Downloaded DOI UTZE-GBG3 +No data found, error 404 +No data found, error 404 +Downloaded DOI APCT-5FFN +Downloaded DOI 7WGK-R4D6 +Downloaded DOI Y5US-JZTG +Downloaded DOI KVDY-MBRE +Downloaded DOI 3SYQ-25N6 +Downloaded DOI KCFR-ZXZR +Downloaded DOI JQPM-A6N8 +Downloaded DOI 5TUC-8AHP +Downloaded DOI UJMW-U5E3 +Downloaded DOI NNE8-WWEB +Downloaded DOI KSPX-2ZVW +No data found, error 404 +Downloaded DOI T85T-XFDB +Downloaded DOI V598-4NMF +Downloaded DOI 9QCE-DZPP +Downloaded DOI BYD6-65FQ +Downloaded DOI TPMY-S68F +Downloaded DOI T9S2-JDF8 +Downloaded DOI N3NZ-W3KS +Downloaded DOI WTUV-G6NZ +No data found, error 404 +Downloaded DOI CA7Q-UQ26 +Downloaded DOI WUFY-HG5G +Downloaded DOI 3ZBP-VCUT +Downloaded DOI JK3K-BJNB +Downloaded DOI RWB7-955R +No data found, error 404 +Downloaded DOI X7DZ-G6K3 +Downloaded DOI 4MVM-X6G6 +Downloaded DOI E5EX-PQVB +Downloaded DOI WQQG-UF66 +Downloaded DOI XENK-CMFU +Downloaded DOI T3UR-HAXZ +Downloaded DOI 7R7D-DDSQ +Downloaded DOI SPHF-9C9V +Downloaded DOI XTYT-8ZF2 +Downloaded DOI 33Q8-GW9Q +Downloaded DOI CQW8-WJ29 +Downloaded DOI 9N65-9B2M +Downloaded DOI CHEK-XE73 +Downloaded DOI 29VC-HH3G +Downloaded DOI AKT8-P7MZ +Downloaded DOI KWXD-KGPQ +Downloaded DOI JKGT-Q736 +Downloaded DOI SQX4-RDNA +Downloaded DOI UWWP-85C3 +Downloaded DOI 45GP-9DYZ +No data found, error 404 +Downloaded DOI U434-USEP +Downloaded DOI EHYU-CRBY +Downloaded DOI Z775-TMQ5 +Downloaded DOI WK3P-W5BY +Downloaded DOI TKCY-YSXN +Downloaded DOI U4DP-9NQ3 +Downloaded DOI ZHY9-UN5T +Downloaded DOI FYAS-3X4J +Downloaded DOI BPCN-4ZP2 +Downloaded DOI BWXM-VSTE +Downloaded DOI RP9A-NA67 +Downloaded DOI 4GVN-WD89 +Downloaded DOI RDZ8-324F +Downloaded DOI B2A5-GHVM +Downloaded DOI FQZF-D7YG +No data found, error 404 +Downloaded DOI WHAB-5ADQ +Downloaded DOI 49NY-3UK7 +Downloaded DOI 26K2-U2G8 +Downloaded DOI 22QC-5YBV +Downloaded DOI 7RDU-MY8P +Downloaded DOI Y3TY-GUHZ +Downloaded DOI 8T8M-7GVU +Downloaded DOI U6HE-M23G +Downloaded DOI DRXC-8XEP +Downloaded DOI 3A8N-EP6B +Downloaded DOI 5XBD-Z9QH +Downloaded DOI BEKW-BSSW +Downloaded DOI T87M-ZNCE +Downloaded DOI 5XZK-D7JT +Downloaded DOI 4TJ9-5AWC +No data found, error 404 +Downloaded DOI W2TA-XEK3 +Downloaded DOI CDT6-A92H +Downloaded DOI 2Q73-77B9 +Downloaded DOI AJ8C-JFPE +Downloaded DOI RUB4-JDBH +Downloaded DOI X7TS-DR73 +Downloaded DOI HFGE-YXUU +Downloaded DOI 5AW4-TBK6 +Downloaded DOI X9DW-FDRS +Downloaded DOI NGRN-2HRQ +Downloaded DOI ZSJV-23FS +Downloaded DOI 6KUQ-NEKY +Downloaded DOI S5XZ-N56W +Downloaded DOI CYM6-RQPH +Downloaded DOI DWRP-6QUM +Downloaded DOI Z7P2-WXG6 +Downloaded DOI 4PRD-7GX8 +Downloaded DOI RC76-K2G9 +No data found, error 404 +Downloaded DOI TEJG-GJ7Z +Downloaded DOI KZH6-2MRT +Downloaded DOI PFAR-JYUF +Downloaded DOI HK85-B9BW +Downloaded DOI 3MRX-3KB7 +Downloaded DOI CNU6-K8TA +No data found, error 404 +Downloaded DOI WFU9-4CG5 +Downloaded DOI QJXT-3CN4 +Downloaded DOI 6BPU-JUPP +Downloaded DOI NN9P-WHPM +Downloaded DOI AEF5-GCUD +Downloaded DOI FDSA-5FGU +Downloaded DOI BWY7-XVPE +Downloaded DOI GKXB-JN8F +Downloaded DOI 69QD-B4VW +Downloaded DOI Q4U3-SKQV +Downloaded DOI T7VP-K9CM +Downloaded DOI R9GK-QBZ2 +Downloaded DOI ZW2R-7KXF +Downloaded DOI KHKY-PVK4 +Downloaded DOI P6BD-2WCC +Downloaded DOI TVHG-ENV8 +Downloaded DOI ZT56-U779 +No data found, error 404 +Downloaded DOI M475-Z7UH +Downloaded DOI HFMZ-YZ8A +Downloaded DOI B38Y-J23Y +No data found, error 404 +Downloaded DOI J5ME-QM76 +Downloaded DOI 7SQM-9VK5 +Downloaded DOI 8W23-PR9X +Downloaded DOI PG2J-DU6G +Downloaded DOI VJXP-DWX5 +No data found, error 404 +Downloaded DOI 3MC5-VW4X +Downloaded DOI 9HF3-JDSJ +Downloaded DOI FDP3-MG5A +Downloaded DOI Y3ST-9NEK +Downloaded DOI HQBZ-N863 +Downloaded DOI ZTY7-PZEP +Downloaded DOI XYU2-SNDG +Downloaded DOI CY5N-U446 +Downloaded DOI JYU8-E79U +Downloaded DOI UXKG-58HM +Downloaded DOI 6M67-6R3T +Downloaded DOI CXD9-6KSM +Downloaded DOI ZYW8-KEDB +Downloaded DOI ZJY8-XP95 +Downloaded DOI 4553-53MC +Downloaded DOI M9FG-666Q +No data found, error 404 +Downloaded DOI 6C5X-PFHB +Downloaded DOI XJGB-TE6V +Downloaded DOI S7VY-XJV7 +Downloaded DOI 3VM8-73FE +Downloaded DOI 9PFA-UAA8 +No data found, error 404 +Downloaded DOI BMQN-T6RF +Downloaded DOI 3VYP-K66H +No data found, error 404 +Downloaded DOI B98T-USSA +Downloaded DOI XB5B-XNTA +Downloaded DOI KMYJ-KEAS +Downloaded DOI 2MPT-B8VF +Downloaded DOI TDE5-6JNU +Downloaded DOI RX8C-9AN8 +Downloaded DOI 3CF3-SSN5 +Downloaded DOI 8GYN-5GHA +Downloaded DOI KNFU-WM94 +Downloaded DOI BRSG-EGDN +Downloaded DOI EEMT-UH9Y +Downloaded DOI UGZK-E8VM +Downloaded DOI S6PK-TZWZ +Downloaded DOI CV3H-ADWJ +Downloaded DOI YXXA-BW5C +Downloaded DOI DB2T-XE5R +Downloaded DOI 8WBW-UCJ2 +No data found, error 404 +Downloaded DOI MM2G-Z2YM +Downloaded DOI 4CA5-VF3R +Downloaded DOI FUXX-7QSE +Downloaded DOI BYF7-J6ZW +Downloaded DOI 4455-J45G +Downloaded DOI X47U-2EKE +Downloaded DOI TJTD-DSQF +Downloaded DOI WDZK-6B4N +No data found, error 404 +Downloaded DOI JAD4-MMFM +Downloaded DOI KCBM-UQHW +Downloaded DOI T5PP-AX2N +Downloaded DOI 3MF2-CA7G +Downloaded DOI S3GC-A3F3 +Downloaded DOI VQKZ-MRZ2 +Downloaded DOI TRTW-6JCB +Downloaded DOI 5Q2X-8BFC +Downloaded DOI WVXM-4KWN +Downloaded DOI ZHTK-BGBT +Downloaded DOI XHPN-CVJ8 +Downloaded DOI MJ36-H3FK +Downloaded DOI 5C7D-SHM4 +Downloaded DOI GHXR-55GT +Downloaded DOI BQPB-MP8K +Downloaded DOI P5N4-F2MS +Downloaded DOI ET3A-K8K8 +No data found, error 404 +Downloaded DOI CJGF-H5ZC +Downloaded DOI 7RV9-GHXN +Downloaded DOI VVWG-VHQK +Downloaded DOI AP7H-FAZZ +Downloaded DOI SEUD-MYJQ +Downloaded DOI DQYF-T9EF +Downloaded DOI 3QTQ-3U6G +Downloaded DOI P46H-7K29 +Downloaded DOI ETMM-HG95 +No data found, error 404 +Downloaded DOI ZQHH-ER2G +No data found, error 404 +Downloaded DOI MRWD-VCM3 +Downloaded DOI 6FRG-F354 +Downloaded DOI 2AV7-PJ5E +Downloaded DOI 4N6H-9UEJ +Downloaded DOI D9DW-5F8K +Downloaded DOI M5CH-WAY9 +Downloaded DOI EV4T-PEX2 +Downloaded DOI Z59W-57TG +Downloaded DOI 9YGE-FTCR +No data found, error 404 +Downloaded DOI ATRT-65MN +Downloaded DOI WDDN-PNF3 +Downloaded DOI E3BV-2STB +Downloaded DOI Y5NZ-T57Z +Downloaded DOI 9W74-XARM +Downloaded DOI C3NM-4QXT +Downloaded DOI 4XPJ-QDMB +Downloaded DOI CWY5-26AU +Downloaded DOI KWNE-M8MQ +Downloaded DOI ZXRM-N9JY +Downloaded DOI ZAXW-U6GX +Downloaded DOI EWBJ-2SEG +Downloaded DOI KVN5-3Q34 +Downloaded DOI FP6P-RKMD +Downloaded DOI CFNC-RPWQ +Downloaded DOI UAAY-Z28U +Downloaded DOI 6BTB-EUUA +Downloaded DOI 8AUR-ZKUC +Downloaded DOI DAFX-EWMV +Downloaded DOI QADF-A933 +No data found, error 404 +Downloaded DOI 895F-K96M +Downloaded DOI ETSZ-Y8PJ +Downloaded DOI 7R4R-QFBR +Downloaded DOI G4Q6-G972 +Downloaded DOI CPRU-XRR6 +Downloaded DOI 3244-5MNS +Downloaded DOI 6MXQ-SQP9 +No data found, error 404 +Downloaded DOI NYJ4-B9EH +Downloaded DOI CSJB-FW54 +Downloaded DOI UVGK-EXJ3 +Downloaded DOI PEHQ-WRJV +Downloaded DOI KQDM-MBTX +Downloaded DOI MYEW-GV9M +Downloaded DOI 7TXM-USFM +Downloaded DOI JFYR-TQQC +Downloaded DOI 3KUV-ANTW +Downloaded DOI JKSG-7GMD +Downloaded DOI HYKH-VAB8 +Downloaded DOI NSXD-EVTH +Downloaded DOI XWPM-6SRZ +Downloaded DOI HAKS-42BE +Downloaded DOI GY6U-JHRH +Downloaded DOI AY2P-KQ6R +Downloaded DOI Z8MR-RJ7Q +Downloaded DOI J45K-7R8Y +Downloaded DOI 3MKM-PR94 +Downloaded DOI KFXX-TPDH +Downloaded DOI D5MZ-8YQU +Downloaded DOI 2BHD-B7Z7 +Downloaded DOI M7JZ-Q6N7 +Downloaded DOI VBNW-AK3W +Downloaded DOI YBJ7-PP7K +No data found, error 404 +Downloaded DOI GUNE-J44F +Downloaded DOI 8B62-7BEN +Downloaded DOI DVDT-JA2V +Downloaded DOI V9WK-WGJT +Downloaded DOI SQ22-8KQB +Downloaded DOI F6RJ-FWHM +Downloaded DOI HFMK-35HT +Downloaded DOI 4P3W-RZHS +Downloaded DOI D2US-J8FX +Downloaded DOI R6Z8-B8K4 +No data found, error 404 +Downloaded DOI T6ZB-GPN2 +Downloaded DOI H7ZK-ZT84 +Downloaded DOI ARSX-NMZ7 +Downloaded DOI 796J-FZRK +Downloaded DOI STMA-STEW +Downloaded DOI HMSK-MXXU +Downloaded DOI 6ZBQ-27UP +Downloaded DOI B8PU-NWHP +Downloaded DOI 6GG6-TDY5 +Downloaded DOI C2EF-VXM5 +Downloaded DOI 46QD-C6B8 +Downloaded DOI C2H3-WWAP +Downloaded DOI JKE7-AABD +Downloaded DOI N5NT-BCZ4 +Downloaded DOI V384-KSJN +Downloaded DOI KA6T-KGWK +Downloaded DOI FZQ9-UQ2J +Downloaded DOI 266S-5RJH +Downloaded DOI XWHF-X6M6 +Downloaded DOI 5GUZ-PYZM +Downloaded DOI 6G2E-86DM +Downloaded DOI PNWX-3YHE +Downloaded DOI RCQ5-2NVC +Downloaded DOI HZ56-KC9N +Downloaded DOI SKP4-33S5 +Downloaded DOI VGU4-4YRT +Downloaded DOI CHW2-YNVA +Downloaded DOI 58JQ-JMXE +Downloaded DOI W2A6-44F8 +Downloaded DOI RGC4-VS3Q +No data found, error 404 +Downloaded DOI K2TP-44M5 +Downloaded DOI MJ9K-4HUC +Downloaded DOI 2JK3-ETVS +Downloaded DOI Y6HH-KY5R +Downloaded DOI FMAM-6YFJ +Downloaded DOI E3DR-8EQ2 +Downloaded DOI X4N6-SDXU +Downloaded DOI 286U-AKNP +Downloaded DOI GBWD-QVAR +Downloaded DOI WUS5-DHW2 +Downloaded DOI MKE4-KU7Y +Downloaded DOI WMUX-S6V5 +Downloaded DOI 2XM7-7H6J +Downloaded DOI H72G-QUHX +Downloaded DOI 72YK-45BE +Downloaded DOI FK8Z-HJY6 +Downloaded DOI JHPM-HNF5 +Downloaded DOI SE63-Q2F9 +Downloaded DOI F5ZR-8BHD +Downloaded DOI 5CRK-RN2Z +Downloaded DOI A5X4-ES6E +Downloaded DOI R7X8-22BZ +No data found, error 404 +Downloaded DOI ZEP7-DTNK +Downloaded DOI D999-PRD4 +Downloaded DOI MM36-FUP9 +Downloaded DOI YUZJ-89G8 +Downloaded DOI MZKT-VNST +No data found, error 404 +Downloaded DOI XGKT-SDQN +Downloaded DOI UTKG-CFN9 +Downloaded DOI XBNB-W5GW +Downloaded DOI S24M-PXMH +Downloaded DOI 7BAH-YDPE +No data found, error 404 +Downloaded DOI R2RQ-DGKR +Downloaded DOI QZE6-SUAT +Downloaded DOI 6SE9-KXJ8 +Downloaded DOI XH7T-PKUY +Downloaded DOI P8ZS-R4ZB +Downloaded DOI C7QT-UJRW +No data found, error 404 +Downloaded DOI SATQ-T8XM +Downloaded DOI HTV9-FKGV +Downloaded DOI KGDS-6EQG +Downloaded DOI YFV7-BMP8 +Downloaded DOI K9NH-4FG4 +Downloaded DOI KFCB-GJTT +No data found, error 404 +Downloaded DOI DF4X-JUFS +Downloaded DOI 6TA5-49ND +Downloaded DOI JY67-92MS +No data found, error 404 +No data found, error 404 +Downloaded DOI FXJW-AA2B +Downloaded DOI SUNW-DP6U +Downloaded DOI SYCE-GQ5N +Downloaded DOI AFQT-M94V +Downloaded DOI 97DJ-FXQF +Downloaded DOI KW2S-4NQZ +Downloaded DOI 772A-HCD9 +Downloaded DOI AKTN-WH94 +Downloaded DOI PNE6-ZDNX +Downloaded DOI E2BB-RKGD +No data found, error 404 +Downloaded DOI XYU7-URYW +Downloaded DOI HQDM-CJ5M +Downloaded DOI 52UD-8W2T +Downloaded DOI 4CG9-YZ22 +Downloaded DOI K5ER-WK95 +Downloaded DOI VRF4-WSPC +Downloaded DOI UCPK-MM9N +Downloaded DOI SGS7-95UP +Downloaded DOI T4X5-9TG7 +Downloaded DOI K7GN-GNH5 +Downloaded DOI XCMY-8P6J +Downloaded DOI NUGF-CHJ3 +Downloaded DOI YG5B-JFYZ +No data found, error 404 +Downloaded DOI 9GT6-QJKJ +Downloaded DOI JECK-XJ9C +Downloaded DOI ZU56-5ZD9 +Downloaded DOI 66VC-5Z7H +Downloaded DOI 525V-KVF8 +Downloaded DOI 3YTF-62UU +Downloaded DOI RX72-E77N +Downloaded DOI MNN8-DZ5Z +Downloaded DOI 76J2-B8FD +Downloaded DOI 8NNN-9QF7 +Downloaded DOI G8H5-A74N +Downloaded DOI 7KB5-FG5A +Downloaded DOI 4HFV-65TP +Downloaded DOI 85AT-8E5J +Downloaded DOI AAF3-U34J +Downloaded DOI CPRP-YCTM +Downloaded DOI JTQH-P9GS +Downloaded DOI 4XVQ-X8QU +No data found, error 404 +Downloaded DOI CCJT-733F +Downloaded DOI US5X-4BNE +Downloaded DOI DJKX-6WSP +Downloaded DOI EWQ7-9UGA +Downloaded DOI ETJZ-U56D +Downloaded DOI SH4Y-P9AP +Downloaded DOI R2M6-JS6K +Downloaded DOI 7M7Y-C4N2 +Downloaded DOI MH3A-HDZD +Downloaded DOI W4F8-JHVW +Downloaded DOI XMBS-K85E +No data found, error 404 +Downloaded DOI 8E8J-GBM2 +No data found, error 404 +Downloaded DOI WFZ5-3GJB +No data found, error 404 +Downloaded DOI FCWB-DQFY +Downloaded DOI N5JP-JCTN +Downloaded DOI DZD2-VWEG +Downloaded DOI V8NA-XPJ7 +Downloaded DOI 3EBZ-FMRA +Downloaded DOI WUW3-MB4T +Downloaded DOI P6EH-4NQG +Downloaded DOI 77XG-AFR6 +Downloaded DOI 5ZNP-E5T2 +Downloaded DOI UDAA-HGWN +Downloaded DOI MD29-SG4H +Downloaded DOI TG8V-E77W +Downloaded DOI 4DZ9-8FFP +Downloaded DOI 3937-C4RG +Downloaded DOI FB8E-MUYM +Downloaded DOI K3GW-GGQ8 +Downloaded DOI BHP4-RP3A +Downloaded DOI R7EN-P9XP +Downloaded DOI UTXR-FB4J +Downloaded DOI FCB2-5FWX +Downloaded DOI CMPD-CPEF +No data found, error 404 +Downloaded DOI QBEM-4UW3 +Downloaded DOI 9UQ7-DVNB +Downloaded DOI P4Q2-UZKT +Downloaded DOI 4EDP-NSV8 +Downloaded DOI UVG3-9SHU +Downloaded DOI CSAY-C72F +No data found, error 404 +Downloaded DOI JCN7-EN6Y +Downloaded DOI YCX4-7VRE +Downloaded DOI XQEN-9KUV +No data found, error 404 +Downloaded DOI NSG2-FMEV +Downloaded DOI 5UFK-4ZM6 +Downloaded DOI ZCPU-95VD +Downloaded DOI YW5B-47DF +Downloaded DOI BSZF-YP9V +Downloaded DOI D4JT-KFMT +Downloaded DOI TSPS-KP9M +Downloaded DOI ZGZ9-TDC6 +Downloaded DOI YJXT-CJTD +Downloaded DOI DN5G-GHCW +Downloaded DOI MQVB-9DBX +Downloaded DOI KYUT-GXK8 +Downloaded DOI W6QK-9G9E +Downloaded DOI 4CE8-ZXSF +No data found, error 404 +Downloaded DOI 7H8B-N7HA +Downloaded DOI YZGX-8EV8 +Downloaded DOI 5ZMH-R3VQ +Downloaded DOI 3NGY-TV2F +Downloaded DOI ZAWF-JM6A +Downloaded DOI KCV8-K2FX +Downloaded DOI Z6AB-BKHX +Downloaded DOI M7YB-XX2H +No data found, error 404 +Downloaded DOI 5XCC-45T9 +Downloaded DOI 538Q-FUHS +Downloaded DOI G228-NSRM +Downloaded DOI ZPT9-WUE3 +Downloaded DOI 3VR8-D2GP +Downloaded DOI BZMC-X7MR +Downloaded DOI DSUD-UKA7 +Downloaded DOI SJG8-NTQY +Downloaded DOI 2PCG-7C4U +Downloaded DOI CT2D-VC7Q +Downloaded DOI QJUB-B38H +No data found, error 404 +Downloaded DOI WTG6-4SV7 +Downloaded DOI 2F55-WZBR +Downloaded DOI USPD-AKQC +Downloaded DOI DFNC-F24Q +Downloaded DOI DYW2-GED2 +Downloaded DOI TUQQ-YNTG +Downloaded DOI VGPS-JJTX +Downloaded DOI BXRC-DZNK +Downloaded DOI 975X-WUZT +Downloaded DOI 28AQ-7CSS +Downloaded DOI 8KTZ-QYBB +Downloaded DOI QX55-EQX5 +Downloaded DOI 6SCN-GK8U +Downloaded DOI J7W3-R4QK +Downloaded DOI PDBC-8BEF +Downloaded DOI PCC9-TG3T +Downloaded DOI GNYZ-C2Q6 +Downloaded DOI AWH3-CWV9 +Downloaded DOI V5WU-RFDS +Downloaded DOI 98V8-AGA5 +Downloaded DOI 8BXG-JGBH +Downloaded DOI NW5B-UG4F +No data found, error 404 +Downloaded DOI ME2M-GQMK +Downloaded DOI ZC9E-FVU4 +Downloaded DOI QJRC-RBK3 +Downloaded DOI KHWW-UN8C +Downloaded DOI ZGRD-VQUT +Downloaded DOI EJ68-92NH +Downloaded DOI GPFP-FXGC +Downloaded DOI FN7B-AC8R +Downloaded DOI JTBG-V2DQ +Downloaded DOI JBQY-HX57 +Downloaded DOI NAD6-ZQ59 +Downloaded DOI 7VVR-H8NC +Downloaded DOI E48G-4962 +Downloaded DOI C5FZ-UKT7 +Downloaded DOI HP83-RW89 +Downloaded DOI EEEW-NY2Z +Downloaded DOI EEG3-WG7H +No data found, error 404 +Downloaded DOI HWWX-2576 +No data found, error 404 +Downloaded DOI 59QQ-JQ67 +Downloaded DOI K6E4-UH3U +Downloaded DOI V68F-2K4E +Downloaded DOI W9BB-XERH +Downloaded DOI NA7B-68FK +Downloaded DOI FXS6-H93G +Downloaded DOI TH6H-BPBC +Downloaded DOI WAC7-PCFH +Downloaded DOI 7VVU-NGWT +Downloaded DOI XXX9-8YNU +Downloaded DOI BM89-EB27 +Downloaded DOI 69DV-MHUJ +Downloaded DOI 5SXJ-NBEP +Downloaded DOI 94MW-DTY9 +Downloaded DOI AMPF-NHYX +Downloaded DOI PG8X-UYYG +Downloaded DOI 8R8R-JTVC +Downloaded DOI E6PD-2EH6 +No data found, error 404 +Downloaded DOI YYJS-XF5S +Downloaded DOI XD44-CZK2 +Downloaded DOI CF9R-PP3K +Downloaded DOI 9JJH-P2YC +Downloaded DOI CWV6-SS6A +Downloaded DOI FMDD-7RYU +Downloaded DOI XGKU-92GX +Downloaded DOI VKX2-8492 +Downloaded DOI M75C-8Q5G +No data found, error 404 +Downloaded DOI 5YK5-KPMU +Downloaded DOI 5BVZ-DF7H +Downloaded DOI 4A6Y-PK24 +Downloaded DOI 6NAE-WZHP +Downloaded DOI FV7M-DXPK +Downloaded DOI XEJ6-X4SU +Downloaded DOI BTEY-MUQH +No data found, error 404 +Downloaded DOI GUPA-AZ2G +Downloaded DOI 7BET-J39M +No data found, error 404 +Downloaded DOI UVDG-RP9X +Downloaded DOI 9X2G-KUZ9 +Downloaded DOI PUVC-36NX +Downloaded DOI XS78-6S6D +Downloaded DOI W66R-3VTV +Downloaded DOI 8GMD-5WFC +Downloaded DOI Z6MS-E9X6 +Downloaded DOI N5DS-N4MW +Downloaded DOI 3KSQ-GABZ +Downloaded DOI F4E9-V49Y +Downloaded DOI QDXZ-6Z7S +Downloaded DOI C4Z2-JDFH +Downloaded DOI 8WXQ-WAS6 +Downloaded DOI JJUX-9DKF +Downloaded DOI EXJ9-9M4C +Downloaded DOI TEQ8-4YQS +Downloaded DOI UKF5-H2PB +Downloaded DOI CE7D-U9X5 +Downloaded DOI EU2Z-ZUJN +Downloaded DOI D4YF-P4DY +Downloaded DOI WJ9E-CN98 +Downloaded DOI AVW5-MQVE +Downloaded DOI F6PN-PQ2Z +Downloaded DOI VK25-4DB8 +Downloaded DOI C3SA-PMX9 +Downloaded DOI KAHZ-5HBK +Downloaded DOI F2Q3-82WA +Downloaded DOI E7V4-PGJF +Downloaded DOI N59E-KV4F +Downloaded DOI 2YHV-QZ9N +Downloaded DOI SHRZ-6UQ3 +Downloaded DOI 7DFD-SJJJ +Downloaded DOI 3T3R-A5GJ +Downloaded DOI ED9Y-4P2H +Downloaded DOI XCVM-S3ZA +Downloaded DOI JSD8-K5AT +Downloaded DOI RKUE-S7H3 +Downloaded DOI MDSF-X7WX +Downloaded DOI WCCC-SRMM +Downloaded DOI GYE3-HEET +Downloaded DOI XKJU-YCFU +Downloaded DOI 65XJ-8VYJ +Downloaded DOI MCEE-U9UE +Downloaded DOI BAVP-XCUJ +Downloaded DOI PMV5-6JZ7 +No data found, error 404 +Downloaded DOI 9RNK-DDPQ +Downloaded DOI BSU7-MZ6F +Downloaded DOI 74J4-4TM3 +No data found, error 404 +Downloaded DOI KUPU-88VP +Downloaded DOI AZZE-KU4C +Downloaded DOI W8RP-2EDN +No data found, error 404 +Downloaded DOI AG5N-DUDQ +Downloaded DOI Q994-9277 +Downloaded DOI 5SW5-U3GV +Downloaded DOI S8ZZ-52X8 +Downloaded DOI KZUM-KP8Q +Downloaded DOI PSDV-J34F +Downloaded DOI 5QD9-6PKT +Downloaded DOI HHFK-GVUT +Downloaded DOI VNWM-E3PF +Downloaded DOI ZHSW-25CE +Downloaded DOI R8ST-X93Z +Downloaded DOI E3GZ-MTWN +No data found, error 404 +Downloaded DOI 2TV2-7UA2 +No data found, error 404 +Downloaded DOI PJ6X-7F3H +Downloaded DOI 695F-VVTB +Downloaded DOI DQ3E-F4JR +Downloaded DOI 9YVW-5VAD +Downloaded DOI 22XX-VRZK +Downloaded DOI Y7JE-J86C +Downloaded DOI WB3K-7R2R +Downloaded DOI Q2Q3-5YT6 +Downloaded DOI MRYS-XNUF +No data found, error 404 +Downloaded DOI BQYM-WPYS +Downloaded DOI FD93-G46M +Downloaded DOI SP42-97CT +Downloaded DOI YSNG-VW4P +Downloaded DOI 9RP9-RJHF +Downloaded DOI SDQQ-V24F +Downloaded DOI GN7A-2NY2 +Downloaded DOI 2Y2R-TBG3 +Downloaded DOI 6MNJ-ZM5V +Downloaded DOI JNU2-7UJA +Downloaded DOI HDT2-6JBB +Downloaded DOI R6QR-DVYR +Downloaded DOI 8D45-X37T +Downloaded DOI NBZY-VCBD +Downloaded DOI 9DKT-K7SY +Downloaded DOI XUGM-5A6J +Downloaded DOI KVEC-KAD5 +Downloaded DOI 52YV-WX8C +Downloaded DOI KNEE-WPTJ +Downloaded DOI T9V4-95SS +Downloaded DOI YW6C-JBHJ +No data found, error 404 +Downloaded DOI Q288-2FMB +Downloaded DOI V2UK-7A29 +No data found, error 404 +Downloaded DOI CWD6-4MCU +Downloaded DOI UZYH-PW7J +Downloaded DOI 69TQ-TJMJ +Downloaded DOI AE5H-8E8J +Downloaded DOI C72G-4RT6 +Downloaded DOI 7V4D-V22P +Downloaded DOI M65C-46YF +Downloaded DOI UH9X-QH4E +Downloaded DOI BWYS-SCB4 +Downloaded DOI BDPN-DZX2 +Downloaded DOI GJ5B-R5RQ +Downloaded DOI WBN4-BSEG +Downloaded DOI VK7B-P7ZN +Downloaded DOI JR6D-F5WF +Downloaded DOI 8BQ9-UBGK +Downloaded DOI N4SF-63NP +Downloaded DOI YDHA-DGXW +Downloaded DOI UZYA-NXRG +Downloaded DOI A3TW-25Z2 +Downloaded DOI 2S4P-YBPQ +Downloaded DOI SHJ9-89Z9 +Downloaded DOI SYGW-JZTU +Downloaded DOI E3TA-ZTU6 +Downloaded DOI VETY-ZG2X +No data found, error 404 +Downloaded DOI YMGR-94PC +Downloaded DOI XAW7-9W5Z +Downloaded DOI EYCV-56VD +No data found, error 404 +Downloaded DOI DBFC-HKD5 +No data found, error 404 +Downloaded DOI DJDQ-SESY +Downloaded DOI GDXW-UWQ6 +Downloaded DOI APA3-V5D3 +Downloaded DOI JG6A-7N4V +Downloaded DOI EGHZ-6YY2 +Downloaded DOI 7PUA-XCAU +Downloaded DOI 3HYC-X5H4 +Downloaded DOI Q5X2-T4PH +Downloaded DOI YQYZ-JZFP +Downloaded DOI VPEK-MKEF +Downloaded DOI MZZQ-9ZAW +Downloaded DOI SQPY-AVEE +Downloaded DOI P94R-96JP +No data found, error 404 +Downloaded DOI C9XS-PNSD +Downloaded DOI 6AQJ-KRB5 +Downloaded DOI GPRF-RRAG +Downloaded DOI 4JU3-BZ2R +No data found, error 404 +Downloaded DOI TTNB-R965 +Downloaded DOI 2PCG-GPVV +Downloaded DOI EJMU-WEBA +Downloaded DOI BJA2-ET7Z +Downloaded DOI CAKN-96BE +Downloaded DOI QHYD-M4B8 +Downloaded DOI MNRS-2DHX +Downloaded DOI Z8QX-684R +Downloaded DOI JTGX-GTXQ +Downloaded DOI Z98C-D3BK +Downloaded DOI EH6B-EQW6 +Downloaded DOI NUFK-QTFJ +Downloaded DOI 2DEZ-MMAY +Downloaded DOI 5WD4-DDK9 +Downloaded DOI PMQ3-SYAZ +Downloaded DOI J2AW-FBK9 +Downloaded DOI REJJ-9W8Z +Downloaded DOI TMXQ-ARSM +Downloaded DOI QAKK-CZGC +Downloaded DOI N2CQ-ZB2U +Downloaded DOI 6KVY-7XNX +Downloaded DOI JCE9-JYHD +Downloaded DOI WHZ5-ZJDG +Downloaded DOI FNNJ-H6JU +Downloaded DOI N8NM-FNWQ +Downloaded DOI ZF6F-HZMM +Downloaded DOI 6QCU-892T +Downloaded DOI S9QT-SGJ3 +Downloaded DOI W352-7W2V +Downloaded DOI 49TU-5PDC +Downloaded DOI C35R-NFYG +Downloaded DOI SC4Z-AHT7 +Downloaded DOI BHR6-PSG7 +Downloaded DOI VRAU-STE5 +Downloaded DOI KX9A-VAHD +Downloaded DOI TP3K-2BJT +Downloaded DOI M35R-KEK7 +Downloaded DOI YH7C-TQHU +Downloaded DOI X4BC-QWNA +Downloaded DOI AV42-BKA3 +Downloaded DOI 5MMQ-E7YA +Downloaded DOI B4ME-UG5H +Downloaded DOI P978-ZUCT +Downloaded DOI D3TV-SSH8 +Downloaded DOI 2FXK-U563 +No data found, error 404 +Downloaded DOI ZEY3-6FTC +Downloaded DOI G585-CVHK +Downloaded DOI SU6F-ADD9 +Downloaded DOI FMH7-6BNS +Downloaded DOI DXG8-KJQW +Downloaded DOI PE3P-3PD5 +Downloaded DOI EM6W-9DBG +Downloaded DOI 7CAA-E9CK +Downloaded DOI CAAB-PZUM +Downloaded DOI 4Y9R-RQA9 +Downloaded DOI 6H7C-TFSH +Downloaded DOI YYA6-ZE8R +Downloaded DOI 5W8A-XMNY +Downloaded DOI 8FWW-P3E4 +Downloaded DOI E693-MMGW +Downloaded DOI 6UFQ-QYFX +Downloaded DOI YMUH-N3H6 +Downloaded DOI MW9K-7UWJ +Downloaded DOI C98Y-UQD8 +Downloaded DOI 5K8Q-JRWH +Downloaded DOI PU4B-JFPF +Downloaded DOI RZ9M-GQSU +Downloaded DOI 7WP5-4HNV +Downloaded DOI UCRE-55AB +Downloaded DOI DRKE-N98Q +Downloaded DOI FX9P-M5RW +Downloaded DOI CT5R-YH6E +Downloaded DOI ABUT-T4AH +Downloaded DOI JGFR-RUFZ +Downloaded DOI YKMC-KYHZ +Downloaded DOI 42BF-C4JP +Downloaded DOI EP2T-QJ2W +Downloaded DOI AFF3-GFRG +No data found, error 404 +Downloaded DOI MB9T-H824 +Downloaded DOI VPZC-JJQG +Downloaded DOI BHJ5-WZ2C +Downloaded DOI QEYQ-WWZA +Downloaded DOI BNYE-G9GU +Downloaded DOI JD9K-8RG9 +Downloaded DOI KMBX-FPM9 +Downloaded DOI AU8U-FEGC +Downloaded DOI 89ZM-P4BR +Downloaded DOI ZRNQ-UZ8P +Downloaded DOI 4SEF-XEWW +Downloaded DOI XJT7-VPS9 +No data found, error 404 +No data found, error 404 +Downloaded DOI J5PJ-6DMT +Downloaded DOI T4YN-W6AA +Downloaded DOI JSFG-WASX +Downloaded DOI 6ACB-WTHT +Downloaded DOI ZW6Z-HNPM +Downloaded DOI QEX5-4Y63 +Downloaded DOI YD8D-6VTQ +Downloaded DOI NWBY-VVQD +Downloaded DOI 4QFF-BJUF +Downloaded DOI 2Q2A-9S6E +Downloaded DOI ATDC-GSVF +Downloaded DOI CW5C-Q3C5 +Downloaded DOI A34H-WDXR +Downloaded DOI 5YU8-PY4U +Downloaded DOI DFE7-EP5X +Downloaded DOI S2AV-Q9JE +Downloaded DOI 2HFP-3NZP +Downloaded DOI 47QN-6Z7A +Downloaded DOI ZU3B-3SAU +Downloaded DOI 3V57-8GSF +Downloaded DOI 3PQ3-Q7NJ +Downloaded DOI F5ED-V98W +Downloaded DOI NFT8-C3H6 +Downloaded DOI G322-NWZS +Downloaded DOI NXYA-5GS9 +Downloaded DOI YZ7W-ST3R +Downloaded DOI 238Y-DN7G +No data found, error 404 +No data found, error 404 +Downloaded DOI RXUC-7E3K +Downloaded DOI ACFC-QS4M +Downloaded DOI TC4S-EWRS +Downloaded DOI ZXNW-JEWG +Downloaded DOI 6YS6-2SAK +Downloaded DOI NJSV-VHPD +Downloaded DOI 8KY2-75AH +Downloaded DOI UV4N-J8DQ +Downloaded DOI Q5G8-ZKK7 +Downloaded DOI QJ8X-GANZ +Downloaded DOI MQWV-M7PR +Downloaded DOI YM2E-9RW4 +Downloaded DOI H5VA-MDDE +Downloaded DOI 4DBP-M2A8 +Downloaded DOI Y5Z9-M8KM +Downloaded DOI WJHE-PMCT +Downloaded DOI HYKJ-P8UF +Downloaded DOI W8B8-7AKU +Downloaded DOI 58AG-VSDR +Downloaded DOI RFWT-N3RM +Downloaded DOI 42TF-7JKD +Downloaded DOI S3SX-2YCF +No data found, error 404 +No data found, error 404 +Downloaded DOI RJR9-AT9G +Downloaded DOI ZGNC-2ME3 +Downloaded DOI 3HQ8-3J6G +Downloaded DOI TQXE-R4A3 +Downloaded DOI 3N8S-7R8T +Downloaded DOI 8A69-9HT9 +Downloaded DOI 5TUT-BQUQ +Downloaded DOI 57ZC-WJXV +Downloaded DOI R97A-FEMH +Downloaded DOI 8J7R-CYZ6 +Downloaded DOI TK2C-C74A +Downloaded DOI WCE7-4GY4 +Downloaded DOI BZ34-SWD6 +Downloaded DOI 464U-TZVG +Downloaded DOI CFQC-TZXU +Downloaded DOI E448-63K2 +Downloaded DOI 9KPQ-9ZSF +Downloaded DOI ASJT-M6W7 +Downloaded DOI GR2B-NX4V +No data found, error 404 +Downloaded DOI RM2A-435H +Downloaded DOI U2K7-JQ5H +Downloaded DOI KRPB-UJ8S +Downloaded DOI B27E-QHA2 +No data found, error 404 +Downloaded DOI B5SD-RPUV +Downloaded DOI 25NY-C2EF +Downloaded DOI EQ99-FTGJ +Downloaded DOI F5MM-VPWQ +Downloaded DOI QZA7-RMUM +Downloaded DOI K8XW-SVXU +Downloaded DOI ZW5S-85AP +Downloaded DOI SR4P-7JRB +Downloaded DOI ATKJ-FE2A +Downloaded DOI MVT2-MMPV +Downloaded DOI JXSU-X862 +Downloaded DOI G2AY-7MFV +Downloaded DOI WK7F-JEK7 +Downloaded DOI DTZ3-K34G +Downloaded DOI 9BW7-JEMR +Downloaded DOI GJNB-SJF8 +Downloaded DOI 54DS-QN6J +Downloaded DOI XFD9-8A9E +Downloaded DOI WQWM-7Z5Q +No data found, error 404 +Downloaded DOI DUPN-DXMX +Downloaded DOI 8BVU-K72D +Downloaded DOI 6GEM-XPFW +Downloaded DOI W4EE-2Z2J +Downloaded DOI MTNW-MZRC +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI 6BMQ-RBBH +Downloaded DOI NFZK-SN8A +Downloaded DOI 7RZY-CVFC +Downloaded DOI VRED-RRQY +Downloaded DOI TYHW-HJ8X +Downloaded DOI JBXJ-UJW4 +Downloaded DOI FX88-YXRA +Downloaded DOI HK2Z-R95J +Downloaded DOI KG9Y-RP9U +Downloaded DOI KT7J-PKHD +Downloaded DOI XTMK-G89R +Downloaded DOI AMWE-KGRP +Downloaded DOI FZY3-6YAK +Downloaded DOI EU7B-X7Y7 +Downloaded DOI P2MX-6SBM +No data found, error 404 +Downloaded DOI VNES-8YBM +Downloaded DOI PF9J-4E74 +Downloaded DOI DB3V-CPUV +Downloaded DOI X866-84N2 +Downloaded DOI D799-8FX5 +Downloaded DOI Z8V6-5UQZ +Downloaded DOI ZU3Y-YMMH +Downloaded DOI HW3R-5GG7 +Downloaded DOI GU3S-6NPS +Downloaded DOI ZX8Q-7PFF +Downloaded DOI 2JCV-5MDM +Downloaded DOI WFDN-DWCN +Downloaded DOI 3QG6-MJYZ +Downloaded DOI UXMB-F6SJ +Downloaded DOI G2WV-3RWW +Downloaded DOI 5SKT-WBRP +Downloaded DOI 7KYN-KS3E +Downloaded DOI 9TF4-TGR2 +Downloaded DOI 6BS3-6X9X +Downloaded DOI RY7T-YHYC +Downloaded DOI G9W6-DE85 +Downloaded DOI D74B-AU5K +Downloaded DOI C9FU-RBKZ +Downloaded DOI DW9Z-KRB4 +No data found, error 404 +No data found, error 404 +Downloaded DOI 35NS-B58Y +Downloaded DOI EYNH-43FV +Downloaded DOI ETPF-3G44 +Downloaded DOI ZCQJ-R5Y5 +Downloaded DOI JS84-HBHZ +Downloaded DOI CESN-CDGX +Downloaded DOI ZAPA-5HSG +Downloaded DOI KAND-TCRG +Downloaded DOI 3WCZ-H23E +Downloaded DOI RA4X-EKW7 +Downloaded DOI ABJ7-ZSBN +Downloaded DOI GNXW-6UKX +Downloaded DOI 3E7B-TCUT +Downloaded DOI WQ5R-5A33 +Downloaded DOI Y9E2-BFRA +Downloaded DOI STW8-4RVK +Downloaded DOI CNF3-QMQT +Downloaded DOI 5S7C-VJ6Z +Downloaded DOI V2EZ-DDZJ +Downloaded DOI Z53Q-6JZZ +Downloaded DOI 555Y-J2QH +No data found, error 404 +Downloaded DOI MAX5-MES3 +Downloaded DOI HWWB-RTHD +Downloaded DOI C8TB-RRET +Downloaded DOI GGAG-DSWW +Downloaded DOI 7BJW-P374 +Downloaded DOI ZWWZ-8SRH +Downloaded DOI 8TWX-YAQH +Downloaded DOI TPFU-J6N4 +Downloaded DOI YYNJ-N64Z +Downloaded DOI XWHW-WBGU +No data found, error 404 +Downloaded DOI 4R2J-YV28 +No data found, error 404 +Downloaded DOI B9W8-UFN5 +Downloaded DOI 48KG-96W3 +Downloaded DOI 89QZ-YCS5 +Downloaded DOI Y7N4-M6X5 +No data found, error 404 +Downloaded DOI 8AYS-W2RR +Downloaded DOI R8P8-XY7E +Downloaded DOI J36E-7CHJ +Downloaded DOI EDP5-MF3A +Downloaded DOI NK5T-S833 +Downloaded DOI EEBY-TBS3 +Downloaded DOI KY7M-HJT4 +Downloaded DOI QKCH-XNUP +Downloaded DOI WFAV-QHWX +Downloaded DOI T8TR-SHBS +Downloaded DOI FK23-CH86 +Downloaded DOI F6KC-MVVA +Downloaded DOI 3U3V-GABJ +Downloaded DOI TCXD-JRFT +Downloaded DOI DVUY-48RV +Downloaded DOI 5E7P-WQHS +Downloaded DOI RFAT-KZNN +Downloaded DOI XSWK-6QA4 +Downloaded DOI 9RSF-6ZZD +Downloaded DOI 2CCC-ZVVM +Downloaded DOI WD7X-R2AT +Downloaded DOI 94BD-CPKM +Downloaded DOI JARU-U2KT +No data found, error 404 +No data found, error 404 +Downloaded DOI YTEN-WCAM +No data found, error 404 +Downloaded DOI DQB5-VS9A +No data found, error 404 +Downloaded DOI CMHJ-JHHK +Downloaded DOI B6JA-HRG3 +Downloaded DOI W8CE-VU6C +Downloaded DOI QN8C-RZ6F +No data found, error 404 +Downloaded DOI MR6P-N8YX +Downloaded DOI SQHB-7XWW +Downloaded DOI 3ESB-FDAK +Downloaded DOI K7R4-FDJY +Downloaded DOI YAYU-9UD4 +Downloaded DOI EEYQ-QER4 +Downloaded DOI 6THF-WMJC +Downloaded DOI H3TE-W5QD +Downloaded DOI 8KNS-UUNJ +Downloaded DOI UQXC-E5N2 +Downloaded DOI CVFG-HY52 +Downloaded DOI UDRE-2AFY +Downloaded DOI VJXS-KQSV +Downloaded DOI FTAC-TMCU +Downloaded DOI 53JQ-3GZ5 +No data found, error 404 +Downloaded DOI F69G-VUCZ +Downloaded DOI 9872-7BFF +Downloaded DOI ZZQ6-QUJK +Downloaded DOI XHDA-U2KV +Downloaded DOI Y43J-8FSX +Downloaded DOI QNNN-45PZ +Downloaded DOI NG24-PSYZ +Downloaded DOI 5RW6-5YET +Downloaded DOI BG9P-N6C6 +Downloaded DOI MHRW-PS8F +Downloaded DOI 6BDC-FAM5 +Downloaded DOI 79DP-PBH6 +Downloaded DOI JASA-CVTF +Downloaded DOI BDNQ-KS8Z +Downloaded DOI BVFZ-76C2 +Downloaded DOI A3T9-JQKX +No data found, error 404 +Downloaded DOI 5P25-V8E6 +Downloaded DOI Z88T-VEKN +Downloaded DOI YVC8-FXQ7 +Downloaded DOI BZWF-YMSS +Downloaded DOI 8VXP-NF2F +Downloaded DOI TPDN-WRFC +No data found, error 404 +Downloaded DOI NEB9-PTJ9 +Downloaded DOI 66NB-2UVA +Downloaded DOI BG2J-FTRP +Downloaded DOI SME9-NR7G +Downloaded DOI 5MBD-HN5N +Downloaded DOI QN24-ZSTQ +Downloaded DOI MZKT-EDYS +Downloaded DOI JRFT-BRC6 +No data found, error 404 +Downloaded DOI E2H9-Q4ZE +Downloaded DOI UH59-5FR5 +Downloaded DOI 3KHG-Y4WJ +Downloaded DOI UCS7-9YBC +Downloaded DOI 2JC7-Z7D7 +Downloaded DOI FQUQ-7JAA +Downloaded DOI G4QM-37F2 +Downloaded DOI 8PP6-DJFH +Downloaded DOI 3ZAC-85BY +Downloaded DOI W96D-AVM5 +Downloaded DOI MWF6-Y3KM +Downloaded DOI UQ3P-GUNB +Downloaded DOI AG22-WX7D +No data found, error 404 +Downloaded DOI MVGM-GDSK +Downloaded DOI 72HD-G74R +Downloaded DOI HKYR-84QA +Downloaded DOI HHH8-TNTE +Downloaded DOI 72FT-KFNC +Downloaded DOI EXQV-Z4T9 +Downloaded DOI G4MW-AMGB +No data found, error 404 +No data found, error 404 +Downloaded DOI 35QM-EEBM +Downloaded DOI 8NY5-2894 +Downloaded DOI NVGD-878J +Downloaded DOI 2NNG-ZKAQ +Downloaded DOI JMCN-6X5D +Downloaded DOI J7JG-WQSJ +Downloaded DOI HCB3-JPU5 +Downloaded DOI G6RN-539U +Downloaded DOI R965-6YG8 +Downloaded DOI 2MBG-FPF7 +Downloaded DOI EXBS-MFR7 +Downloaded DOI RU6Z-HBBU +Downloaded DOI KA3G-XRTJ +Downloaded DOI 62S6-RJR9 +Downloaded DOI KH42-5V4S +Downloaded DOI VJ6T-PBU7 +No data found, error 404 +Downloaded DOI 42X5-8MX5 +Downloaded DOI S4SM-Y35K +Downloaded DOI X7XW-BVUJ +Downloaded DOI TGKY-3X8F +Downloaded DOI JCWW-UBQC +Downloaded DOI WFEC-RQBJ +Downloaded DOI CNK7-Y9VP +Downloaded DOI ADBP-XZAN +Downloaded DOI 95Q6-9RMJ +Downloaded DOI JW4R-EUFK +Downloaded DOI N79G-X3H7 +Downloaded DOI JF2D-QAR2 +Downloaded DOI Y5FU-JQ3P +No data found, error 404 +Downloaded DOI WVHC-RQ3N +Downloaded DOI P9Z6-WRAY +Downloaded DOI SJVK-VEHA +Downloaded DOI ZNZX-2KMR +Downloaded DOI Q2PB-TXF5 +Downloaded DOI F9ZQ-294V +Downloaded DOI 2MGK-JZQY +Downloaded DOI ZW4G-F7UR +Downloaded DOI BAE4-XBT8 +Downloaded DOI EWF6-DCKQ +Downloaded DOI A5RZ-8RJ2 +Downloaded DOI AN4H-MQV4 +No data found, error 404 +Downloaded DOI QQR6-X4UR +Downloaded DOI 6FEV-HTBE +Downloaded DOI PP2Z-CJMY +Downloaded DOI 2RV3-FRWH +Downloaded DOI HHUS-ZT5D +Downloaded DOI 8XMA-SE9E +Downloaded DOI X4YT-ENBW +Downloaded DOI E5WR-NRM2 +No data found, error 404 +Downloaded DOI FYB5-462A +Downloaded DOI 3KKQ-XGQ8 +Downloaded DOI H993-6MCQ +Downloaded DOI D6RH-NXGQ +Downloaded DOI XKJH-83VP +No data found, error 404 +Downloaded DOI 5FV6-35RN +Downloaded DOI 5A88-X653 +Downloaded DOI NH7Y-9HZQ +Downloaded DOI 48SU-YTWY +Downloaded DOI EZYP-P9DV +Downloaded DOI 4VBD-QMBP +No data found, error 404 +Downloaded DOI Y4A7-26T3 +Downloaded DOI CWP4-4N4S +No data found, error 404 +Downloaded DOI PK4S-U82Z +Downloaded DOI N6SC-9YG8 +Downloaded DOI A82V-2BRY +Downloaded DOI CYCR-HSNX +Downloaded DOI U7BU-KPK3 +Downloaded DOI 3ADZ-Z5Q2 +No data found, error 404 +Downloaded DOI YJ9V-YTS9 +Downloaded DOI 34WQ-KJMU +Downloaded DOI 5H4K-PD76 +Downloaded DOI 6JYE-DHN8 +Downloaded DOI Q89W-YNXT +No data found, error 404 +Downloaded DOI BA6Y-URQN +Downloaded DOI GRYB-3JVU +Downloaded DOI UWMC-6FZC +Downloaded DOI 42NT-7AJG +Downloaded DOI KPDW-NBA8 +Downloaded DOI S7AC-9E72 +Downloaded DOI 93VT-P9WQ +Downloaded DOI HEBM-8TJR +Downloaded DOI XBJW-CPMS +No data found, error 404 +Downloaded DOI N4PF-P5ZN +Downloaded DOI 7JD9-PGQF +Downloaded DOI VQ9C-92QZ +Downloaded DOI 9U5E-EKPM +Downloaded DOI 67D8-E5X6 +No data found, error 404 +Downloaded DOI 2QQX-JUYB +No data found, error 404 +Downloaded DOI T4NT-K8NP +No data found, error 404 +Downloaded DOI GZPE-3YXX +Downloaded DOI C5HW-63A8 +Downloaded DOI XWT9-PHDF +Downloaded DOI M4Y2-FQFM +Downloaded DOI 9MSK-QUQ6 +Downloaded DOI JQFJ-XRSB +Downloaded DOI WN4J-6KEH +Downloaded DOI VYRH-G5SB +No data found, error 404 +Downloaded DOI EEAQ-FE2F +Downloaded DOI 6PFR-K8UK +Downloaded DOI NQKP-F2AU +No data found, error 404 +Downloaded DOI MEG6-7YUD +Downloaded DOI 2NX8-CDWM +Downloaded DOI UCD6-FAYP +Downloaded DOI CQK2-YRDC +Downloaded DOI BQCK-H3YU +Downloaded DOI B5HK-9AJ9 +Downloaded DOI 93MS-YUGY +Downloaded DOI GEYS-GQU4 +Downloaded DOI PWR3-J3G6 +Downloaded DOI 9CSP-5E59 +Downloaded DOI XDM4-YJ7E +Downloaded DOI BKBM-ZHET +No data found, error 404 +Downloaded DOI RS87-B5V3 +Downloaded DOI WCDJ-VZGY +Downloaded DOI ZXDS-AWPT +Downloaded DOI UKEG-NWQ5 +Downloaded DOI PFDP-SBF9 +Downloaded DOI W7BX-GD2W +Downloaded DOI 8NJG-N27Q +Downloaded DOI UWEF-FWEH +Downloaded DOI 99JS-73DA +Downloaded DOI JQ5V-WNPJ +Downloaded DOI ST68-VKRZ +Downloaded DOI PPB3-HVXW +Downloaded DOI 3EDT-CSXC +Downloaded DOI YVFG-FKCN +No data found, error 404 +Downloaded DOI P4K3-WBZ8 +Downloaded DOI MAQS-NCGB +Downloaded DOI 88RY-CEG9 +Downloaded DOI VYMS-MCJJ +Downloaded DOI 3WAK-JKQE +Downloaded DOI NNA3-ZMTB +Downloaded DOI C548-Y94Y +No data found, error 404 +Downloaded DOI 6PDG-2Z9X +Downloaded DOI MUMC-DBG9 +Downloaded DOI 3VXT-HZKR +Downloaded DOI 2UMK-4AYF +Downloaded DOI ZTCC-3V48 +No data found, error 404 +Downloaded DOI YX4D-NYAG +Downloaded DOI QC3Q-XEF8 +Downloaded DOI 2MRN-HRMH +Downloaded DOI MECJ-HR3A +Downloaded DOI V3VA-P68T +Downloaded DOI F88M-P6ZY +Downloaded DOI JTZM-NRHT +Downloaded DOI UTCG-D6P8 +Downloaded DOI D6SE-WWKQ +Downloaded DOI 86PD-VMZV +No data found, error 404 +Downloaded DOI GTNW-A6QC +Downloaded DOI AG5S-8MA6 +Downloaded DOI RXDA-Y4SF +No data found, error 404 +Downloaded DOI KXEA-WMGH +Downloaded DOI 2YM3-WBW5 +Downloaded DOI Z68S-HFWE +Downloaded DOI YJNP-P9W9 +No data found, error 404 +Downloaded DOI Q8KQ-DWB5 +Downloaded DOI RKXV-NWKK +Downloaded DOI JKJ7-8BJS +Downloaded DOI HCJB-D2MT +Downloaded DOI CCQR-PXK2 +Downloaded DOI 7S58-NKJV +Downloaded DOI YUVJ-2UMS +Downloaded DOI J3PM-RVU3 +Downloaded DOI MD8A-ZA8K +Downloaded DOI KMHR-ZRXX +Downloaded DOI UP4E-KGEA +Downloaded DOI XHBQ-WW9E +Downloaded DOI T6RR-KA9K +Downloaded DOI 7KXF-X435 +Downloaded DOI QD29-RHH4 +Downloaded DOI 7BG6-7X5V +Downloaded DOI KWXP-HMDM +Downloaded DOI CM52-49YV +Downloaded DOI CA7K-VMCU +Downloaded DOI HGXY-E9M8 +Downloaded DOI UQ88-CWK5 +Downloaded DOI DV3W-H8CX +Downloaded DOI MAJ8-86XY +Downloaded DOI 53XH-4KFQ +Downloaded DOI EZ9W-TCJE +No data found, error 404 +Downloaded DOI 8M6F-ACWF +Downloaded DOI QSSN-PJH7 +Downloaded DOI 26WT-42QC +Downloaded DOI W37X-WHX4 +Downloaded DOI 4M9R-AWRS +Downloaded DOI RHDF-FZUX +Downloaded DOI CYS6-8ZJW +Downloaded DOI BRJV-DW7M +Downloaded DOI H2N2-97B5 +Downloaded DOI 5PNC-ND8H +Downloaded DOI MS8R-AD8P +Downloaded DOI MK5C-PRWY +Downloaded DOI EYSJ-2CWC +Downloaded DOI BV4D-NE7W +Downloaded DOI 2VTJ-VZZK +Downloaded DOI Q6CH-7M6W +Downloaded DOI STK9-AW9E +Downloaded DOI 2HHH-GY8V +Downloaded DOI AMYK-5ZJ5 +No data found, error 404 +Downloaded DOI VK3K-FRZQ +Downloaded DOI A9UA-2GPJ +Downloaded DOI KWSW-HZMH +Downloaded DOI DMUU-HKP5 +Downloaded DOI EY4Y-6Z8B +Downloaded DOI EXNH-G4HB +Downloaded DOI 3CNC-8MN6 +Downloaded DOI BWSW-MH4D +Downloaded DOI FGEV-D5FS +Downloaded DOI ZV96-7Y35 +No data found, error 404 +Downloaded DOI 4NXY-8PF7 +No data found, error 404 +No data found, error 404 +Downloaded DOI AQVT-Q4U6 +Downloaded DOI QGJJ-ZD7B +Downloaded DOI A2Z8-6U6H +Downloaded DOI FUDZ-EJ56 +Downloaded DOI KZV2-WAVT +Downloaded DOI RWUW-HH5T +Downloaded DOI M8UR-4KF9 +Downloaded DOI 2ZAT-QDJS +Downloaded DOI GPQS-NN5V +Downloaded DOI 6WZY-FCB8 +Downloaded DOI FHZ7-5QEV +Downloaded DOI N7EQ-SY46 +No data found, error 404 +Downloaded DOI 7Z3Y-7UDV +Downloaded DOI ZWN3-7GRJ +Downloaded DOI SBJP-HXCM +Downloaded DOI 4Y4C-JCGV +Downloaded DOI M6YY-SRH4 +Downloaded DOI 4DU3-65BS +No data found, error 404 +Downloaded DOI 5WPH-C5JY +Downloaded DOI VAVQ-P4ZB +Downloaded DOI WWAX-37TS +Downloaded DOI H7T2-RYQY +Downloaded DOI 8K37-P5JU +Downloaded DOI FGBW-B2ED +Downloaded DOI NKX6-UKVV +Downloaded DOI 8XYM-XVYY +Downloaded DOI 2X9S-VV6P +Downloaded DOI SEJT-XRKC +Downloaded DOI YGCN-2B4E +Downloaded DOI 4QFK-J33U +Downloaded DOI 5RQG-MHBM +Downloaded DOI RPNC-UA3V +Downloaded DOI QEJR-AJ7G +Downloaded DOI MJAE-ZAFR +Downloaded DOI PD2T-FWY2 +Downloaded DOI MBFU-9ZVA +Downloaded DOI RVQU-KAZN +Downloaded DOI YNEY-KT5Y +Downloaded DOI K2WT-FJ9Y +Downloaded DOI KEBG-FFMN +Downloaded DOI R4AQ-FMW9 +Downloaded DOI S4QS-YMEX +Downloaded DOI 9T7S-8NSR +Downloaded DOI C8UP-T74Z +Downloaded DOI NQ2H-GGJF +Downloaded DOI G2SV-GM4Z +Downloaded DOI 2HTX-CTM7 +Downloaded DOI Y252-B3Q5 +Downloaded DOI 7RWP-426B +Downloaded DOI CJUS-Q9QY +No data found, error 404 +No data found, error 404 +Downloaded DOI P9BQ-DEEK +Downloaded DOI 2PYC-AMRK +Downloaded DOI BBE3-2YR7 +Downloaded DOI D6U8-XYB6 +Downloaded DOI 4XFN-A74V +Downloaded DOI VSZM-XWNX +Downloaded DOI 435M-DAUY +Downloaded DOI SKTN-H46U +Downloaded DOI 3A72-9ZPS +Downloaded DOI 7AXQ-ETDY +Downloaded DOI ZPB7-ZFSP +Downloaded DOI 5653-FVM8 +Downloaded DOI HDJE-R459 +Downloaded DOI G5ZZ-PG4Q +Downloaded DOI JCAW-2QFU +Downloaded DOI RM74-XYQ8 +Downloaded DOI 6RWC-ERVG +Downloaded DOI REZ3-YW2H +Downloaded DOI EPVJ-WHYZ +Downloaded DOI DX6G-94NM +Downloaded DOI PZKC-VFY5 +Downloaded DOI 7QFJ-HKFR +Downloaded DOI BBHE-XB9U +Downloaded DOI 6V2T-TFJJ +Downloaded DOI YESU-NU7G +Downloaded DOI N8WN-CUXK +Downloaded DOI JS43-M4TG +Downloaded DOI TS69-8R59 +Downloaded DOI G8E3-R9PK +Downloaded DOI YZ9N-EY69 +Downloaded DOI 4QU2-UBDY +Downloaded DOI ZAJC-A9JQ +Downloaded DOI 78QE-XZCR +Downloaded DOI D7F4-UC6D +Downloaded DOI K6AB-KMU7 +No data found, error 404 +Downloaded DOI ZNQX-BNT5 +Downloaded DOI GMS5-V45D +Downloaded DOI 9BHP-FPHD +No data found, error 404 +Downloaded DOI NFUS-8EEP +Downloaded DOI EQ2B-MZRH +Downloaded DOI GD6H-QSXX +Downloaded DOI CUJA-J6CA +Downloaded DOI XX79-SWZT +Downloaded DOI 4G55-EBTV +Downloaded DOI P2F7-8ZVH +Downloaded DOI F9ED-TNY5 +Downloaded DOI NWBB-E5VX +Downloaded DOI P9VK-UAFU +Downloaded DOI SNZA-DC4R +Downloaded DOI D79A-AV4Q +Downloaded DOI S79G-B8MA +Downloaded DOI H8MJ-KDA4 +Downloaded DOI 6C9H-MRJ2 +Downloaded DOI 6Z5D-9ACJ +Downloaded DOI HT4G-4BBG +Downloaded DOI 5AB4-AXGT +Downloaded DOI VXRG-VJ55 +Downloaded DOI ZEUE-PVNW +Downloaded DOI AXAV-HV9Z +Downloaded DOI WE58-TR6S +No data found, error 404 +Downloaded DOI X7BM-6EVK +Downloaded DOI EQ9J-SMC2 +Downloaded DOI XRZN-RQQA +Downloaded DOI TYE7-Z7C9 +Downloaded DOI KU3B-JXUX +Downloaded DOI TXB5-5X62 +Downloaded DOI TDN9-669W +Downloaded DOI 6SD5-NZ6P +Downloaded DOI RSN3-SCDR +Downloaded DOI YD84-JPB6 +Downloaded DOI WMSZ-4X56 +Downloaded DOI B3JQ-4SQX +Downloaded DOI 54WG-ZTZT +Downloaded DOI 7DCS-2AJ4 +Downloaded DOI XVFG-7GXN +Downloaded DOI V3BK-W2B3 +Downloaded DOI Y8Z3-XP3G +Downloaded DOI 4GZ5-WTMG +Downloaded DOI XFCX-DPN5 +Downloaded DOI WS9B-VGP3 +No data found, error 404 +Downloaded DOI KFEF-Q9WQ +Downloaded DOI 9W69-4YAT +Downloaded DOI XFS6-7UUQ +Downloaded DOI 8WTV-NK6H +Downloaded DOI AF6W-UBHF +Downloaded DOI K5X7-UEHQ +Downloaded DOI S5MD-S6A4 +Downloaded DOI NWJZ-NS5M +Downloaded DOI 7P4G-C9N6 +Downloaded DOI EVR9-3USH +No data found, error 404 +Downloaded DOI GMBY-YNY2 +Downloaded DOI H9AJ-QA9P +No data found, error 404 +Downloaded DOI VQ46-9RE4 +Downloaded DOI W365-7QVF +Downloaded DOI 7DCJ-Z2FH +Downloaded DOI DYPS-HWDH +Downloaded DOI GHVF-ABGM +Downloaded DOI 49F3-6UHB +Downloaded DOI UPHA-E2HW +Downloaded DOI NUPS-2PYT +Downloaded DOI 5K43-PZHY +Downloaded DOI 2YTB-622M +No data found, error 404 +Downloaded DOI MHUT-GE7Y +Downloaded DOI MCYV-Z2DC +Downloaded DOI 8VWM-J68F +Downloaded DOI TN69-XQYB +No data found, error 404 +Downloaded DOI VWW2-HE43 +Downloaded DOI H9QM-DHV9 +Downloaded DOI TZ7J-G8BR +Downloaded DOI GN22-4AX3 +Downloaded DOI HMTJ-QQAJ +Downloaded DOI USPB-B4FG +Downloaded DOI 84EZ-WM8H +Downloaded DOI NP68-SJCW +Downloaded DOI VAM4-FQRK +Downloaded DOI 7MBR-CY4J +Downloaded DOI 38WA-4AVY +Downloaded DOI KP9B-PW4X +Downloaded DOI 2X6Y-WT2V +Downloaded DOI GV9T-5H79 +Downloaded DOI HXA8-F63W +Downloaded DOI CB2G-BJZD +Downloaded DOI FJKZ-KF3A +Downloaded DOI R7K7-XX83 +Downloaded DOI 52P7-9FC3 +Downloaded DOI JU2F-5BSX +Downloaded DOI QQGK-RJAC +Downloaded DOI 5SBH-9TYK +Downloaded DOI SA5G-ADT4 +Downloaded DOI AAFE-M8E7 +Downloaded DOI 5K3N-KZGJ +Downloaded DOI S26A-7UV4 +No data found, error 404 +Downloaded DOI 2W89-GRTV +Downloaded DOI TD48-R4N2 +No data found, error 404 +Downloaded DOI QHPP-DGEU +Downloaded DOI RYMW-JZ8C +Downloaded DOI WXTR-3V34 +Downloaded DOI EKUN-V7TT +Downloaded DOI R3WS-4VS9 +Downloaded DOI 3YF8-GTYK +Downloaded DOI F2CW-JZ8Z +Downloaded DOI V8HU-9W8D +Downloaded DOI XFGW-3CT2 +Downloaded DOI 5F2S-RWGD +Downloaded DOI FQXG-AMPD +Downloaded DOI B6XU-JUXV +Downloaded DOI 3XJJ-8JZJ +Downloaded DOI XADM-K4TB +Downloaded DOI GYQE-7E9P +Downloaded DOI 6KHT-4SYU +Downloaded DOI 2SVF-QJM6 +Downloaded DOI BMTQ-H3WB +Downloaded DOI FK6Z-YYVQ +Downloaded DOI JKX5-3BGR +Downloaded DOI ACTP-8MTP +Downloaded DOI RBFG-NNVP +Downloaded DOI QUKQ-FR6D +Downloaded DOI 6HPN-XHKZ +No data found, error 404 +Downloaded DOI AFYH-ERAQ +Downloaded DOI 7WS5-GFVD +Downloaded DOI SNQQ-HD94 +Downloaded DOI XWMP-T7CN +Downloaded DOI SN2N-VWUQ +Downloaded DOI UH75-BG3E +No data found, error 404 +Downloaded DOI JDZP-4GGD +Downloaded DOI 74RQ-AB9G +Downloaded DOI 9CK4-6Z87 +Downloaded DOI PA6U-78QE +Downloaded DOI PSWC-3PRE +Downloaded DOI SZ3B-UNKS +Downloaded DOI 3BT2-MUUH +Downloaded DOI RUFW-QTBG +Downloaded DOI RPMK-MADM +Downloaded DOI RS3J-YVVU +No data found, error 404 +Downloaded DOI QQGW-X9BP +Downloaded DOI TNEQ-24NV +Downloaded DOI Y4JA-HJ7N +Downloaded DOI T9Q8-KTCX +Downloaded DOI 8WSE-AAG8 +Downloaded DOI TVFD-7ZMF +Downloaded DOI CVH5-V7EC +Downloaded DOI P4Q3-UMY5 +Downloaded DOI Y6H5-S6T2 +Downloaded DOI Y8HZ-G9RS +Downloaded DOI KQFT-DEFA +Downloaded DOI 98GZ-EJAD +Downloaded DOI G2U2-DSZU +Downloaded DOI F42A-Q6WC +Downloaded DOI EYXM-RXT3 +No data found, error 404 +Downloaded DOI UXFT-V8MA +Downloaded DOI BUJE-5NW8 +Downloaded DOI NUMG-JQ9S +Downloaded DOI W5RZ-3S78 +Downloaded DOI JC8X-PUZF +Downloaded DOI 7ZPX-9JQW +Downloaded DOI STRJ-84SG +Downloaded DOI 2KW5-ECQV +Downloaded DOI C4R9-4FBJ +Downloaded DOI KDWZ-3GHA +Downloaded DOI RAGG-6XX3 +Downloaded DOI DHEX-5RY4 +No data found, error 404 +Downloaded DOI 8JQX-6CZ8 +Downloaded DOI XY92-4JCW +No data found, error 404 +Downloaded DOI 5TBP-GGK2 +Downloaded DOI W4H6-UV9H +Downloaded DOI QV5N-4RDQ +No data found, error 404 +Downloaded DOI K8U3-5YJG +Downloaded DOI B42E-EU5K +Downloaded DOI V58W-6ZED +Downloaded DOI MXA8-6R6J +Downloaded DOI SE7X-AXQF +Downloaded DOI PPH7-G38B +Downloaded DOI 5S2G-B3PR +Downloaded DOI ZZGM-D4YK +No data found, error 404 +Downloaded DOI Y76F-6W3M +Downloaded DOI NT8B-VYE3 +Downloaded DOI CHZA-YJ33 +Downloaded DOI QHKP-6QC5 +Downloaded DOI TX3Q-697J +Downloaded DOI JUMH-EQR5 +Downloaded DOI FZ7K-HBCU +Downloaded DOI HPJ7-FNQD +Downloaded DOI 7K6H-JP94 +Downloaded DOI BH2P-SN6E +Downloaded DOI H4CW-FUZF +Downloaded DOI BH3G-4FZF +Downloaded DOI NC7V-BZHY +Downloaded DOI 6WXY-AABT +Downloaded DOI C2YZ-TCB8 +Downloaded DOI 6UQU-F2KN +Downloaded DOI UXFV-88DM +Downloaded DOI 2H46-RZZH +Downloaded DOI TTDY-HA8R +Downloaded DOI XKY8-JRXN +Downloaded DOI DQAY-H8TB +Downloaded DOI Q7CU-HXY3 +No data found, error 404 +Downloaded DOI FTHX-ZTSZ +Downloaded DOI RGNJ-XC9C +No data found, error 404 +Downloaded DOI ZXTY-M8M2 +Downloaded DOI JDVP-PSPW +Downloaded DOI 2GD5-HEXK +Downloaded DOI WPW7-8SBW +Downloaded DOI SUK2-N2T5 +Downloaded DOI WS83-SKJB +Downloaded DOI WRDW-2NTM +Downloaded DOI EKZ2-DYHP +No data found, error 404 +Downloaded DOI MZDK-6RWN +Downloaded DOI J4G8-6NMB +Downloaded DOI 5HVB-6PV7 +Downloaded DOI 4YE7-5Q84 +Downloaded DOI BC4W-ZD54 +Downloaded DOI ZHQK-A4Y6 +Downloaded DOI QBF7-5HKK +Downloaded DOI 6EJ8-UNDE +Downloaded DOI RKA9-JVR3 +No data found, error 404 +Downloaded DOI 5SB3-J52J +Downloaded DOI JPHR-Z6YD +Downloaded DOI NB9N-6UNR +Downloaded DOI 8JVG-66JZ +Downloaded DOI WKRP-7FYJ +Downloaded DOI JK9P-JK4K +Downloaded DOI FT85-UNA6 +Downloaded DOI AME9-9EGX +Downloaded DOI N7T6-FZ6R +Downloaded DOI YQKM-T245 +Downloaded DOI FPZH-C9G9 +Downloaded DOI AMEG-QECX +No data found, error 404 +No data found, error 404 +Downloaded DOI JKBF-V4C4 +Downloaded DOI K2CW-TGZM +Downloaded DOI 8PAN-M4XX +Downloaded DOI AG7S-ACAH +No data found, error 404 +No data found, error 404 +Downloaded DOI BPD5-N3P9 +Downloaded DOI 95ZB-AFMG +Downloaded DOI 72BW-6GJ4 +Downloaded DOI ZAHS-RVE4 +Downloaded DOI 3M22-6SNS +Downloaded DOI G9YM-4S47 +No data found, error 404 +No data found, error 404 +Downloaded DOI 45U9-W7SY +Downloaded DOI RFCV-4DNK +Downloaded DOI K6PJ-Q5NR +Downloaded DOI UNVE-BA9Y +Downloaded DOI W7EH-P5TX +Downloaded DOI 96E8-8MEX +Downloaded DOI KVHG-MKEJ +Downloaded DOI HSF7-DM4T +Downloaded DOI CBX4-TRW4 +Downloaded DOI EYBE-NSHZ +Downloaded DOI J8NR-ZWKZ +Downloaded DOI RFWW-TVVM +Downloaded DOI 92T8-G67M +Downloaded DOI YNEB-Q8T4 +No data found, error 404 +Downloaded DOI TPZZ-NUSD +Downloaded DOI V6Z3-JSVW +Downloaded DOI FQ4M-UVK6 +Downloaded DOI FYAS-B3KP +Downloaded DOI MXM6-FK7H +Downloaded DOI YQ5F-PB6Z +Downloaded DOI NZMC-BD7M +Downloaded DOI SHEE-PFXK +Downloaded DOI NQMY-SZRE +Downloaded DOI H8AX-KGGE +Downloaded DOI ZHN9-2NCW +Downloaded DOI KCQ7-2D2S +Downloaded DOI BFQF-6T53 +No data found, error 404 +Downloaded DOI 9MK8-ETXR +Downloaded DOI 6N7T-6VAD +Downloaded DOI VYF9-D8TG +Downloaded DOI HRVX-TKN8 +No data found, error 404 +Downloaded DOI 2SWX-KG4T +Downloaded DOI 6KMD-9VUZ +No data found, error 404 +Downloaded DOI P5HP-F7JT +Downloaded DOI AAR9-MTR3 +Downloaded DOI 9JCN-KE7U +Downloaded DOI X8SP-6AGJ +Downloaded DOI DPBF-4T9G +Downloaded DOI TDP8-ABMT +Downloaded DOI 8SKX-QSG3 +Downloaded DOI ZDNA-PAVQ +Downloaded DOI 3U7A-P6BR +Downloaded DOI XKEF-59YX +No data found, error 404 +Downloaded DOI KJZA-96S8 +Downloaded DOI 894S-ZEFR +No data found, error 404 +Downloaded DOI B8VF-3H8P +Downloaded DOI V5EC-7ZYH +Downloaded DOI DE4V-VWCW +Downloaded DOI QMUV-XZFZ +Downloaded DOI FZTV-EPKH +No data found, error 404 +No data found, error 404 +Downloaded DOI F4RN-5DCP +Downloaded DOI VHYU-RRTA +Downloaded DOI 97HK-EUXK +Downloaded DOI DCSS-QCSQ +Downloaded DOI VGSQ-7X5Y +Downloaded DOI PJP9-DVN2 +Downloaded DOI AEPN-RA3F +Downloaded DOI 9UBM-HCFK +Downloaded DOI TSCM-TUS2 +Downloaded DOI SXCN-DHVA +Downloaded DOI S9C4-5KXM +Downloaded DOI 9R54-ZE2T +Downloaded DOI RK6J-F7DB +Downloaded DOI U75E-KUBU +Downloaded DOI XYMY-BPAM +Downloaded DOI H5XK-R54E +Downloaded DOI 463S-4CF7 +Downloaded DOI 98T6-MSG9 +Downloaded DOI CPAH-UAJ4 +Downloaded DOI FRPN-V7CQ +Downloaded DOI 738N-5FRD +No data found, error 404 +Downloaded DOI XGC5-3FTY +Downloaded DOI KBW5-7UY5 +No data found, error 404 +Downloaded DOI N9FQ-5HEQ +Downloaded DOI 5HJC-TDEA +Downloaded DOI BNR5-NFVV +Downloaded DOI RHEK-VVDX +Downloaded DOI CMB7-XDWQ +Downloaded DOI YCFN-VN4X +Downloaded DOI BC6X-WKRC +Downloaded DOI 49P4-67NU +No data found, error 404 +No data found, error 404 +Downloaded DOI SEX7-ZDBN +Downloaded DOI VGMW-JDTS +Downloaded DOI YSHU-WYD5 +Downloaded DOI QH8M-X2VU +Downloaded DOI NND8-8BUA +Downloaded DOI UYRD-J4WZ +No data found, error 404 +Downloaded DOI K6DF-KWVK +Downloaded DOI 46JY-YURV +Downloaded DOI BS62-RSZK +Downloaded DOI QZG9-THDB +No data found, error 404 +Downloaded DOI B6D4-B7VV +Downloaded DOI QGBT-MFWD +Downloaded DOI NPX5-8FHQ +Downloaded DOI SESB-FSV2 +Downloaded DOI 7SVX-CWTP +Downloaded DOI MCRD-G7MV +Downloaded DOI X39Y-3235 +Downloaded DOI EC3P-Q74K +Downloaded DOI FFNM-S3EA +Downloaded DOI TK6X-HXK2 +Downloaded DOI C9J3-PBKQ +Downloaded DOI MHUH-FKDR +Downloaded DOI PFKS-XC7R +Downloaded DOI CKHK-M6PR +Downloaded DOI G7ND-B436 +Downloaded DOI UACB-SX7E +Downloaded DOI 7DD7-HK28 +Downloaded DOI 2XXZ-CDA7 +Downloaded DOI NXRN-MBV7 +Downloaded DOI Y2AP-NC3S +Downloaded DOI RXZC-36RH +Downloaded DOI YTGT-8KTP +Downloaded DOI XRWR-S5EG +Downloaded DOI FW6W-WAQ5 +Downloaded DOI V4SY-SMJM +Downloaded DOI ARBX-RDMS +Downloaded DOI HWVT-49ZZ +Downloaded DOI BCTH-VAFJ +Downloaded DOI TH42-AQBW +Downloaded DOI XRY5-ESUQ +Downloaded DOI DRT4-YRSA +Downloaded DOI NN5H-8PDH +Downloaded DOI YEK9-ZWJF +Downloaded DOI WGG5-UXTA +Downloaded DOI 3QEF-75Y5 +Downloaded DOI KWYC-68KC +Downloaded DOI PUKU-YKJ6 +No data found, error 404 +Downloaded DOI MYMX-VCVC +Downloaded DOI 4TRK-XM2E +Downloaded DOI FVR8-YZWY +Downloaded DOI 8YA7-CQ69 +Downloaded DOI F99V-P4ZP +Downloaded DOI XKAP-FB34 +Downloaded DOI DR74-EANN +Downloaded DOI 5YMK-QN8V +No data found, error 404 +Downloaded DOI HHEA-VJ7P +Downloaded DOI XGE9-EQB3 +Downloaded DOI 3Q2J-Z3QD +Downloaded DOI 28XB-VEBP +Downloaded DOI SAZC-JW9U +Downloaded DOI FY5V-MJBA +Downloaded DOI 64DD-PXAD +Downloaded DOI RK4B-UY3Y +Downloaded DOI 48WN-SBXW +Downloaded DOI M3TP-DDWQ +Downloaded DOI N9EF-NS6X +Downloaded DOI ATYX-KM8R +Downloaded DOI A32B-WNTR +Downloaded DOI XS95-WQ7R +Downloaded DOI W9Z7-W7FT +Downloaded DOI QMKU-9DE4 +Downloaded DOI MKY5-PDJQ +Downloaded DOI PKJ5-HGPM +Downloaded DOI NX94-KVQH +Downloaded DOI DGFR-YASR +Downloaded DOI WYNR-SZ46 +Downloaded DOI H8NA-AHMS +Downloaded DOI YZRR-WZCT +Downloaded DOI KQ6N-TQBP +Downloaded DOI 2JU9-9J82 +Downloaded DOI 3A7C-2VP5 +Downloaded DOI CYBJ-RVFN +Downloaded DOI 4YSD-PD7K +Downloaded DOI 95N7-Q72T +Downloaded DOI C4AZ-U2YF +Downloaded DOI VM24-T8BF +No data found, error 404 +No data found, error 404 +Downloaded DOI MH6F-39KQ +Downloaded DOI FUHJ-MSC2 +Downloaded DOI ARRA-PK49 +Downloaded DOI U3EY-K3SH +No data found, error 404 +No data found, error 404 +Downloaded DOI PWXV-BC97 +Downloaded DOI 7DXB-T568 +Downloaded DOI MN3C-6TZV +Downloaded DOI F37K-8HDC +Downloaded DOI U7XS-47BA +Downloaded DOI GJDM-JSUP +Downloaded DOI KEAD-7PHN +Downloaded DOI SNPX-EPEP +Downloaded DOI RB8U-88A9 +Downloaded DOI RZZR-N57T +Downloaded DOI BGHP-ZV3M +Downloaded DOI D64Y-SWSR +Downloaded DOI 7DCE-GW2T +Downloaded DOI 6H47-53ER +Downloaded DOI 2RD8-GHWV +Downloaded DOI VWH5-4JMF +Downloaded DOI DER9-RS72 +No data found, error 404 +Downloaded DOI 6ASJ-76F7 +Downloaded DOI Z7JT-6AW4 +Downloaded DOI 59FU-8DYU +Downloaded DOI KC4U-8HD2 +Downloaded DOI TQR8-3R7F +Downloaded DOI S8WT-R7J9 +Downloaded DOI BDJB-AATK +Downloaded DOI CWGN-JGBE +Downloaded DOI XB69-NYWW +Downloaded DOI JPWT-3M4H +Downloaded DOI QM9C-ANXN +Downloaded DOI 8ER3-CVTT +Downloaded DOI VVZP-W9YS +Downloaded DOI D3ZF-AAAZ +Downloaded DOI UQW8-89W3 +Downloaded DOI 7B9V-8DRS +Downloaded DOI 3UU5-9SAA +Downloaded DOI TZ3B-8GW2 +Downloaded DOI BK4J-UPR2 +Downloaded DOI CZ2R-4958 +Downloaded DOI H7ER-GW5P +Downloaded DOI 9784-P7T2 +Downloaded DOI YWGG-NW7S +Downloaded DOI T7A5-KY38 +Downloaded DOI KD7H-KNK7 +Downloaded DOI XXZU-YGT4 +Downloaded DOI HGBQ-HV5A +Downloaded DOI HZ39-DDAT +Downloaded DOI FGE3-U2JM +Downloaded DOI DW9J-F6UD +Downloaded DOI UR98-P5WK +No data found, error 404 +Downloaded DOI GCK8-CDKH +Downloaded DOI EBU4-U2HK +Downloaded DOI 7VBH-ZA5A +Downloaded DOI F95D-G4FC +Downloaded DOI FASP-PJ46 +Downloaded DOI 4XGP-XMD7 +Downloaded DOI CYJH-BBU4 +Downloaded DOI AKNQ-BG6C +No data found, error 404 +Downloaded DOI QET6-YZA5 +Downloaded DOI XA6C-TZ8P +Downloaded DOI FUP3-5SEB +Downloaded DOI 3846-2224 +Downloaded DOI PFR9-NP4X +No data found, error 404 +Downloaded DOI GSYQ-GB54 +Downloaded DOI SYGQ-C7UP +Downloaded DOI XASJ-C5K6 +Downloaded DOI YVU6-JMEB +Downloaded DOI STM8-PM2N +Downloaded DOI PWX5-PWH8 +Downloaded DOI BUK4-6Q9V +No data found, error 404 +Downloaded DOI 3R5E-8H35 +No data found, error 404 +Downloaded DOI UHME-FGA3 +Downloaded DOI 77WB-BUGK +Downloaded DOI 44JU-BDRA +Downloaded DOI ER8V-B5RJ +Downloaded DOI CEM5-UCGM +Downloaded DOI A79N-HTK7 +Downloaded DOI J2MF-8PAS +Downloaded DOI AXGG-N795 +Downloaded DOI NK5Z-JF67 +Downloaded DOI FKCH-F2JT +Downloaded DOI FJ3V-NR6E +Downloaded DOI AGBC-Q3UG +Downloaded DOI YW8D-Y5DE +Downloaded DOI KVH9-UMWP +Downloaded DOI 7VSQ-J8EY +Downloaded DOI HPYZ-XDRY +Downloaded DOI 7PSX-AHV5 +Downloaded DOI 7VAX-J34C +Downloaded DOI TJYC-ZQMU +Downloaded DOI XP9Y-S43V +Downloaded DOI NB6B-QZSU +Downloaded DOI QRB5-3Z8J +Downloaded DOI HN3K-PFB8 +Downloaded DOI AYG4-TXZ7 +Downloaded DOI 5H79-FECB +Downloaded DOI Q7XD-YN3Y +Downloaded DOI XF2M-Q9NW +Downloaded DOI 7EXC-HF86 +Downloaded DOI EUCK-XK3D +Downloaded DOI AGRC-EKKW +Downloaded DOI S682-7PVA +Downloaded DOI WV27-UFMJ +Downloaded DOI BQNJ-9AQ7 +Downloaded DOI EJGG-4TGM +Downloaded DOI 8TYA-AT93 +Downloaded DOI CPH8-RB2X +Downloaded DOI Z2Q6-PTAA +Downloaded DOI MFDM-XVKX +Downloaded DOI XAYT-HHYU +Downloaded DOI X5DW-CMU3 +Downloaded DOI RR5S-YJTF +Downloaded DOI 7Y5B-2TRZ +Downloaded DOI XTM4-PAXC +Downloaded DOI 3E47-HGTD +Downloaded DOI W56J-Y6V2 +Downloaded DOI WYFM-YTHM +Downloaded DOI EFGG-SP26 +Downloaded DOI HTPX-3CMS +Downloaded DOI FAEY-R4W7 +No data found, error 404 +Downloaded DOI VM5A-ZQBS +No data found, error 404 +No data found, error 404 +Downloaded DOI RX49-Q7BN +Downloaded DOI JK8X-MPN8 +Downloaded DOI RSRD-U3J6 +Downloaded DOI 5VBE-DQP5 +Downloaded DOI JY72-JFW6 +Downloaded DOI W782-CASE +Downloaded DOI SCEG-UQPY +Downloaded DOI TYCY-3PF5 +Downloaded DOI JVKT-3Y4U +Downloaded DOI FVM6-BZ58 +Downloaded DOI V4HE-UJTU +Downloaded DOI T5MR-PWQR +Downloaded DOI HNPZ-A9F9 +Downloaded DOI N4XB-SVTN +Downloaded DOI GJTW-RPEF +Downloaded DOI S9QY-WFQR +Downloaded DOI 27XJ-74EQ +Downloaded DOI SN9K-CT47 +Downloaded DOI FJTN-GASK +Downloaded DOI 53SV-KJ7R +Downloaded DOI PSSJ-XTV9 +Downloaded DOI QH8P-UMVP +Downloaded DOI 5E9Y-RZ4Z +Downloaded DOI RTB7-98F3 +Downloaded DOI YQ84-HPRH +Downloaded DOI QXF8-6U64 +No data found, error 404 +Downloaded DOI TA4X-JZJA +Downloaded DOI 3B5F-KYAW +Downloaded DOI BJ4D-Q92C +Downloaded DOI 8NWN-PUHB +Downloaded DOI XUDU-AADH +Downloaded DOI QFHD-E7MY +Downloaded DOI R2QM-E928 +Downloaded DOI HQH8-8R96 +Downloaded DOI GFRP-KP83 +Downloaded DOI K6G4-84UT +Downloaded DOI Z2N6-8CMR +Downloaded DOI 3U4Q-3K9G +No data found, error 404 +Downloaded DOI VQBR-YJNE +Downloaded DOI GCFC-7SCJ +Downloaded DOI W74H-WZG5 +Downloaded DOI JKBT-W2J7 +Downloaded DOI H6JR-4Z3J +Downloaded DOI JHN6-G4XJ +Downloaded DOI 7S9Q-GQ9D +Downloaded DOI KH4Z-7JWK +Downloaded DOI 69CF-JNG8 +Downloaded DOI J4EE-9ED2 +Downloaded DOI ZXZQ-KXXV +Downloaded DOI 42SR-D7D6 +No data found, error 404 +Downloaded DOI 3FXP-EPEV +Downloaded DOI X5BE-NCX6 +No data found, error 404 +Downloaded DOI BJZ2-3537 +Downloaded DOI WFQ6-F3AZ +Downloaded DOI DHTA-NU9N +Downloaded DOI CD44-SVMH +No data found, error 404 +No data found, error 404 +Downloaded DOI HHQ4-47BP +Downloaded DOI C2YR-YFEZ +Downloaded DOI 6HUU-YTEG +Downloaded DOI SHJV-HUX3 +Downloaded DOI 6AN8-XM3T +Downloaded DOI QW8J-EJ43 +Downloaded DOI UM77-2RHU +Downloaded DOI 7YTJ-7SH7 +Downloaded DOI D2CA-V2R2 +Downloaded DOI 9K6S-D6A9 +No data found, error 404 +Downloaded DOI KNMK-ESW5 +Downloaded DOI EAQ2-69M9 +No data found, error 404 +Downloaded DOI CP5W-UZH7 +No data found, error 404 +Downloaded DOI TZXR-EBSR +Downloaded DOI XAAD-PQUH +Downloaded DOI 2YPB-YP9F +Downloaded DOI YD2J-SCX7 +Downloaded DOI 2SE5-BCSX +Downloaded DOI NZFM-6HEP +Downloaded DOI WJAQ-PGVK +Downloaded DOI 49QA-W8H6 +Downloaded DOI Y2C2-FXV9 +Downloaded DOI 9AYP-D33D +Downloaded DOI 68NU-J9B9 +No data found, error 404 +Downloaded DOI CQ9F-A9G9 +Downloaded DOI NB2Y-32FS +Downloaded DOI AKSH-SXEY +Downloaded DOI UU2X-869S +Downloaded DOI W3FF-6FKM +Downloaded DOI V3AS-HJ8P +Downloaded DOI AQPP-87YH +Downloaded DOI 8Z5M-DFG2 +No data found, error 404 +Downloaded DOI NKJ6-YBXW +Downloaded DOI Z3XM-DJXJ +Downloaded DOI HAUT-SWE6 +Downloaded DOI 37AS-D8RP +Downloaded DOI 8UC9-Q3ZD +Downloaded DOI 55CC-BQRR +Downloaded DOI MYAF-5VWE +Downloaded DOI EPYS-SRR4 +Downloaded DOI KW2R-EHAE +Downloaded DOI 3DBV-XMEY +Downloaded DOI FWVZ-5DNK +Downloaded DOI 6CXH-GS6A +Downloaded DOI 33TG-Y26C +Downloaded DOI 4BJ9-MTDE +Downloaded DOI V8KE-RAF3 +Downloaded DOI KWQH-ZF2J +Downloaded DOI DEVF-MCGN +Downloaded DOI 928P-CD8Y +Downloaded DOI STD6-DQ5B +Downloaded DOI 2ZBB-YAA3 +Downloaded DOI GS4W-58PQ +Downloaded DOI NVF2-EE8B +Downloaded DOI 3TZ3-H8VC +Downloaded DOI J2PQ-YRDN +Downloaded DOI KPC2-G6E3 +Downloaded DOI JT3F-UQYX +Downloaded DOI HN55-PB29 +Downloaded DOI HXKG-UHS5 +No data found, error 404 +Downloaded DOI VPR2-42WF +Downloaded DOI G3PW-9D9C +Downloaded DOI M9SW-RDFU +Downloaded DOI NWDH-9C8F +Downloaded DOI PTJQ-ZUHE +Downloaded DOI N3CX-DGN4 +Downloaded DOI ACXD-BK8C +Downloaded DOI S5EN-J8DR +No data found, error 404 +No data found, error 404 +Downloaded DOI DADQ-96AE +Downloaded DOI 84DZ-RKMM +Downloaded DOI PNG9-VN2B +Downloaded DOI 8DRX-G2HN +Downloaded DOI T67H-3ZE5 +Downloaded DOI V82Q-4VCD +Downloaded DOI XF45-SHNC +Downloaded DOI CWY2-FXAA +Downloaded DOI K8K7-WKG6 +Downloaded DOI EAAT-VHKM +Downloaded DOI 2N7Q-NGNN +Downloaded DOI TK3V-NAES +Downloaded DOI RGYH-3RG4 +Downloaded DOI B6NG-HP68 +Downloaded DOI 9AQM-RQNT +Downloaded DOI 3PYW-2685 +Downloaded DOI 5VC4-BADK +Downloaded DOI MX72-7Z2J +Downloaded DOI D5C6-UHDZ +Downloaded DOI FY68-Q493 +Downloaded DOI UZRG-NCS5 +Downloaded DOI 55ZT-B4V2 +Downloaded DOI B9C7-SRXK +Downloaded DOI C99W-GVE8 +Downloaded DOI V2H7-SGUR +Downloaded DOI DJYD-CQS2 +Downloaded DOI MJ9N-EFXS +Downloaded DOI M5MA-49ED +Downloaded DOI 5MDD-SHP5 +Downloaded DOI P9RS-ZE4G +Downloaded DOI KQBR-T5JM +Downloaded DOI YHWD-EX4H +Downloaded DOI E42G-EN7C +Downloaded DOI UQV6-4YMJ +Downloaded DOI TZA4-HPFZ +Downloaded DOI ZCS2-56KR +Downloaded DOI PY6X-XK83 +Downloaded DOI TKWH-PFAX +Downloaded DOI 9XJM-4GN9 +Downloaded DOI KEWE-VBP5 +Downloaded DOI SHW7-YK6A +Downloaded DOI 8K7D-773S +Downloaded DOI 7B6V-WGTQ +Downloaded DOI 9NHK-8A6B +Downloaded DOI V38U-6J6D +Downloaded DOI 3N49-4RQH +Downloaded DOI 6C7S-7CE2 +Downloaded DOI UH3K-VKZE +Downloaded DOI QWT9-35XZ +No data found, error 404 +No data found, error 404 +Downloaded DOI CUGV-XRG8 +Downloaded DOI AZZY-ASYD +Downloaded DOI FYHU-VPUR +Downloaded DOI BHVE-6HYA +Downloaded DOI AGDP-ZSKP +No data found, error 404 +Downloaded DOI 2Q88-E8QG +Downloaded DOI P9Y8-DBJM +Downloaded DOI XH83-UH52 +Downloaded DOI HRBX-CTW6 +Downloaded DOI 76HC-YTV5 +No data found, error 404 +Downloaded DOI 2MF2-3X96 +Downloaded DOI DZKP-B9D4 +No data found, error 404 +Downloaded DOI XGT6-2JUT +Downloaded DOI E4QP-DTA6 +No data found, error 404 +No data found, error 404 +Downloaded DOI JA9D-4YHY +Downloaded DOI U9GH-RN42 +Downloaded DOI WP4M-9W9Q +Downloaded DOI KDVN-C8U2 +Downloaded DOI YFAT-QVDC +Downloaded DOI QKS5-F498 +Downloaded DOI EE8D-EFP5 +Downloaded DOI 5N8Y-RAXC +Downloaded DOI ZTV8-5KDU +Downloaded DOI J4DX-AMRH +Downloaded DOI PBCT-3X74 +Downloaded DOI 6H5M-2PDR +No data found, error 404 +Downloaded DOI XDMC-WJPM +Downloaded DOI CM2K-C359 +Downloaded DOI 2ZKE-6AEX +Downloaded DOI BSDJ-ZDBS +Downloaded DOI 7A6U-QREQ +Downloaded DOI UXQE-NRY3 +Downloaded DOI YMA6-FP7V +Downloaded DOI HJT7-CQBY +Downloaded DOI 6N4Z-H8JJ +Downloaded DOI BB2G-V9Z2 +Downloaded DOI 4V7T-MYUA +Downloaded DOI E85N-3HJX +Downloaded DOI B2R6-ZFAW +Downloaded DOI TCU2-FMRF +Downloaded DOI GA2D-7KDG +Downloaded DOI 5ZEK-ZRY4 +No data found, error 404 +Downloaded DOI DSFH-A9JX +Downloaded DOI PEFU-EVG2 +Downloaded DOI HYJH-2VJB +Downloaded DOI WX9T-HNUA +Downloaded DOI 8CV5-XQV4 +Downloaded DOI FUE7-2728 +Downloaded DOI WCRC-R4Q5 +Downloaded DOI 922P-GAHW +No data found, error 404 +Downloaded DOI 3TQ9-XC6R +Downloaded DOI TEXN-GS3E +Downloaded DOI 9F7X-2TG6 +Downloaded DOI KX4N-M475 +Downloaded DOI CEHH-SKVP +Downloaded DOI D34Y-9TYU +Downloaded DOI X6T9-Z7BH +Downloaded DOI A4K8-TR8Q +Downloaded DOI A54U-XTAJ +Downloaded DOI VP5N-97P4 +Downloaded DOI VX6H-KUDG +Downloaded DOI JSEG-FW3K +Downloaded DOI 6TUH-FCKP +Downloaded DOI RN55-SQQE +Downloaded DOI VA6D-KUXQ +Downloaded DOI EK6E-YXDC +Downloaded DOI 4AK3-AFEE +Downloaded DOI A9XK-NVWH +Downloaded DOI PSA4-XXVT +Downloaded DOI V7JU-ANV8 +Downloaded DOI G7FR-EXXH +Downloaded DOI 7TUH-HSZF +Downloaded DOI NDDX-7TKT +Downloaded DOI CVZM-VA6B +Downloaded DOI D33M-P63B +No data found, error 404 +Downloaded DOI X79C-AJZD +Downloaded DOI ARJB-NPJV +Downloaded DOI TKPY-6WF3 +No data found, error 404 +No data found, error 404 +Downloaded DOI AZDV-XM7V +Downloaded DOI XM9J-Q5R5 +Downloaded DOI FBBP-FHXB +Downloaded DOI FBVU-UBNV +No data found, error 404 +Downloaded DOI YD5K-D7F2 +No data found, error 404 +Downloaded DOI 5NW2-6HZD +Downloaded DOI W3FR-Y7NK +No data found, error 404 +Downloaded DOI XBSH-ZW8S +Downloaded DOI 4MPJ-Z5JT +Downloaded DOI EGY8-GTST +Downloaded DOI NMXS-G2YW +No data found, error 404 +Downloaded DOI JZTQ-KBYM +Downloaded DOI QJ9B-ECK9 +Downloaded DOI SJE8-KY7T +Downloaded DOI F95C-9W44 +Downloaded DOI RH3Q-37G8 +Downloaded DOI QYPQ-B39T +Downloaded DOI R5UY-FFZA +Downloaded DOI 2ZG4-ZYHU +Downloaded DOI TBR9-JDZM +No data found, error 404 +Downloaded DOI 8PB3-H5KV +Downloaded DOI 4WTC-B496 +Downloaded DOI WV3R-JC56 +No data found, error 404 +Downloaded DOI CSVW-PACS +Downloaded DOI H2PZ-SG59 +Downloaded DOI WX92-PQM4 +Downloaded DOI 43FA-5BJV +Downloaded DOI 9JQC-94QJ +Downloaded DOI YJHC-VFEF +Downloaded DOI W3HC-BNG2 +Downloaded DOI 84JN-CNSP +Downloaded DOI PKTJ-62WN +Downloaded DOI 3SJN-R3WB +Downloaded DOI 2BQZ-68Y5 +Downloaded DOI TA5J-6T6T +Downloaded DOI 4HFH-3ZDQ +Downloaded DOI 2QUH-VX72 +Downloaded DOI ZZ9Y-R37W +Downloaded DOI H5P2-8493 +Downloaded DOI ZBRV-6ZEH +Downloaded DOI 6TDZ-CUAR +Downloaded DOI 4FZF-MQ5A +Downloaded DOI 2EMV-B4PE +Downloaded DOI G6Q2-HXF6 +Downloaded DOI PD6T-7J3X +Downloaded DOI FQTT-HG2E +Downloaded DOI 4KXP-7599 +Downloaded DOI EFHA-NU2Y +Downloaded DOI G6TC-QU8W +Downloaded DOI TCEC-5DNW +Downloaded DOI RC3S-ZSUY +Downloaded DOI PQH2-UKSD +Downloaded DOI AS7H-2CUW +Downloaded DOI 4Z3F-5WA9 +Downloaded DOI GWGS-HGAV +Downloaded DOI A56H-XVH3 +Downloaded DOI 9W23-EHXQ +Downloaded DOI Y3XH-VGCX +Downloaded DOI 5WD4-2ATU +Downloaded DOI G32K-ZNYY +Downloaded DOI URVC-GG6Q +Downloaded DOI XD2N-DTGY +Downloaded DOI FZJV-SZUU +Downloaded DOI MK6T-88EV +Downloaded DOI G2CK-6BT8 +Downloaded DOI 4BZ7-D7W5 +Downloaded DOI CNB8-CW2Z +Downloaded DOI 6W4F-CJJG +No data found, error 404 +Downloaded DOI 4VF9-C83N +Downloaded DOI 9TU5-E9MB +Downloaded DOI NYEZ-MBW3 +Downloaded DOI QNVE-YT2T +Downloaded DOI CH2E-6XE7 +Downloaded DOI M88K-GEE2 +No data found, error 404 +Downloaded DOI CMQ8-SHJ3 +No data found, error 404 +No data found, error 404 +Downloaded DOI MFJF-346Z +Downloaded DOI 78G3-PYVM +Downloaded DOI Y5WM-PRTE +Downloaded DOI AEHT-ANFS +Downloaded DOI C43H-AN8B +Downloaded DOI 7TAT-J6NM +Downloaded DOI FXQJ-XKVS +Downloaded DOI TMXB-U5XB +Downloaded DOI XHFF-AUSG +Downloaded DOI AZDJ-4XB6 +Downloaded DOI 8PAP-QQST +Downloaded DOI DANC-N8ZW +Downloaded DOI NWMP-YWAK +Downloaded DOI XRY9-C7S8 +Downloaded DOI 9SGP-WYR9 +Downloaded DOI K9G9-DHCH +Downloaded DOI QT6W-AZEB +Downloaded DOI NR3D-PWEH +Downloaded DOI 3EFT-SAFW +Downloaded DOI 2RWD-A6UJ +Downloaded DOI 44DA-CKDR +No data found, error 404 +Downloaded DOI 8MPA-TGP6 +Downloaded DOI MBTU-TYEN +Downloaded DOI 5WAV-2MEN +Downloaded DOI V378-HY32 +Downloaded DOI SM6H-82W6 +No data found, error 404 +Downloaded DOI FEZG-4E37 +Downloaded DOI RSKR-9TMS +Downloaded DOI JVCR-PQBG +Downloaded DOI 6BDY-Q342 +Downloaded DOI YDZY-YVW5 +Downloaded DOI VSGH-YVJY +Downloaded DOI ZXYE-XY6N +Downloaded DOI GCB7-DMQZ +Downloaded DOI R29V-ARD8 +Downloaded DOI 5AD7-S34N +Downloaded DOI U9JY-PTRH +Downloaded DOI EZM5-UUDS +Downloaded DOI VFJD-AX5S +Downloaded DOI SM96-QCMC +Downloaded DOI BRY4-WBX8 +Downloaded DOI GGYG-J2TE +No data found, error 404 +Downloaded DOI BRBJ-GQWN +Downloaded DOI ETDT-H9SB +Downloaded DOI 2KNC-TPCA +Downloaded DOI 4RWH-H3BE +Downloaded DOI UKFD-NH88 +Downloaded DOI EAUS-9QWC +Downloaded DOI 4U5P-SN36 +No data found, error 404 +Downloaded DOI 8GF8-3JQU +Downloaded DOI WK6X-VMWU +Downloaded DOI CY4X-U76C +Downloaded DOI VV6H-2U9M +Downloaded DOI S9QC-C22E +Downloaded DOI PUS9-BWS6 +Downloaded DOI QTMR-AZ62 +Downloaded DOI 59DW-BHJ2 +Downloaded DOI WJ6M-6K46 +Downloaded DOI DDAV-GM8M +Downloaded DOI M4UT-6R49 +Downloaded DOI HM2T-6KQ2 +Downloaded DOI 87AY-VFWR +Downloaded DOI 4H44-FVXN +Downloaded DOI 27JW-7H9G +Downloaded DOI UNZN-MP76 +Downloaded DOI WY3P-TCN2 +Downloaded DOI TMZK-TPJD +Downloaded DOI 6YG3-VZGQ +Downloaded DOI A243-ZY5B +Downloaded DOI 6ART-NWGN +Downloaded DOI 25WT-KEFN +Downloaded DOI 52NT-4DW3 +Downloaded DOI ERM6-72RD +No data found, error 404 +Downloaded DOI 6M9Q-56E2 +Downloaded DOI ENVP-5Z22 +Downloaded DOI CJ3D-4Q79 +Downloaded DOI F7PC-EPE9 +Downloaded DOI UQHD-ZUJB +Downloaded DOI 4Y6U-RBPP +Downloaded DOI 5VK7-XRK9 +Downloaded DOI 2M84-W3RU +Downloaded DOI QW8G-V7W3 +Downloaded DOI DFKT-TXA9 +Downloaded DOI 68RK-8GZM +Downloaded DOI G4AX-VYW6 +Downloaded DOI EAJJ-ERYQ +Downloaded DOI KT7T-NZ3X +Downloaded DOI TJ6D-WT5U +Downloaded DOI 8SX9-PYT9 +Downloaded DOI NSKN-7FVH +Downloaded DOI CW48-2JAE +Downloaded DOI QHYA-TKMV +Downloaded DOI S7BV-X2KH +Downloaded DOI Q3CS-UEZA +Downloaded DOI B85A-F4V8 +Downloaded DOI 7VYY-5GSN +Downloaded DOI RUJ2-QRCT +Downloaded DOI WF7P-VPEE +Downloaded DOI EN94-A57D +Downloaded DOI V8XS-7FQP +Downloaded DOI 84QC-WU3D +Downloaded DOI VFE3-2KMU +Downloaded DOI 62HZ-A3GC +Downloaded DOI NFMB-4VYV +Downloaded DOI Z43Y-FXSW +Downloaded DOI Z49B-2AST +Downloaded DOI AHZC-WPQ6 +No data found, error 404 +Downloaded DOI AE3J-YKN8 +Downloaded DOI AXPH-NSPK +Downloaded DOI 8XVK-5GTN +Downloaded DOI 4CCS-EHFV +Downloaded DOI S729-5CMK +Downloaded DOI HT75-TUQ6 +Downloaded DOI RKUX-TEKD +Downloaded DOI VCMA-32HQ +No data found, error 404 +Downloaded DOI 92X2-CVNM +No data found, error 404 +Downloaded DOI M5VU-HNFW +Downloaded DOI RJGN-ZQTC +Downloaded DOI ZSBS-EUSA +Downloaded DOI WBQH-6XUJ +Downloaded DOI 89MS-37Y6 +Downloaded DOI XGEN-97CJ +Downloaded DOI TZNG-Z4TM +Downloaded DOI QQMX-HEBY +Downloaded DOI 7V4W-3PNY +Downloaded DOI CPSH-5AGT +Downloaded DOI JJRT-H676 +Downloaded DOI GXKA-X4CX +Downloaded DOI XZ9K-R99B +Downloaded DOI B22G-A7JX +Downloaded DOI 3WQ3-P8G5 +Downloaded DOI 2WVC-K7HY +Downloaded DOI TAVN-Y4W9 +Downloaded DOI 7QVN-T8CK +Downloaded DOI 8FEM-GHXE +Downloaded DOI QN52-N5BU +Downloaded DOI AA9P-3QQY +Downloaded DOI MMHK-25UK +Downloaded DOI D8SF-955K +Downloaded DOI DM28-QB29 +No data found, error 404 +Downloaded DOI PUJ4-HDV7 +Downloaded DOI RQXC-FQRT +Downloaded DOI PY55-7FQY +Downloaded DOI 4MFZ-GUSS +Downloaded DOI CJSY-F5Y4 +No data found, error 404 +Downloaded DOI 4BT3-3HBM +Downloaded DOI EAJR-34WX +Downloaded DOI GX9Z-YZRV +Downloaded DOI TAZH-AC6C +Downloaded DOI HWEK-HVNS +Downloaded DOI 2YR8-5ZDG +Downloaded DOI R7YS-XY35 +No data found, error 404 +Downloaded DOI VS5C-TF9E +Downloaded DOI QUXW-GUM4 +Downloaded DOI HM57-MQGW +Downloaded DOI BUR6-HMST +Downloaded DOI PAE6-Y8KA +No data found, error 404 +No data found, error 404 +Downloaded DOI QBHA-5MQC +Downloaded DOI KAPH-X6UJ +No data found, error 404 +Downloaded DOI SBN8-HEM3 +Downloaded DOI 7ADW-WWN2 +No data found, error 404 +Downloaded DOI A98A-2XJ6 +Downloaded DOI H4VB-MSHQ +Downloaded DOI P3FG-PKA4 +Downloaded DOI PKVN-SHKR +Downloaded DOI 88TG-TQPD +Downloaded DOI 2PDE-5FKD +Downloaded DOI 3EEV-SZF7 +Downloaded DOI X4UM-KSXC +Downloaded DOI QCU8-PEHC +Downloaded DOI J8SY-5C9Y +Downloaded DOI WDBR-SVH5 +Downloaded DOI K7HM-8NZA +Downloaded DOI DF94-JXX7 +Downloaded DOI 669S-F4BW +Downloaded DOI GS4N-UVDA +Downloaded DOI YFZV-KKFB +No data found, error 404 +Downloaded DOI E6RS-QJYW +Downloaded DOI GYC4-R4C2 +Downloaded DOI 8C5G-EHT9 +Downloaded DOI YDBP-SNUN +Downloaded DOI 28U5-5YM7 +Downloaded DOI X8MR-EED5 +Downloaded DOI X9N9-4TT3 +Downloaded DOI HYUX-J7ME +Downloaded DOI AF9D-39R9 +Downloaded DOI 9DQS-YCWZ +Downloaded DOI C4YF-4GW2 +Downloaded DOI QGBU-VZEW +Downloaded DOI UVR3-EFD6 +Downloaded DOI 77XY-4DWD +Downloaded DOI VQ8P-EJFD +Downloaded DOI 8YSC-6VW9 +Downloaded DOI 69TR-N2GT +Downloaded DOI HFN7-8APG +Downloaded DOI ZCCA-MK7F +Downloaded DOI ABP7-J94J +Downloaded DOI 7WE2-GEWP +Downloaded DOI ZH99-8M5D +Downloaded DOI WZKZ-4W85 +Downloaded DOI HC28-92NW +No data found, error 404 +Downloaded DOI 2K4F-RAJZ +Downloaded DOI TFZZ-2NRG +Downloaded DOI H7CQ-U5YD +Downloaded DOI EQA7-Z2EJ +Downloaded DOI FA29-7W8V +Downloaded DOI YYBP-SG46 +Downloaded DOI 3HPT-PSS4 +Downloaded DOI 4WTF-7KTB +Downloaded DOI BMPZ-H65K +Downloaded DOI GAME-K34Q +Downloaded DOI DT6W-X27H +Downloaded DOI SQKJ-Z9N6 +Downloaded DOI KKYF-6QYH +Downloaded DOI RQXF-7ZRQ +Downloaded DOI KACN-HDPQ +Downloaded DOI HPJV-SH6T +Downloaded DOI CQRW-S8HH +Downloaded DOI 8ZFE-9XSD +Downloaded DOI 9VTU-H947 +Downloaded DOI VV6S-9GMW +Downloaded DOI KQUG-QM6B +Downloaded DOI 525H-JV6U +Downloaded DOI DCM4-9FQA +Downloaded DOI ZME9-S3BX +Downloaded DOI HAM8-DHMU +Downloaded DOI 722F-A5QP +Downloaded DOI E4MF-6G63 +Downloaded DOI E5J9-U8X7 +Downloaded DOI 28CW-STAV +Downloaded DOI 6E6P-N6P2 +Downloaded DOI 3E7Z-5SM7 +No data found, error 404 +Downloaded DOI 6SZU-KW74 +Downloaded DOI HFSS-PZ5D +Downloaded DOI P29J-T8RH +Downloaded DOI 5WTV-RNCW +Downloaded DOI RDUR-TQWE +No data found, error 404 +Downloaded DOI FNY8-C96X +Downloaded DOI 6ASM-HMAW +Downloaded DOI F69W-SKFG +Downloaded DOI TXWX-GPGX +Downloaded DOI 4FHJ-7NZC +Downloaded DOI CZBG-V9AP +Downloaded DOI KGS7-47F5 +Downloaded DOI 7Z7K-FVC6 +Downloaded DOI N4YB-T6B4 +Downloaded DOI N6C6-PJUR +Downloaded DOI 6T67-Q9BR +Downloaded DOI UF6K-NMMT +Downloaded DOI YHCB-S7YS +Downloaded DOI 3S82-4QAU +Downloaded DOI RRK6-RQVD +Downloaded DOI ZQKV-EH2X +Downloaded DOI A4Y9-8YBD +Downloaded DOI VTBK-4YBA +Downloaded DOI 9XYY-8TPV +Downloaded DOI 4JBJ-CQ2U +Downloaded DOI U9QD-7RSA +Downloaded DOI YR78-P867 +Downloaded DOI V6YT-JFFQ +Downloaded DOI C5AP-XTEF +Downloaded DOI JMP3-2BNH +Downloaded DOI QHMA-GKCX +No data found, error 404 +Downloaded DOI UQE2-H533 +Downloaded DOI 36SC-3NDD +Downloaded DOI NC64-GM47 +Downloaded DOI MUC4-JNMG +Downloaded DOI 6NMD-K9D8 +Downloaded DOI EPQZ-MESE +Downloaded DOI 9VXB-CDKG +Downloaded DOI XTMR-VYWG +Downloaded DOI 38BS-KPM8 +Downloaded DOI PJ73-HYA2 +Downloaded DOI K699-PMGQ +Downloaded DOI QGSE-EYMR +Downloaded DOI XB24-XXTD +Downloaded DOI FEYS-NM58 +Downloaded DOI FJSK-7RCZ +Downloaded DOI YUK6-DR4V +Downloaded DOI D5JE-FS76 +No data found, error 404 +Downloaded DOI C9RQ-6E78 +No data found, error 404 +Downloaded DOI 7GNH-5NJ3 +Downloaded DOI JZNQ-YSZ8 +Downloaded DOI TYJ5-W35G +Downloaded DOI VAU9-WW7S +Downloaded DOI U8G4-7J4U +Downloaded DOI NEE9-594Q +Downloaded DOI 7UBU-536N +Downloaded DOI RVKY-VFF5 +Downloaded DOI DYUN-XP3Q +Downloaded DOI Z6RE-VUN5 +Downloaded DOI GFVM-86FB +Downloaded DOI XFSP-TMW9 +Downloaded DOI RCW5-8AC6 +Downloaded DOI JRFJ-8ZAZ +No data found, error 404 +Downloaded DOI WWHG-4PER +Downloaded DOI ZYXV-J87G +Downloaded DOI P4ZK-XHF9 +Downloaded DOI NQSD-EPJB +Downloaded DOI WG6X-87XP +Downloaded DOI 8BRX-7CZM +Downloaded DOI 9AJQ-TFBW +Downloaded DOI UF7S-EUAJ +Downloaded DOI A3V3-2D6H +Downloaded DOI TZM2-8DQ8 +No data found, error 404 +Downloaded DOI E6PN-7QUA +Downloaded DOI CPEU-3YTQ +Downloaded DOI TJ7Y-GH6C +Downloaded DOI ZM3Z-VVBB +Downloaded DOI TNJ6-HE9E +Downloaded DOI U5RG-9RZH +Downloaded DOI 2K6F-W97S +Downloaded DOI 457D-SHNE +Downloaded DOI MHTG-A2R6 +Downloaded DOI 2HXC-39VW +No data found, error 404 +Downloaded DOI HJCV-GZ9G +Downloaded DOI MHXF-7F7T +Downloaded DOI XY3R-XQ3V +No data found, error 404 +Downloaded DOI A68R-YZJC +Downloaded DOI JP9G-CKUU +Downloaded DOI XM5H-YYSQ +Downloaded DOI B439-YH8T +Downloaded DOI UR5F-FUKQ +Downloaded DOI NV5Q-GVFP +Downloaded DOI 2RFH-YGPY +Downloaded DOI MZYK-JED5 +Downloaded DOI N5CE-S9F9 +Downloaded DOI JVEH-DTJ4 +Downloaded DOI QAWC-2976 +Downloaded DOI RVVR-EXR2 +Downloaded DOI 8HMH-NCRZ +No data found, error 404 +Downloaded DOI CAF7-M5XT +Downloaded DOI P2KX-CDQZ +Downloaded DOI T4DM-A63S +Downloaded DOI CY4P-EUSQ +No data found, error 404 +Downloaded DOI 92WA-3BQG +Downloaded DOI 7MVX-JMWM +Downloaded DOI N7JY-TV3S +Downloaded DOI D89J-D3Z6 +Downloaded DOI YPXF-S2YR +Downloaded DOI GWYP-6GFV +Downloaded DOI 4TYH-V6DD +Downloaded DOI BGPR-X8B8 +Downloaded DOI DB9E-TB5D +Downloaded DOI S45P-4UGX +Downloaded DOI DVXA-VKKM +Downloaded DOI 9RNV-M5U7 +Downloaded DOI FWZU-D6Z6 +Downloaded DOI 639D-8739 +Downloaded DOI QAGG-ZVZR +Downloaded DOI GPX8-5QGG +No data found, error 404 +Downloaded DOI CCQG-M2WT +Downloaded DOI ZT2V-3P92 +Downloaded DOI NDA6-YR6J +Downloaded DOI 26TF-NNFB +Downloaded DOI 22FP-DZBX +Downloaded DOI 57QU-425V +Downloaded DOI 3JXG-Y6SX +Downloaded DOI AKEM-TUCK +No data found, error 404 +Downloaded DOI RQTK-BAAH +Downloaded DOI XP3U-U5JX +Downloaded DOI 5F5D-VKHH +Downloaded DOI 2MG4-T3DN +Downloaded DOI TJPW-TPKV +Downloaded DOI YVHV-E5KQ +Downloaded DOI TKJX-KWD7 +Downloaded DOI XMW3-5T45 +Downloaded DOI SG3F-MF3A +Downloaded DOI ZJTJ-4TU3 +Downloaded DOI WQAD-ZK94 +Downloaded DOI 2YNU-SKZ8 +Downloaded DOI EECX-6BVF +Downloaded DOI R689-UTX2 +No data found, error 404 +Downloaded DOI DA43-NZHB +Downloaded DOI H8WX-FY2W +Downloaded DOI 8N9H-5D5Z +Downloaded DOI 8BJQ-4JW5 +Downloaded DOI N4KZ-QERU +Downloaded DOI 86ED-BHF8 +Downloaded DOI DJ2S-Q8Q4 +Downloaded DOI H8FC-BXEV +Downloaded DOI XU8G-TFA7 +Downloaded DOI QWVM-VY9S +Downloaded DOI ZC8M-5ZEA +Downloaded DOI RASD-KF8B +Downloaded DOI FDYR-KH3M +Downloaded DOI SPTY-PV9P +Downloaded DOI G3RT-WW24 +Downloaded DOI KDB9-HFER +No data found, error 404 +No data found, error 404 +Downloaded DOI 23BB-R5QY +Downloaded DOI NH5K-34XY +Downloaded DOI 3UF7-PGJW +No data found, error 404 +Downloaded DOI 5H88-GRPK +Downloaded DOI QSZZ-QHTQ +Downloaded DOI FKZH-FBB4 +Downloaded DOI 7H6G-UHZC +Downloaded DOI U9MG-F4QR +Downloaded DOI 4KW2-PYDE +Downloaded DOI QNUR-45RJ +Downloaded DOI HSZR-PC5J +Downloaded DOI 9YTC-PFRE +Downloaded DOI ERQ8-YFKJ +Downloaded DOI H9K7-K4SQ +Downloaded DOI J356-MMR6 +Downloaded DOI 3CPQ-SSSE +Downloaded DOI 9CRW-3ZWC +No data found, error 404 +Downloaded DOI 5P9T-YGXT +Downloaded DOI 9D53-S3W8 +Downloaded DOI 94XP-2M22 +Downloaded DOI QZ6G-4T6M +Downloaded DOI JR2T-C8JE +Downloaded DOI KPFY-BGHV +Downloaded DOI BYPC-G4R4 +Downloaded DOI TGAR-235R +Downloaded DOI QDNQ-XD7J +Downloaded DOI 8NCW-3SBJ +Downloaded DOI ATV3-V6RG +Downloaded DOI YKA7-UKYR +Downloaded DOI HEJ9-W4A7 +Downloaded DOI 8FHU-ZPW6 +Downloaded DOI J5VU-8H9Y +Downloaded DOI 2XPF-P9FD +Downloaded DOI QX6U-9DV4 +Downloaded DOI HX5G-BZVQ +Downloaded DOI NFAP-GX4B +Downloaded DOI AEXX-9BRV +Downloaded DOI 427D-A5UP +Downloaded DOI 9428-8Z25 +Downloaded DOI XZ3J-HWUB +Downloaded DOI 2W4E-H59V +Downloaded DOI NYDQ-JH6X +Downloaded DOI K7GD-FF5C +Downloaded DOI FPFE-5PDC +Downloaded DOI CWAJ-FAA8 +Downloaded DOI QFNT-XX8Q +Downloaded DOI Z2FU-4EUV +Downloaded DOI ZFUK-H5XD +No data found, error 404 +Downloaded DOI H2UM-GVRR +Downloaded DOI MNA2-8S7A +Downloaded DOI C2EJ-KUMU +Downloaded DOI WPMK-6MTQ +Downloaded DOI JA6W-BW53 +Downloaded DOI JPAK-SD27 +Downloaded DOI 7N3G-RPTU +Downloaded DOI X2WR-8RCK +Downloaded DOI G2E4-9G8U +Downloaded DOI TZ2C-UD7Q +No data found, error 404 +Downloaded DOI M2DT-6RK4 +Downloaded DOI Z9CY-ZD93 +Downloaded DOI DK8T-UTQC +Downloaded DOI A6RN-UBA6 +Downloaded DOI V9GY-U9JT +Downloaded DOI 2543-B9R6 +Downloaded DOI E36C-RYJN +No data found, error 404 +Downloaded DOI UNMR-KM9W +Downloaded DOI KG3F-GVQV +Downloaded DOI DNRT-QAXM +Downloaded DOI 42GE-QTH7 +Downloaded DOI JSGZ-W66H +Downloaded DOI 9322-4TQE +Downloaded DOI DDV8-APRS +Downloaded DOI 9S3W-PQD6 +Downloaded DOI FC4B-MHNZ +Downloaded DOI R7SR-F835 +Downloaded DOI 2WVY-SW3P +No data found, error 404 +Downloaded DOI SEAE-39UV +Downloaded DOI GHW4-977V +Downloaded DOI 4R7C-BT53 +Downloaded DOI UHJM-28SV +Downloaded DOI GW7S-XEK4 +Downloaded DOI KP8F-GSH5 +Downloaded DOI UPYZ-TTVJ +Downloaded DOI NHZF-Y25C +Downloaded DOI FD38-7JZT +Downloaded DOI SPBJ-NCY3 +Downloaded DOI ZTFW-FDB5 +Downloaded DOI K3YG-2M6U +Downloaded DOI 43FU-C7TM +Downloaded DOI 852H-6Q58 +Downloaded DOI JZ46-YK5K +Downloaded DOI SZAN-V5TP +Downloaded DOI 8C5A-6YCB +Downloaded DOI BPSY-DRBK +No data found, error 404 +Downloaded DOI 5AA5-M6N2 +Downloaded DOI KEBP-ZP2V +Downloaded DOI 3PKV-HY9K +Downloaded DOI UFS3-Z3SR +Downloaded DOI 9NBM-KFHE +Downloaded DOI QTVC-7335 +Downloaded DOI 6QPE-25QY +Downloaded DOI 3W8Q-FZJR +Downloaded DOI BYMF-KZFU +No data found, error 404 +Downloaded DOI Q3Z9-2B5E +Downloaded DOI PV5S-U5CX +No data found, error 404 +Downloaded DOI RNT4-4UBB +Downloaded DOI NDHH-R59V +No data found, error 404 +Downloaded DOI ABWE-WVUD +Downloaded DOI AU86-FNN6 +Downloaded DOI 4GXN-UF29 +Downloaded DOI BHGS-K2QP +Downloaded DOI HHXM-Y5ME +Downloaded DOI P7ER-2CF3 +Downloaded DOI 2FUX-EMC9 +Downloaded DOI D8ZU-FBG4 +No data found, error 404 +Downloaded DOI GVTX-W7NF +Downloaded DOI NS6U-EYWG +Downloaded DOI 5TUB-X95T +Downloaded DOI VPWZ-6VRX +Downloaded DOI WWCG-AYSZ +Downloaded DOI WEAW-KSWK +Downloaded DOI STQH-5CKU +Downloaded DOI V5J3-78TA +Downloaded DOI JD2Y-5K7B +Downloaded DOI J7NE-UAYB +Downloaded DOI PBKM-XEVR +No data found, error 404 +Downloaded DOI 8BP8-X85W +Downloaded DOI 2AVV-N96K +Downloaded DOI CGXY-EMN6 +Downloaded DOI MWJ4-ZS47 +Downloaded DOI YB6J-6BXE +Downloaded DOI WQPD-ZCFZ +Downloaded DOI QYNQ-2NFE +Downloaded DOI CXYV-M8F4 +Downloaded DOI N289-RP8C +Downloaded DOI 9WSU-DDBR +Downloaded DOI 8WPM-7CQ2 +No data found, error 404 +Downloaded DOI FNGC-ZT43 +Downloaded DOI 7K9Y-HC3C +Downloaded DOI F2SX-YGW3 +Downloaded DOI BWGJ-EKJG +Downloaded DOI TY89-AX3G +Downloaded DOI 2BFK-ZJFW +Downloaded DOI 3DR8-JWQ8 +Downloaded DOI 228F-Z2EU +Downloaded DOI 4YMR-ERPS +No data found, error 404 +No data found, error 404 +Downloaded DOI K4GJ-JGRC +Downloaded DOI ZVHT-YGK6 +Downloaded DOI F9WM-UZ9P +Downloaded DOI 8FU8-7R9D +Downloaded DOI C2YE-Q96X +Downloaded DOI QSG3-4T3W +Downloaded DOI MC6U-HBEV +Downloaded DOI NSRJ-BBKU +Downloaded DOI KWFW-MAM6 +Downloaded DOI D2SD-P7CN +No data found, error 404 +Downloaded DOI 47CV-6AV6 +No data found, error 404 +Downloaded DOI GCYR-Z9RV +Downloaded DOI THNB-H2X5 +Downloaded DOI 4GN2-Y65G +Downloaded DOI QM24-MECQ +Downloaded DOI R8PG-AXS2 +Downloaded DOI PNJZ-FRWC +Downloaded DOI JWVF-WRX6 +Downloaded DOI VH43-J6XA +Downloaded DOI ZP88-YPZJ +Downloaded DOI GDE3-STEG +Downloaded DOI W5E7-QGWY +Downloaded DOI ZQ3G-6VJK +Downloaded DOI 8XC2-7QEU +Downloaded DOI B2MN-9Y4U +Downloaded DOI KSHE-Y4VE +Downloaded DOI V3YR-MXHT +No data found, error 404 +Downloaded DOI XXMW-J44M +Downloaded DOI KT8J-QU9Y +Downloaded DOI 52VM-UAJT +Downloaded DOI 9BMX-HUFR +Downloaded DOI WYRG-QRJ4 +Downloaded DOI ARJY-PG2R +Downloaded DOI H64G-UQ7B +No data found, error 404 +Downloaded DOI 6YYW-739Z +Downloaded DOI WRT5-THMW +Downloaded DOI JRB3-N8Y7 +No data found, error 404 +Downloaded DOI EXFB-5CCT +Downloaded DOI 35R2-U26Z +Downloaded DOI 8S6T-ADY6 +Downloaded DOI GAB7-PRTK +Downloaded DOI C58Z-GNQQ +Downloaded DOI 4AVS-3CPK +Downloaded DOI 7JKY-UHJV +Downloaded DOI YG6G-E89Z +Downloaded DOI 5FAR-6DYW +Downloaded DOI 5KWY-4W69 +Downloaded DOI V3D2-MP4W +No data found, error 404 +Downloaded DOI 8KH8-6WSE +Downloaded DOI TSVW-TAWW +Downloaded DOI 58Y3-TK26 +No data found, error 404 +Downloaded DOI 9SYJ-PYJX +Downloaded DOI J8ND-4JT7 +Downloaded DOI 938X-9YBK +No data found, error 404 +No data found, error 404 +Downloaded DOI HT8P-QUKM +Downloaded DOI 9JDD-YC69 +Downloaded DOI 6WW5-3TEP +Downloaded DOI 2KQN-KC9X +Downloaded DOI QBX4-MBFJ +Downloaded DOI 8MHM-JYCU +Downloaded DOI HDMV-PYPS +Downloaded DOI FB2R-D4QP +Downloaded DOI 82MU-CPAR +Downloaded DOI 4CA8-97ZK +Downloaded DOI XPBR-DDJ8 +Downloaded DOI TNYY-QBWT +Downloaded DOI QUTV-D7V4 +Downloaded DOI WPKB-8SH6 +Downloaded DOI VHUQ-6FYG +No data found, error 404 +Downloaded DOI 5BPS-8HFX +Downloaded DOI XR5J-85SX +Downloaded DOI NAGU-B29T +Downloaded DOI JS3X-B7KU +Downloaded DOI ZXJP-3JPD +Downloaded DOI 3P7X-W4JF +Downloaded DOI G738-E9RC +Downloaded DOI T6VJ-8PMA +No data found, error 404 +Downloaded DOI 9P23-KM2K +Downloaded DOI D3JP-BP9D +Downloaded DOI W8MF-JUX6 +Downloaded DOI 4M3G-NTHN +Downloaded DOI XHRY-GWNK +Downloaded DOI GYHR-Z56A +Downloaded DOI EEEB-FPKR +No data found, error 404 +Downloaded DOI 8A75-RZKM +Downloaded DOI PXW4-JS7C +Downloaded DOI H9PC-RHHF +Downloaded DOI 7CQ7-2R6K +Downloaded DOI 73GF-7T6M +Downloaded DOI UYE9-CZKG +Downloaded DOI SRVE-RQ9V +Downloaded DOI 6DKU-E675 +Downloaded DOI 4UAX-U2HS +Downloaded DOI WAE9-S98C +Downloaded DOI M2JB-EJRN +Downloaded DOI H6D7-P9XY +Downloaded DOI JERK-FDSA +Downloaded DOI XBTB-2E7S +Downloaded DOI QGSS-WH5F +Downloaded DOI 3QND-ETN4 +Downloaded DOI ESAQ-ZW2H +Downloaded DOI 4FTP-QTQR +Downloaded DOI NK32-24S9 +Downloaded DOI YA4M-EGGR +Downloaded DOI RMP6-QEPZ +Downloaded DOI NS6G-UMFB +Downloaded DOI HAGA-CKXD +Downloaded DOI YWCY-7SWY +Downloaded DOI EWMC-D59F +Downloaded DOI 89QT-F63R +Downloaded DOI 74W8-K6JA +Downloaded DOI JAJT-U6DQ +Downloaded DOI 4CVQ-NMGR +No data found, error 404 +Downloaded DOI XT74-GE9F +No data found, error 404 +Downloaded DOI KY2M-FYQ2 +Downloaded DOI FAZZ-3ZVV +No data found, error 404 +Downloaded DOI 5D97-P43S +Downloaded DOI NXCZ-XW46 +Downloaded DOI TVND-EZGR +Downloaded DOI 37ZF-A2DD +Downloaded DOI SS77-ARHH +Downloaded DOI Q3DQ-69KJ +Downloaded DOI KCRU-AKG2 +Downloaded DOI YXXY-CGMN +Downloaded DOI PGQV-H484 +Downloaded DOI QH2J-AR57 +Downloaded DOI DBYP-CNAJ +Downloaded DOI SYC5-JJU3 +Downloaded DOI 6WJU-VWBF +Downloaded DOI VWZN-B4ZR +Downloaded DOI SB76-UNGA +Downloaded DOI 9A2S-RD77 +Downloaded DOI E8RD-2VU4 +Downloaded DOI 7W45-JUHK +Downloaded DOI 7V96-H8FT +Downloaded DOI GREE-DXW4 +Downloaded DOI GGHV-BWE5 +Downloaded DOI 9P7N-TYD5 +Downloaded DOI G8KV-AVUQ +Downloaded DOI X2WE-GATY +Downloaded DOI CGKZ-UA2R +No data found, error 404 +No data found, error 404 +Downloaded DOI 88MK-XBQG +Downloaded DOI 3Q9V-TFJD +Downloaded DOI HU9M-RBAR +No data found, error 404 +Downloaded DOI WRTK-M52B +Downloaded DOI A2EV-NHW5 +Downloaded DOI NGM6-QRJA +Downloaded DOI G8ZD-E2HY +Downloaded DOI PYE7-H4PP +No data found, error 404 +Downloaded DOI WRSQ-M945 +Downloaded DOI CT55-55DT +Downloaded DOI XPJ7-WKKX +Downloaded DOI T2AB-55AK +Downloaded DOI Z7ZC-W2EP +Downloaded DOI N4CZ-SK4H +Downloaded DOI FYHQ-82NK +Downloaded DOI XW24-F8VK +Downloaded DOI VX5X-NAWN +Downloaded DOI FY6U-2SQQ +Downloaded DOI 3S7T-VQ5R +Downloaded DOI FJ6R-CTA6 +Downloaded DOI SFG3-VNZ8 +Downloaded DOI 7ZJG-4QMN +Downloaded DOI G945-P6K4 +Downloaded DOI D7Z7-ZPMT +Downloaded DOI JMTU-AF98 +Downloaded DOI C9BS-DEKM +Downloaded DOI AP8B-PWR9 +No data found, error 404 +Downloaded DOI S6YZ-2KJ6 +Downloaded DOI 5AWR-99WP +Downloaded DOI FA6W-C8JD +Downloaded DOI JQM7-BBWP +Downloaded DOI VVDC-W54X +Downloaded DOI WEYW-CJEV +Downloaded DOI 9NGG-5ZKF +Downloaded DOI 6TYD-9EPH +Downloaded DOI G9FG-GE7Q +No data found, error 404 +Downloaded DOI 6M5U-4H3Y +Downloaded DOI 9TEK-XS5U +Downloaded DOI CQK7-7VKN +Downloaded DOI VU35-KD7D +Downloaded DOI 8NUR-PHBD +Downloaded DOI VSUV-PUQ6 +Downloaded DOI Z6NF-8BFR +Downloaded DOI EK7N-F64X +Downloaded DOI YPDU-ZFHD +Downloaded DOI 66GF-8AY6 +Downloaded DOI JVWM-7KDU +No data found, error 404 +Downloaded DOI 5VM2-7VC8 +Downloaded DOI 5SBF-KJWV +Downloaded DOI NH4S-QW2P +Downloaded DOI W667-VWER +Downloaded DOI 34NT-P94K +No data found, error 404 +Downloaded DOI TGK9-R8J7 +Downloaded DOI GETS-7DYT +Downloaded DOI UMG2-PHWZ +Downloaded DOI J9PA-EWN9 +Downloaded DOI 9KD6-YAYA +Downloaded DOI BS8B-Q4YE +Downloaded DOI PKMX-JYB8 +No data found, error 404 +Downloaded DOI R7DX-96VR +Downloaded DOI GP8F-APBC +Downloaded DOI PMNF-N5UZ +Downloaded DOI FH2X-Y6YV +Downloaded DOI YD7C-MAP6 +Downloaded DOI XKYQ-2ZQ5 +Downloaded DOI 2R83-DF89 +Downloaded DOI MQBG-AEMA +No data found, error 404 +Downloaded DOI X3FP-2EZH +Downloaded DOI ZBPV-4KSG +Downloaded DOI N3ND-T8RG +Downloaded DOI 79P4-BJFY +Downloaded DOI ZXUW-BNFP +Downloaded DOI X5GB-C63A +Downloaded DOI GQTK-3UZC +Downloaded DOI MX7Z-4YGQ +Downloaded DOI 9HME-8FSN +No data found, error 404 +Downloaded DOI 69RR-XAHU +Downloaded DOI AWQP-D397 +No data found, error 404 +No data found, error 404 +Downloaded DOI U7N5-QDRP +Downloaded DOI YF2P-5U3Q +Downloaded DOI TAH2-XE25 +Downloaded DOI VH6Z-PS5B +Downloaded DOI BEU6-62G9 +Downloaded DOI 267N-USEU +No data found, error 404 +Downloaded DOI NGG8-DTC2 +Downloaded DOI DV74-VBZX +Downloaded DOI UDSD-K3GT +Downloaded DOI BD3S-PQCN +Downloaded DOI 6WZQ-PH83 +Downloaded DOI 8N87-7A5S +Downloaded DOI XAJ9-4WFZ +Downloaded DOI QJ4H-R9GM +Downloaded DOI QKTP-5UUD +No data found, error 404 +Downloaded DOI U69A-95H8 +Downloaded DOI 2PAH-MTZJ +Downloaded DOI J87R-UCJQ +Downloaded DOI JTQ5-Q3WG +Downloaded DOI DMBA-2E5F +Downloaded DOI WKKB-QX3D +Downloaded DOI ZSQ3-5C78 +No data found, error 404 +Downloaded DOI X6JF-9BFM +No data found, error 404 +Downloaded DOI 6H6C-393F +Downloaded DOI AWRQ-NW6Z +Downloaded DOI 8NRT-44YA +Downloaded DOI EMEM-V3RX +Downloaded DOI JXDU-5S6G +Downloaded DOI 68RY-YG7Q +Downloaded DOI WBWQ-JNAA +Downloaded DOI WHR2-58VK +Downloaded DOI 3R6Z-A54U +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI GHBZ-KS62 +No data found, error 404 +Downloaded DOI ETNH-D9TM +Downloaded DOI MECG-T52H +Downloaded DOI XGMJ-S7PA +Downloaded DOI UCBS-42P2 +Downloaded DOI 87W2-KDNT +Downloaded DOI ST3Z-AQ6F +Downloaded DOI VXR9-2FSY +Downloaded DOI 5ZNW-24AQ +Downloaded DOI T89B-C3ZV +Downloaded DOI JH4Y-RDE2 +Downloaded DOI NNUP-Q2JE +Downloaded DOI FXPW-2TTH +No data found, error 404 +No data found, error 404 +Downloaded DOI RPTC-E88K +No data found, error 404 +Downloaded DOI H8R2-WG22 +Downloaded DOI UU9R-TETB +Downloaded DOI ZZMJ-UKAR +Downloaded DOI 6WV2-4DSG +Downloaded DOI 5BMJ-HKX6 +Downloaded DOI BDG5-TE23 +Downloaded DOI MNYF-EVTB +Downloaded DOI VSKK-W2JP +Downloaded DOI WFX8-JFN2 +Downloaded DOI YA22-4PF6 +Downloaded DOI GWUM-W4K9 +Downloaded DOI RKM5-WY4Z +Downloaded DOI AYF4-SD6N +Downloaded DOI P66G-RJJB +No data found, error 404 +Downloaded DOI 78WS-QWCG +Downloaded DOI N5J2-AAAR +Downloaded DOI ASHJ-BSWX +Downloaded DOI 8GMB-PS2W +Downloaded DOI RK58-TDKF +Downloaded DOI B2HN-PDBN +Downloaded DOI X8UG-BYXP +No data found, error 404 +No data found, error 404 +Downloaded DOI G6YW-SVSE +Downloaded DOI M6XU-9Q6Q +Downloaded DOI 2FWN-S9JX +Downloaded DOI YKM8-X9W8 +Downloaded DOI RUFU-7RNW +No data found, error 404 +Downloaded DOI AQWP-W97U +Downloaded DOI E9ST-PQD7 +Downloaded DOI 8GHG-GY9W +Downloaded DOI Y82B-4FYP +No data found, error 404 +Downloaded DOI 5BV5-DSNB +Downloaded DOI CPYF-PS6G +Downloaded DOI Y4FT-B3AJ +No data found, error 404 +Downloaded DOI RU7E-FQ4Z +Downloaded DOI ZFCA-NGEQ +Downloaded DOI CCGA-7BFZ +Downloaded DOI 9TBW-WPZ9 +Downloaded DOI 84BC-C9H6 +No data found, error 404 +No data found, error 404 +Downloaded DOI 2574-7D5Z +No data found, error 404 +No data found, error 404 +Downloaded DOI VGMT-M9ES +Downloaded DOI SM9C-TNPY +Downloaded DOI 6YJ6-GZRX +Downloaded DOI 3GC7-QNSG +Downloaded DOI EAKU-NN9U +Downloaded DOI M8VK-7WYD +Downloaded DOI KYZC-5J42 +Downloaded DOI 69RX-B9MT +Downloaded DOI 8KMD-2PDT +Downloaded DOI ESK5-36FB +Downloaded DOI CF6N-ECUR +Downloaded DOI ERW4-ERZ4 +Downloaded DOI ZD4E-TP54 +Downloaded DOI 258U-FMXZ +Downloaded DOI KMKT-VCBA +Downloaded DOI W6YG-QHZP +No data found, error 404 +Downloaded DOI MXHS-QKMX +Downloaded DOI 49UJ-DE3P +No data found, error 404 +Downloaded DOI 3FDR-5RJJ +Downloaded DOI GVSR-U5WU +No data found, error 404 +Downloaded DOI XYKZ-CSE5 +Downloaded DOI XVJP-94X8 +Downloaded DOI UX2E-B6XA +Downloaded DOI D6QC-2GQF +Downloaded DOI V5G6-9CDJ +Downloaded DOI R9FF-5PQT +No data found, error 404 +Downloaded DOI JNYB-S7XB +Downloaded DOI ZYBB-NCJ3 +Downloaded DOI BGB2-2FX5 +Downloaded DOI 86NP-WXG7 +Downloaded DOI WVTQ-AXAF +Downloaded DOI 8SVT-RKVT +Downloaded DOI Z9DA-E4XA +Downloaded DOI T9Q3-PF7B +Downloaded DOI 6EY4-47SR +Downloaded DOI 5JUS-YJ6B +Downloaded DOI 5KXT-MNJX +Downloaded DOI HQRN-RPUJ +Downloaded DOI QBH2-TEFE +Downloaded DOI R9D7-DVNR +Downloaded DOI K6CQ-KBQE +Downloaded DOI 8GBG-VAE8 +Downloaded DOI 6EP2-SERK +Downloaded DOI QAXA-5ARR +Downloaded DOI YJFV-THZN +Downloaded DOI NMXV-82PN +Downloaded DOI R7NS-DYKS +Downloaded DOI 4CRT-XB3W +Downloaded DOI P5TK-QJZK +No data found, error 404 +Downloaded DOI R5YK-4CK7 +Downloaded DOI R66U-CPEB +Downloaded DOI CTH3-JHU2 +Downloaded DOI 6VCB-GBDJ +Downloaded DOI NA6P-E4TU +Downloaded DOI UCRK-7ZPV +No data found, error 404 +Downloaded DOI NCVN-VX7Z +Downloaded DOI 6QMR-5265 +Downloaded DOI M4V8-QCA5 +Downloaded DOI 6YGY-MM4M +Downloaded DOI WD5R-PAZK +Downloaded DOI DH32-VKFS +Downloaded DOI QJHS-7NWU +Downloaded DOI EJBV-6KVD +Downloaded DOI 593E-SKQ3 +Downloaded DOI BC8K-GF3V +Downloaded DOI VAWM-QS37 +Downloaded DOI XY7J-JBHB +Downloaded DOI PGNU-T282 +Downloaded DOI 8BWJ-8495 +Downloaded DOI TM97-D6JH +Downloaded DOI GJWS-8R4H +Downloaded DOI VC5Q-8YTR +Downloaded DOI DCAP-V3S8 +Downloaded DOI Y965-WUU6 +Downloaded DOI GAA3-QPQW +Downloaded DOI 2P47-GS8D +Downloaded DOI Q4CT-HMA2 +No data found, error 404 +Downloaded DOI 5PVJ-72M7 +Downloaded DOI 96TK-ZX7W +Downloaded DOI 5EER-DMFB +No data found, error 404 +Downloaded DOI 3G4B-ZN8C +Downloaded DOI 3ZPW-VJTD +Downloaded DOI 6FYJ-GE4K +Downloaded DOI YAWV-BA6B +Downloaded DOI 4RCT-ZV2C +Downloaded DOI VAGA-ART2 +Downloaded DOI NV45-8WBM +Downloaded DOI WNQK-W6GS +Downloaded DOI NKFP-T36N +Downloaded DOI 5YZ9-ME8H +Downloaded DOI S9T8-5JM2 +Downloaded DOI XKFX-HSJX +Downloaded DOI FMPW-W5SC +Downloaded DOI 67QT-TP7H +Downloaded DOI R8BV-EVJJ +Downloaded DOI P547-8TYY +Downloaded DOI AVME-ZUKG +Downloaded DOI JA83-KYQN +No data found, error 404 +Downloaded DOI 3Z2R-5CBF +Downloaded DOI CR5M-932N +Downloaded DOI MWAX-DK5A +Downloaded DOI QSEE-MS9H +Downloaded DOI 7NW4-PFPN +Downloaded DOI 4VZH-KVCE +Downloaded DOI HWAJ-VZ7U +Downloaded DOI DH5E-NFGE +Downloaded DOI 4CMC-4D3S +No data found, error 404 +Downloaded DOI ZT7G-XKCQ +Downloaded DOI JHBZ-EXJT +Downloaded DOI 4W4W-57YW +Downloaded DOI Z36B-UGFP +Downloaded DOI XJDA-JE3B +Downloaded DOI P9Y8-8C77 +No data found, error 404 +Downloaded DOI C5EP-HJFE +Downloaded DOI KM6Y-HMR7 +Downloaded DOI 6UPG-2MDP +Downloaded DOI KJFU-8EZA +Downloaded DOI XPSG-EY6A +Downloaded DOI 7B65-ZVZX +Downloaded DOI ZAEM-8C78 +Downloaded DOI BAGB-5QSA +Downloaded DOI X6FU-KGHJ +Downloaded DOI YT64-NKE9 +Downloaded DOI NV6C-53DT +Downloaded DOI 68FV-89UC +Downloaded DOI PH2W-8C3X +Downloaded DOI ZXH8-49TA +Downloaded DOI 9J9E-QCME +Downloaded DOI JYNY-HFM4 +Downloaded DOI TJX7-SCCS +Downloaded DOI WWJ4-8DGX +Downloaded DOI 4C4P-PZ8T +Downloaded DOI 7YCH-JMRR +Downloaded DOI T34N-VYM2 +Downloaded DOI 67XT-BMRM +No data found, error 404 +Downloaded DOI TZBK-9F9C +Downloaded DOI NB32-SBY4 +Downloaded DOI HEPC-UFS4 +Downloaded DOI RE9K-T6TQ +Downloaded DOI VP6V-YS8T +No data found, error 404 +Downloaded DOI N7JR-425X +Downloaded DOI M3PX-KAGU +Downloaded DOI 37CQ-SAZD +Downloaded DOI MCF7-HRDF +Downloaded DOI ZPCB-NCF5 +Downloaded DOI PEUG-JFRG +Downloaded DOI THCD-EP42 +Downloaded DOI W7SU-N2MR +No data found, error 404 +Downloaded DOI HMYC-3XKF +No data found, error 404 +Downloaded DOI R8RV-5HKN +Downloaded DOI TTTA-Y746 +Downloaded DOI VTYQ-EP5K +Downloaded DOI HAMF-ERG4 +Downloaded DOI AVX5-SC8W +Downloaded DOI B9N2-JVVG +Downloaded DOI AD3A-DZBQ +Downloaded DOI 8XFH-WPUE +No data found, error 404 +No data found, error 404 +Downloaded DOI ZEY2-B945 +Downloaded DOI VK7W-CVQT +Downloaded DOI CSU6-KD2D +Downloaded DOI 8CR6-53GX +Downloaded DOI SYKA-3FEK +Downloaded DOI 8EPR-2KVN +Downloaded DOI KWCH-USSR +Downloaded DOI KRYF-EBGM +Downloaded DOI 4TA4-G5ZK +Downloaded DOI 85XY-S9F3 +Downloaded DOI 288E-9SET +Downloaded DOI F2UE-GPJB +Downloaded DOI 8VRB-K4CD +Downloaded DOI KTHJ-HE2K +Downloaded DOI AEXF-8A9T +Downloaded DOI C87J-6WCQ +Downloaded DOI AJCE-9Y5F +Downloaded DOI G7Z3-MFA5 +Downloaded DOI AAP6-8WFB +Downloaded DOI 4U46-FA9D +Downloaded DOI 3Z6Q-K6ST +Downloaded DOI 2EU8-VV52 +Downloaded DOI 9ZDZ-6R8V +Downloaded DOI 6Q2T-JGBP +Downloaded DOI 2W5Q-VTMH +Downloaded DOI NQTR-KQHN +Downloaded DOI 9B33-ZW5X +Downloaded DOI M95M-GT3X +Downloaded DOI HDX9-C56W +Downloaded DOI DKNR-YDKB +Downloaded DOI 669M-PB77 +Downloaded DOI K84U-PRCR +Downloaded DOI 6M7Y-KN8F +Downloaded DOI 62FU-MBS7 +No data found, error 404 +Downloaded DOI AC62-JKZH +Downloaded DOI 7CFR-T6VQ +No data found, error 404 +Downloaded DOI FKST-H9QZ +Downloaded DOI TXXJ-3T3C +Downloaded DOI D6H4-XZSZ +Downloaded DOI 8V4K-4JPQ +Downloaded DOI 8Y52-XY4W +Downloaded DOI QRMK-TWM2 +No data found, error 404 +Downloaded DOI E5HK-8AG9 +Downloaded DOI P8A3-WW9B +Downloaded DOI CMK3-D45D +Downloaded DOI 49KR-QQNS +Downloaded DOI YWSS-D9TC +Downloaded DOI U2KW-KKV2 +Downloaded DOI 283T-THCH +Downloaded DOI 7CW4-5MPQ +Downloaded DOI ZVN9-TWY5 +Downloaded DOI N7AT-Q9AB +Downloaded DOI TNAN-N6J9 +Downloaded DOI JR7T-F2ZJ +Downloaded DOI D28D-DJ4M +Downloaded DOI RCQS-6V3A +Downloaded DOI 96MN-PNCV +Downloaded DOI 8ZJZ-AJ4E +Downloaded DOI XSZ4-MXJ5 +Downloaded DOI YBY8-S59M +Downloaded DOI S3UF-7AWR +Downloaded DOI F9D3-XTUM +Downloaded DOI 6P8Q-MTRX +Downloaded DOI WDVS-KBU9 +No data found, error 404 +Downloaded DOI X3FJ-3DY2 +Downloaded DOI E4QY-EPV9 +Downloaded DOI WQU8-N425 +Downloaded DOI ZPMN-T9E7 +Downloaded DOI EZNH-PXC3 +Downloaded DOI 5X7Q-8VH8 +No data found, error 404 +Downloaded DOI 6B64-NJAS +Downloaded DOI 23JN-TPFM +Downloaded DOI GQTQ-5P3D +Downloaded DOI U746-7AAY +Downloaded DOI Z5PR-KCJ4 +Downloaded DOI 7ZG5-G38K +Downloaded DOI TSRC-7KEW +Downloaded DOI CGA4-EUKH +No data found, error 404 +Downloaded DOI JFJF-CSFJ +Downloaded DOI R6UH-BNDV +Downloaded DOI HKR2-QYMX +Downloaded DOI 2RRA-4UBE +Downloaded DOI 63GX-2MNS +Downloaded DOI 6X36-ET76 +Downloaded DOI B2MA-MHTG +No data found, error 404 +Downloaded DOI QP3Q-8BMC +Downloaded DOI WRBR-3M9F +Downloaded DOI CGDS-DYFV +Downloaded DOI RB8V-WJ7W +Downloaded DOI XXU3-TQS4 +Downloaded DOI BVDR-J6AG +No data found, error 404 +Downloaded DOI ATHD-HY2F +Downloaded DOI EGUK-U2KK +Downloaded DOI 7CR9-GXMA +Downloaded DOI X9MN-PYK2 +No data found, error 404 +Downloaded DOI 4SQW-24ZS +Downloaded DOI W4N3-EPEH +Downloaded DOI J3JZ-UVXA +Downloaded DOI TE5K-EKJ9 +Downloaded DOI HTA9-287H +No data found, error 404 +Downloaded DOI USXE-XB2W +Downloaded DOI RDXV-4DT5 +Downloaded DOI 234N-MG86 +Downloaded DOI AGN8-AGQ5 +Downloaded DOI 27FC-BC7B +No data found, error 404 +Downloaded DOI JN5N-2SWE +No data found, error 404 +Downloaded DOI XCSG-HMCJ +No data found, error 404 +Downloaded DOI M67E-CZSA +Downloaded DOI VPCN-Q7QT +No data found, error 404 +Downloaded DOI DRU9-BE3G +Downloaded DOI 8S3E-VN5E +Downloaded DOI V3VX-EYMA +Downloaded DOI T5KM-WQHS +Downloaded DOI YDVG-78NK +Downloaded DOI KWYD-5FJ3 +Downloaded DOI EJ34-NVHT +Downloaded DOI UWA8-F3WP +Downloaded DOI GMZM-55AK +Downloaded DOI 5CKW-BNV8 +Downloaded DOI FTG4-H58D +Downloaded DOI RMBQ-BW3R +Downloaded DOI 672T-QS5Y +Downloaded DOI 7DR8-MXHB +Downloaded DOI Q7HH-5UYK +Downloaded DOI 3526-XCJ5 +Downloaded DOI 4E3F-XH84 +Downloaded DOI QPJH-Z8AE +Downloaded DOI EJ5A-9YWR +Downloaded DOI V35T-JP82 +Downloaded DOI 7ZZV-UNRX +Downloaded DOI 7SK4-W72H +Downloaded DOI Y54T-ETZB +Downloaded DOI W4G9-JA5M +Downloaded DOI H8PJ-XRKV +Downloaded DOI 6V86-7XAD +Downloaded DOI 4KR5-UZBR +Downloaded DOI HZAK-4UNE +No data found, error 404 +Downloaded DOI 276E-JRBR +Downloaded DOI BZNF-M9X9 +Downloaded DOI 2NKR-VB3A +Downloaded DOI VU67-ZJ7K +Downloaded DOI 69S9-BMZ9 +Downloaded DOI 84YX-5QPU +Downloaded DOI T9WW-26YA +Downloaded DOI 7VT4-UJ88 +Downloaded DOI YH92-USSE +Downloaded DOI FHZD-2NF7 +Downloaded DOI U6P9-ZMY7 +Downloaded DOI C3WU-TCCT +Downloaded DOI 8G4Q-DGT6 +Downloaded DOI H9QA-JBFF +Downloaded DOI Z6YW-7YPJ +No data found, error 404 +Downloaded DOI B3EU-Z3U4 +Downloaded DOI 5D2U-F5QZ +Downloaded DOI BMB7-F57Q +Downloaded DOI FPJ9-GMZR +Downloaded DOI SEF6-YAFV +Downloaded DOI 3SSH-8D5U +Downloaded DOI DXZR-TCPK +Downloaded DOI 57CA-8SEH +Downloaded DOI TJHW-JYF7 +Downloaded DOI GU8B-98ND +Downloaded DOI EREB-4RDC +Downloaded DOI CSPU-GXPF +Downloaded DOI Y7RX-6PQM +No data found, error 404 +Downloaded DOI S5R6-MVJS +Downloaded DOI MDXS-DP46 +Downloaded DOI ZF3B-J9X9 +Downloaded DOI SFF7-VN2M +Downloaded DOI 72E2-VNKT +Downloaded DOI 8QJH-KZYM +Downloaded DOI 7GKZ-H46T +Downloaded DOI RQCD-8922 +Downloaded DOI HR64-75S6 +Downloaded DOI 85UW-TW3C +Downloaded DOI CVFB-6T4P +Downloaded DOI K9H2-KNKP +Downloaded DOI PWCJ-5T2K +Downloaded DOI QFKT-M5XM +Downloaded DOI EBMR-HSPC +Downloaded DOI M8T8-3GNJ +Downloaded DOI JDU2-F8HW +Downloaded DOI 2SRS-6BUZ +Downloaded DOI 74CC-J55K +Downloaded DOI P495-DDRH +Downloaded DOI EZQS-6PW6 +Downloaded DOI RXBB-KC36 +Downloaded DOI F4ZH-AXPP +No data found, error 404 +Downloaded DOI CTCC-ZRST +No data found, error 404 +Downloaded DOI MC3T-8BVU +Downloaded DOI C8HZ-S6N3 +Downloaded DOI M7JE-3VV6 +Downloaded DOI KGRA-24UE +Downloaded DOI T63P-DMZ8 +Downloaded DOI TC3P-AF5C +Downloaded DOI UT9J-2W7Q +Downloaded DOI PVD7-JZ7M +Downloaded DOI UE83-XHZM +Downloaded DOI MHZJ-M5Q5 +No data found, error 404 +Downloaded DOI VQKE-JQ59 +Downloaded DOI R468-GREM +Downloaded DOI VU36-44FD +Downloaded DOI TYG8-T27K +Downloaded DOI 255B-WPGJ +Downloaded DOI 8JAR-FJ36 +Downloaded DOI PNFS-KT66 +Downloaded DOI CHES-PT7J +No data found, error 404 +No data found, error 404 +Downloaded DOI 5QMD-6BF8 +Downloaded DOI HNAK-VW2Q +Downloaded DOI 7FUT-NJ7W +Downloaded DOI 7Y9P-PPMB +Downloaded DOI SQ3X-X5MB +Downloaded DOI 6UKE-88KM +Downloaded DOI MBG7-UUCY +Downloaded DOI T66T-38MU +Downloaded DOI CY4Y-EPHU +Downloaded DOI 7RNC-3ZA4 +Downloaded DOI EYPG-86RH +Downloaded DOI FDUY-9WEC +Downloaded DOI XST2-CURD +Downloaded DOI X3S2-ARAE +Downloaded DOI 5C46-KXRH +Downloaded DOI MJCM-6WCA +Downloaded DOI UWM8-7UBG +Downloaded DOI YC6N-EU9X +Downloaded DOI T2G2-B6YV +Downloaded DOI ACA7-SSDB +Downloaded DOI YN8S-2SCS +Downloaded DOI KJAC-ZV3V +Downloaded DOI S3VZ-HSBM +Downloaded DOI QWS2-4K5V +Downloaded DOI NH2Y-AADA +Downloaded DOI 3P9H-2SB7 +Downloaded DOI QN23-3ZVE +No data found, error 404 +Downloaded DOI DTHD-MW4H +Downloaded DOI BZCP-H7YD +Downloaded DOI ZFNM-9352 +Downloaded DOI 3JKP-GJGJ +No data found, error 404 +Downloaded DOI 5UWC-8ZK2 +Downloaded DOI 7SUV-J53K +Downloaded DOI 2K9R-EN29 +Downloaded DOI W6PB-BXTK +Downloaded DOI E7B7-URAV +No data found, error 404 +Downloaded DOI KE2W-3BHR +Downloaded DOI CBW2-AT7U +Downloaded DOI JBWC-J95J +Downloaded DOI 2P9G-Q3BM +Downloaded DOI 63GR-PEDZ +Downloaded DOI XEFZ-G559 +Downloaded DOI N28V-BCF2 +Downloaded DOI 8GUH-GBY4 +Downloaded DOI DQPC-982U +Downloaded DOI N5Q8-SUKW +Downloaded DOI 637A-E2YH +Downloaded DOI N54H-PNEB +Downloaded DOI QRCU-49NX +Downloaded DOI QW83-7F88 +Downloaded DOI 9HQJ-8247 +Downloaded DOI PRF4-GGCJ +Downloaded DOI 6BHX-7NTZ +Downloaded DOI 22DT-RS7T +Downloaded DOI MBHY-Z4ZW +Downloaded DOI R2RG-QA7E +Downloaded DOI 9HB4-WHQ7 +No data found, error 404 +Downloaded DOI FUMZ-2UYQ +Downloaded DOI BW28-PE8H +Downloaded DOI 52UB-SUA8 +Downloaded DOI QFBY-7C7C +Downloaded DOI QUWT-88UW +Downloaded DOI ZRHA-VG4N +No data found, error 404 +Downloaded DOI SSDD-ZXJM +Downloaded DOI 3DPG-9WXV +Downloaded DOI JATU-HGR3 +Downloaded DOI 2GW9-7U3J +Downloaded DOI HU33-CD5J +Downloaded DOI 7AFN-GNYF +Downloaded DOI 63ZZ-68D7 +Downloaded DOI 9QHX-Y8JH +Downloaded DOI 66BN-ZGA9 +Downloaded DOI BWQK-WNEC +Downloaded DOI ECVG-F5QY +Downloaded DOI A9XH-VH4P +Downloaded DOI QRUZ-R53K +Downloaded DOI X6M4-3HJ4 +Downloaded DOI 9TU4-5PZK +Downloaded DOI 6AVH-YHF2 +Downloaded DOI 665N-M8BX +Downloaded DOI 9KN4-626Y +Downloaded DOI YQJE-Y5B7 +Downloaded DOI SJFA-PWMC +Downloaded DOI SW5Y-KF46 +Downloaded DOI 9Q3C-K8U8 +Downloaded DOI 7MXN-RKBB +Downloaded DOI CYSE-TP5V +Downloaded DOI VZ9G-KNF6 +Downloaded DOI XXRM-P5EE +Downloaded DOI 6RXY-B4P5 +Downloaded DOI DZ3D-ZJ62 +Downloaded DOI 55TU-R6SF +Downloaded DOI BC9P-F96P +Downloaded DOI UKXB-KHSZ +Downloaded DOI NM6K-8GK9 +Downloaded DOI 425M-N3DZ +Downloaded DOI 92UJ-HKXN +Downloaded DOI E6Z5-YJ4M +Downloaded DOI TN6N-UK45 +Downloaded DOI Y6YT-ZJPS +Downloaded DOI 3AD4-CMU9 +Downloaded DOI Y4RN-9A2Q +Downloaded DOI GR8F-YFBJ +Downloaded DOI 4UTT-5ZK6 +Downloaded DOI 48JR-XKZU +Downloaded DOI B44Q-NSAQ +Downloaded DOI D4G3-XBRM +Downloaded DOI KJKA-SBVW +Downloaded DOI GJYF-JGXZ +Downloaded DOI JE42-2FPP +Downloaded DOI RM8M-897F +Downloaded DOI DAFV-VM9W +Downloaded DOI FEMU-9ZSG +Downloaded DOI 3XAT-ZJUP +Downloaded DOI QVMF-DYGP +Downloaded DOI M9FE-FXKJ +Downloaded DOI NUP4-F2Y9 +Downloaded DOI RAH9-DBMG +No data found, error 404 +Downloaded DOI HWT6-9WTW +Downloaded DOI E9JC-65YX +Downloaded DOI GB5U-AGP5 +Downloaded DOI QTBZ-WS3C +No data found, error 404 +Downloaded DOI HJ2Z-MHPN +Downloaded DOI YQFA-A7XU +Downloaded DOI GA3A-BK32 +Downloaded DOI ZSQ9-WKXZ +Downloaded DOI DYW8-SM58 +Downloaded DOI YNZ5-BXTU +No data found, error 404 +Downloaded DOI 8BQX-4AHT +Downloaded DOI G3JC-YMVK +Downloaded DOI JUU5-J38V +Downloaded DOI M2PK-M3XG +No data found, error 404 +Downloaded DOI N6MS-3H8H +Downloaded DOI TN9G-EPGZ +Downloaded DOI 3QWP-C7WK +Downloaded DOI N3AK-XDP9 +Downloaded DOI 34PD-26T5 +Downloaded DOI T5D9-3JNB +Downloaded DOI KXXF-EFWY +Downloaded DOI 2365-QNHJ +Downloaded DOI YNN3-WCKW +Downloaded DOI XJ92-3PH6 +Downloaded DOI GQNQ-7U2R +Downloaded DOI 4553-8PBZ +Downloaded DOI 7WW3-VABP +Downloaded DOI TH7W-4Y3X +Downloaded DOI F5D9-GU5R +Downloaded DOI A4XG-7MG4 +Downloaded DOI XJNC-W87P +Downloaded DOI BWMV-EJGE +Downloaded DOI P37X-7XZG +Downloaded DOI Y4D4-BZPJ +No data found, error 404 +Downloaded DOI K73F-ZCEP +Downloaded DOI HA9Q-ZS8X +Downloaded DOI XHXF-TZ28 +Downloaded DOI VDPN-B5RQ +Downloaded DOI 3HY2-PDRV +Downloaded DOI DZZ5-6QYN +Downloaded DOI UUKM-J3W2 +Downloaded DOI 87FS-JWM3 +Downloaded DOI U4S8-2EAS +Downloaded DOI W45N-APX5 +Downloaded DOI 35YK-8TR6 +Downloaded DOI WR44-752R +Downloaded DOI 8AYF-RCFA +Downloaded DOI 4HSH-HGCW +Downloaded DOI GCPS-GCNC +No data found, error 404 +Downloaded DOI SVKN-48MW +Downloaded DOI RYPC-5PNT +Downloaded DOI ZVA3-AB54 +Downloaded DOI 4WEA-RDAW +Downloaded DOI K6XG-9VKH +Downloaded DOI DJZB-VG97 +Downloaded DOI TAY2-TYXZ +Downloaded DOI U93A-YQCM +Downloaded DOI DPPP-C6J5 +Downloaded DOI ZN8A-F8VN +Downloaded DOI 3EBP-8MAN +Downloaded DOI G42A-23UC +No data found, error 404 +No data found, error 404 +Downloaded DOI 7BD5-J3HT +Downloaded DOI 2WKV-MDJV +Downloaded DOI SXR8-AKD2 +Downloaded DOI 9MDV-BWF7 +No data found, error 404 +Downloaded DOI XFDP-KY93 +Downloaded DOI KQ2M-FZH6 +Downloaded DOI TKYR-QHG4 +Downloaded DOI 4KUS-DUJ3 +Downloaded DOI EFB6-3XKN +Downloaded DOI BMSW-5CCT +Downloaded DOI YAH8-CWPD +Downloaded DOI AAA2-EPN9 +Downloaded DOI M7F3-JQHN +Downloaded DOI U9KB-7H8R +Downloaded DOI HHWW-MTKW +Downloaded DOI 99CM-W6QX +Downloaded DOI UJ5F-5EXW +Downloaded DOI TYZB-CRGC +Downloaded DOI M9DG-EASW +Downloaded DOI GBAA-Z6J9 +Downloaded DOI SJJB-4RPJ +Downloaded DOI PKEX-UJ4U +Downloaded DOI QQMH-4PWN +Downloaded DOI 5EQZ-7YPG +Downloaded DOI YQFP-JE77 +Downloaded DOI QRJ4-ZAX7 +No data found, error 404 +Downloaded DOI WXC4-FU64 +Downloaded DOI P2JA-48CX +No data found, error 404 +Downloaded DOI AM9A-SKJX +Downloaded DOI 3WK6-RM34 +Downloaded DOI DNR7-7WRW +Downloaded DOI 2XRN-323C +Downloaded DOI EK4A-W9EU +Downloaded DOI P3E8-JBZ4 +Downloaded DOI 9ZCY-MS24 +Downloaded DOI 7NKN-MRTW +Downloaded DOI PT4B-B5XE +Downloaded DOI FBM7-6PWB +Downloaded DOI XAUX-8S7T +Downloaded DOI GXXZ-UR63 +Downloaded DOI RRQP-MCJJ +Downloaded DOI 4CNS-QKFN +Downloaded DOI TKZT-G8H9 +Downloaded DOI KKQA-QHD6 +Downloaded DOI 54ZV-2D72 +Downloaded DOI AS9P-72JC +Downloaded DOI HR3G-HESE +Downloaded DOI 2KCM-2TDE +Downloaded DOI X4AH-45PU +Downloaded DOI 8WVH-NKDR +Downloaded DOI GSMS-26NH +No data found, error 404 +Downloaded DOI QK4D-EBD4 +Downloaded DOI DJ8C-M9W8 +No data found, error 404 +Downloaded DOI 55EM-P7K8 +Downloaded DOI 86RG-7GTY +Downloaded DOI SRUW-GDRJ +Downloaded DOI PNCM-D4AD +Downloaded DOI B6R8-HYMV +Downloaded DOI CB75-3HW2 +No data found, error 404 +Downloaded DOI 2ZU3-BWZQ +Downloaded DOI AENZ-36JW +Downloaded DOI 78MY-39VQ +Downloaded DOI EMH6-T77F +No data found, error 404 +No data found, error 404 +Downloaded DOI 8PQF-99ED +Downloaded DOI FV7Q-5UTF +Downloaded DOI 68DX-37Y9 +No data found, error 404 +Downloaded DOI MUV9-Q3CN +Downloaded DOI GQWX-H3J7 +Downloaded DOI ZK9M-Y733 +Downloaded DOI PK4G-9F5B +Downloaded DOI NEUG-GY39 +No data found, error 404 +Downloaded DOI 6A6E-EHHJ +Downloaded DOI G8RP-KYVW +Downloaded DOI ZFJY-GHWC +Downloaded DOI WCW8-MJ2F +Downloaded DOI TJHA-KXXS +Downloaded DOI QYH5-TM3U +Downloaded DOI PUSK-MF9J +Downloaded DOI HTK7-ZBNB +Downloaded DOI 277C-PWEA +Downloaded DOI 2ZQW-S82J +Downloaded DOI 34D5-X5JM +Downloaded DOI 88PY-QDTS +No data found, error 404 +No data found, error 404 +Downloaded DOI 5M89-ANSK +Downloaded DOI RVV6-M4Z8 +Downloaded DOI VKJ5-7HWT +Downloaded DOI CB7B-Y5DU +Downloaded DOI B7ZF-VAYK +Downloaded DOI WK4A-3G4U +Downloaded DOI A624-E6XJ +Downloaded DOI 2KEB-RBM4 +No data found, error 404 +Downloaded DOI RRSN-HDUT +Downloaded DOI ARJX-7XYF +Downloaded DOI M5Y7-BQ9V +Downloaded DOI 7JZY-M4Y8 +No data found, error 404 +No data found, error 404 +Downloaded DOI XTHR-CJVK +Downloaded DOI Z5Y4-MVDV +Downloaded DOI BFM8-XM6H +Downloaded DOI F9RF-DVVT +Downloaded DOI ASPN-BFM5 +No data found, error 404 +Downloaded DOI EA3N-9Q2B +Downloaded DOI 2D5G-GN4W +Downloaded DOI 9QXH-F55F +Downloaded DOI 8JQJ-QYCT +Downloaded DOI BXNN-JBJD +Downloaded DOI PVPY-JUG2 +Downloaded DOI R7FR-4HFQ +Downloaded DOI PJGV-HEKD +Downloaded DOI EUPQ-BE64 +Downloaded DOI TPGA-XM3N +Downloaded DOI T24B-22ZQ +Downloaded DOI UX4K-HED9 +Downloaded DOI 8HEM-HTP9 +Downloaded DOI 66K9-VVQT +Downloaded DOI AZYT-RHRB +Downloaded DOI FCKA-VV68 +Downloaded DOI X5SN-N2KY +Downloaded DOI 2REA-UDX4 +Downloaded DOI PXQJ-PZW2 +Downloaded DOI NA55-EB23 +Downloaded DOI EWPW-4P3B +No data found, error 404 +Downloaded DOI Q2EJ-NZGM +Downloaded DOI 9TXY-V5FU +Downloaded DOI TSXP-9QNR +Downloaded DOI 8DZR-9VHM +No data found, error 404 +Downloaded DOI WNKA-2HTA +Downloaded DOI QGY9-YN2F +Downloaded DOI XX9R-6VK7 +Downloaded DOI GT9X-Z2VJ +Downloaded DOI SHVW-7QJD +Downloaded DOI 9GFU-Y82Y +Downloaded DOI D8R6-V3RQ +Downloaded DOI T228-3V74 +Downloaded DOI BWRS-HEZG +Downloaded DOI SYW8-GVMK +Downloaded DOI F2VH-Q56U +Downloaded DOI KYD7-WHYG +Downloaded DOI P5KX-YDRX +Downloaded DOI J2QV-GMHE +Downloaded DOI 7WMK-MHNP +Downloaded DOI BP2J-N4RB +Downloaded DOI UMWQ-KV9S +No data found, error 404 +Downloaded DOI H793-J5QT +Downloaded DOI 9T64-EK52 +No data found, error 404 +Downloaded DOI B3SM-ZA3P +Downloaded DOI 4UJ2-NH8A +Downloaded DOI EERM-7ZXZ +Downloaded DOI U568-YMUB +Downloaded DOI 9ASF-3TYB +Downloaded DOI FB7T-X33U +Downloaded DOI BTVX-4AVV +Downloaded DOI U698-U92H +Downloaded DOI BM32-DA8E +Downloaded DOI Z7MJ-CHES +Downloaded DOI HF9M-7UEQ +No data found, error 404 +Downloaded DOI 9NKG-H6NG +Downloaded DOI TGT4-HFXS +Downloaded DOI 9VF9-DSM2 +Downloaded DOI AX4K-KP8D +Downloaded DOI A9NE-UFRH +Downloaded DOI MFR7-EQ4J +Downloaded DOI M2FC-CTQB +No data found, error 404 +Downloaded DOI FWEM-3QEN +Downloaded DOI EKDP-BKRZ +Downloaded DOI 9AK5-GJXS +Downloaded DOI ZK2F-XKYD +No data found, error 404 +Downloaded DOI GQ5K-6BHR +Downloaded DOI AXK9-DWNT +Downloaded DOI EDTW-ZQ5Y +Downloaded DOI JX59-2BNH +Downloaded DOI FVSU-DUEA +Downloaded DOI NJZ3-UGET +Downloaded DOI ZMU8-ADQ5 +Downloaded DOI NEQC-PC34 +Downloaded DOI EMW3-U74G +Downloaded DOI ECXZ-CGQJ +Downloaded DOI CV35-4MGF +Downloaded DOI WJZR-TUXN +Downloaded DOI 3M9Z-648F +Downloaded DOI Y5M2-S5MF +Downloaded DOI 7848-39SV +Downloaded DOI 5VAS-4YRQ +Downloaded DOI 74GS-KN4H +Downloaded DOI MQZY-8PAT +Downloaded DOI E3M4-GPQC +Downloaded DOI NDXJ-CB3D +Downloaded DOI ZH9B-8BVF +Downloaded DOI HCRP-JBYF +No data found, error 404 +Downloaded DOI AZTR-ZTBP +Downloaded DOI 43ED-2B7P +Downloaded DOI 8U4M-EP2S +Downloaded DOI PZMS-HEWW +No data found, error 404 +Downloaded DOI A8AA-X3SN +No data found, error 404 +Downloaded DOI GADZ-9X9P +Downloaded DOI CYCZ-GAWG +Downloaded DOI MJU9-WSNC +Downloaded DOI E92X-VQZN +Downloaded DOI CC9Q-8A7Q +No data found, error 404 +Downloaded DOI Z9N3-9BEV +Downloaded DOI 4PUD-9VF3 +Downloaded DOI K2M9-YD3V +Downloaded DOI EXBX-6DGS +Downloaded DOI USGY-T224 +Downloaded DOI EJJC-JAC3 +Downloaded DOI TCSY-YCCJ +Downloaded DOI CP7M-DSXP +Downloaded DOI XTXF-PFS3 +Downloaded DOI FNC3-4WQ3 +Downloaded DOI WKZ8-G9PV +Downloaded DOI JXHM-HNC5 +Downloaded DOI NTXV-AMGU +Downloaded DOI 5F27-XU27 +Downloaded DOI CTYC-6Q2R +Downloaded DOI FMBX-GGFE +Downloaded DOI ZBUV-AW67 +Downloaded DOI UDKZ-NXTF +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI 6PQX-C6V2 +Downloaded DOI S5DH-GVZT +Downloaded DOI R8X9-HYNT +Downloaded DOI HG5Y-VNT8 +Downloaded DOI 4KQM-RJBQ +Downloaded DOI XPEH-HGWE +Downloaded DOI CAYU-7GHG +Downloaded DOI QXYY-A46R +Downloaded DOI PH42-G596 +Downloaded DOI TCTU-DTQB +Downloaded DOI AKZA-6Q3V +No data found, error 404 +Downloaded DOI VWNU-8WHT +Downloaded DOI KH9N-2ZTS +Downloaded DOI KUG7-98MB +Downloaded DOI FBWK-AG3G +Downloaded DOI 2HPC-24FQ +Downloaded DOI VWT9-K5VM +Downloaded DOI BP8J-KP8P +Downloaded DOI EUXF-2E59 +Downloaded DOI ABJM-H75G +Downloaded DOI U7XX-TXQ4 +Downloaded DOI XQKY-X5ZG +Downloaded DOI VTCM-5TXK +Downloaded DOI SKBH-C6JD +Downloaded DOI QZF9-FRU3 +Downloaded DOI T7CA-ZBBH +Downloaded DOI 8JAB-2VMZ +Downloaded DOI HAS7-GBA4 +Downloaded DOI NJST-EAHW +Downloaded DOI 46GS-3KA4 +Downloaded DOI 6BPZ-EB4W +Downloaded DOI HYQN-VAN3 +Downloaded DOI WTVV-52CZ +Downloaded DOI 9HM9-RK9J +No data found, error 404 +Downloaded DOI NUZ5-JG5A +Downloaded DOI PB6T-HWCE +Downloaded DOI S227-PQTQ +No data found, error 404 +Downloaded DOI 75DP-TYS4 +No data found, error 404 +Downloaded DOI QKNM-SPV8 +Downloaded DOI HBPQ-7M75 +Downloaded DOI 52RU-CSHA +Downloaded DOI X6R8-VYAH +Downloaded DOI 464P-S2PV +Downloaded DOI R2BF-65SF +Downloaded DOI FRYS-ATU5 +Downloaded DOI 89YZ-KK3Y +Downloaded DOI MPGT-YKGC +Downloaded DOI V3CX-X7MY +Downloaded DOI V3C8-R93A +Downloaded DOI AAZV-4MDQ +Downloaded DOI UJJB-UKX5 +Downloaded DOI YA6T-8NCJ +No data found, error 404 +Downloaded DOI FWJY-BYFW +No data found, error 404 +Downloaded DOI TE9M-MC6M +No data found, error 404 +Downloaded DOI GACN-Z2AN +Downloaded DOI VK8E-RH99 +Downloaded DOI HKVQ-8D8G +Downloaded DOI 7ZVT-MB9X +Downloaded DOI JB5T-AT6J +No data found, error 404 +Downloaded DOI FW46-RX63 +Downloaded DOI QWV7-NDKV +Downloaded DOI DS9Z-997T +Downloaded DOI W2HZ-NUCN +Downloaded DOI 5X8H-FCTN +Downloaded DOI THF2-X5KE +Downloaded DOI A9TC-GRU4 +Downloaded DOI TNQF-MTUA +Downloaded DOI YJA7-QZQH +Downloaded DOI Z9V6-FWYV +Downloaded DOI SNCV-GNF6 +Downloaded DOI YEFQ-CNWM +Downloaded DOI SSTB-KXRM +Downloaded DOI BVCS-68AC +No data found, error 404 +Downloaded DOI USCT-H7RD +Downloaded DOI XTEZ-QEHV +Downloaded DOI J4JK-DVTJ +Downloaded DOI XQTV-6APT +Downloaded DOI F9DD-GNQH +Downloaded DOI RP9F-JDYP +Downloaded DOI 3C65-U9UR +Downloaded DOI APS2-7FYB +Downloaded DOI 8S5Y-VR6F +Downloaded DOI AFR9-5A7Y +Downloaded DOI 2SPK-9GUX +Downloaded DOI 43ZG-DKR8 +Downloaded DOI FQRQ-8YEM +Downloaded DOI NHDS-NDDQ +Downloaded DOI 98NT-67YB +Downloaded DOI 2BTD-8A7V +Downloaded DOI 3YN6-5RKN +Downloaded DOI QMVC-CTJE +No data found, error 404 +Downloaded DOI 4Q65-H65H +No data found, error 404 +Downloaded DOI 6MPA-4G9Y +Downloaded DOI D3AJ-949X +Downloaded DOI CVX9-5VTU +Downloaded DOI EGTM-5FE2 +Downloaded DOI XEE6-B73P +No data found, error 404 +Downloaded DOI 2GVM-AV4T +Downloaded DOI RF2S-8JA8 +Downloaded DOI ECB2-D6BQ +Downloaded DOI 4DRM-5ZSC +Downloaded DOI 5YQG-6CCD +Downloaded DOI GA7Y-5N7B +Downloaded DOI YXJK-F2HR +Downloaded DOI VXD6-RB2W +Downloaded DOI 72G5-DYBD +Downloaded DOI 5QBW-XQSR +Downloaded DOI V58J-WCD4 +Downloaded DOI 97CS-AM8G +Downloaded DOI SXT5-8R4X +Downloaded DOI SQQ5-2WT6 +Downloaded DOI 6FXE-STM5 +Downloaded DOI GQ4Y-QMA3 +Downloaded DOI RQCZ-Z5KT +Downloaded DOI RKWR-HA8U +Downloaded DOI X962-H2CJ +Downloaded DOI E76A-YW4E +Downloaded DOI CZSJ-QV4T +Downloaded DOI N6Q7-GUNP +Downloaded DOI 5YU8-WJE5 +Downloaded DOI 9PA5-XN3H +Downloaded DOI CDH8-N96W +Downloaded DOI 38AU-CVMR +Downloaded DOI 8BFH-FTYN +Downloaded DOI DWN4-T22K +Downloaded DOI CR5B-AQ6V +Downloaded DOI HKK2-9355 +Downloaded DOI VBC6-RF5H +Downloaded DOI 8VG3-GVSZ +Downloaded DOI 6S9N-GBF7 +Downloaded DOI PC3Q-FZPP +Downloaded DOI 48MV-QXEJ +Downloaded DOI R76G-YE8Z +Downloaded DOI 8MRX-G92H +Downloaded DOI YPYH-4QP2 +Downloaded DOI PZM2-GBN4 +Downloaded DOI RGPG-85P8 +Downloaded DOI UN38-T7P7 +Downloaded DOI 74PA-E27C +No data found, error 404 +Downloaded DOI UAR3-Q5U7 +Downloaded DOI XP9X-Y625 +Downloaded DOI QGKP-FN6X +Downloaded DOI 7H95-TQ3Z +No data found, error 404 +No data found, error 404 +Downloaded DOI CCZ2-XRZA +Downloaded DOI RCV6-A36E +Downloaded DOI 5PYT-AVSU +Downloaded DOI QR2F-KFYU +Downloaded DOI GN5R-8MVB +Downloaded DOI 8VEK-XDTH +Downloaded DOI AWBE-PC97 +Downloaded DOI ZAKZ-XQJP +Downloaded DOI RMGQ-5HK3 +Downloaded DOI ABPV-XZX2 +Downloaded DOI 2HD4-94S7 +No data found, error 404 +Downloaded DOI QTPE-Y9AQ +Downloaded DOI GFAC-4D79 +Downloaded DOI MV26-8W3C +Downloaded DOI K2JY-D94Z +Downloaded DOI V6J8-X882 +Downloaded DOI T72J-HNNS +Downloaded DOI 49AW-N3W8 +No data found, error 404 +Downloaded DOI XEPY-2DK6 +Downloaded DOI PK5S-M2BH +No data found, error 404 +Downloaded DOI WXJD-FWV3 +Downloaded DOI WXVJ-Y2JF +Downloaded DOI VVDR-7AQG +Downloaded DOI DQPC-7ET5 +No data found, error 404 +Downloaded DOI 4KSR-FGES +Downloaded DOI 2B34-8T7T +Downloaded DOI 4F7W-HAV8 +Downloaded DOI F5GC-RACY +Downloaded DOI KCWB-527J +Downloaded DOI KC2A-RDNQ +Downloaded DOI PD3U-KFMK +No data found, error 404 +Downloaded DOI CFXG-ASS4 +Downloaded DOI XNG9-PDDY +Downloaded DOI 2NGM-ZSGQ +No data found, error 404 +Downloaded DOI B4EE-V3PN +Downloaded DOI AW64-Z7H6 +Downloaded DOI TA4F-4C74 +Downloaded DOI KGXA-P2Z8 +Downloaded DOI D85A-BNFD +Downloaded DOI 4URK-2TEK +Downloaded DOI 29HQ-CYX9 +Downloaded DOI U54Q-RY8X +Downloaded DOI 8M26-R8CY +Downloaded DOI Z8B8-UAGG +Downloaded DOI QDHU-6K3G +Downloaded DOI J889-3SU3 +Downloaded DOI 47RX-E99A +Downloaded DOI 8QKN-QFH3 +Downloaded DOI 6ZSW-R8ZP +Downloaded DOI AFZZ-FRGE +Downloaded DOI UZK7-BHZG +Downloaded DOI PUU5-4SUA +Downloaded DOI 373J-YRNT +Downloaded DOI UZ5S-ENS2 +Downloaded DOI 8CSE-ZME7 +Downloaded DOI TM39-8TMC +Downloaded DOI 82AF-E47G +No data found, error 404 +Downloaded DOI ZZVH-MD82 +Downloaded DOI 9DY7-GU6R +Downloaded DOI CZVC-SGDH +Downloaded DOI 7N5C-R5XZ +Downloaded DOI Q44C-CKFB +Downloaded DOI VCQK-768W +No data found, error 404 +Downloaded DOI QXD4-7J3Q +Downloaded DOI V3WK-8AU9 +Downloaded DOI N497-43MA +Downloaded DOI 45KN-TMX7 +Downloaded DOI 6B5K-98EY +Downloaded DOI CMSZ-X8EM +Downloaded DOI A2VX-3VAN +Downloaded DOI KJ5X-GFN9 +Downloaded DOI H4R6-DFU8 +Downloaded DOI N466-4X7A +Downloaded DOI RRHN-NSNN +Downloaded DOI DDSG-4YET +Downloaded DOI UUMF-7MQP +Downloaded DOI W44J-SXTX +Downloaded DOI 5AYJ-XQX8 +Downloaded DOI ESAE-CZ4C +Downloaded DOI 5ZVS-HWJQ +Downloaded DOI Q4XQ-5KVE +Downloaded DOI ES8V-RZSQ +Downloaded DOI Z5DR-9E59 +Downloaded DOI S2TB-39UX +Downloaded DOI R8J7-THQ8 +Downloaded DOI 38A8-N2FH +No data found, error 404 +Downloaded DOI 9BU9-BXZK +Downloaded DOI Q7BS-CNA5 +Downloaded DOI UEGG-FJ7X +Downloaded DOI SYKG-RZBD +No data found, error 404 +Downloaded DOI DNNK-MY5Y +Downloaded DOI 45TQ-K5SS +Downloaded DOI F29Z-X5C4 +Downloaded DOI R3UY-ATAA +Downloaded DOI SVKF-RG8C +No data found, error 404 +Downloaded DOI W3ZP-KC2E +Downloaded DOI 5936-E7TV +Downloaded DOI HNFZ-GBZY +Downloaded DOI 69DZ-46H2 +Downloaded DOI NQQA-BJJG +Downloaded DOI GV9M-J6NG +No data found, error 404 +Downloaded DOI B9MB-YCPZ +Downloaded DOI AMKB-557Z +Downloaded DOI 5V8W-WCW6 +Downloaded DOI 6GW4-NRHT +Downloaded DOI BWET-XJDF +Downloaded DOI K8BF-SZ3D +Downloaded DOI 6DS8-KGYD +Downloaded DOI 6AVN-YF5W +Downloaded DOI A6MP-BCAQ +Downloaded DOI 5VSZ-BH33 +Downloaded DOI 8UEM-E3V4 +Downloaded DOI EW55-3XUY +Downloaded DOI 8BYU-QW7W +Downloaded DOI XKVU-AY2W +Downloaded DOI HAMC-EGJ4 +No data found, error 404 +No data found, error 404 +Downloaded DOI UFJH-XYF7 +Downloaded DOI DR57-APT3 +Downloaded DOI 5ZAD-2G6U +Downloaded DOI X4Y2-KZ9R +Downloaded DOI XBEV-NWSP +Downloaded DOI X4AZ-8VKJ +Downloaded DOI 9R7D-PZRV +Downloaded DOI UPF6-P65Q +Downloaded DOI 7M2A-YGDC +Downloaded DOI QM5Y-43HZ +Downloaded DOI 689H-5765 +Downloaded DOI EP4S-BTBJ +Downloaded DOI E2HX-339Y +Downloaded DOI RBJ7-2H67 +Downloaded DOI P79U-2CUK +Downloaded DOI W8H4-FJHM +Downloaded DOI UUB9-XZSS +Downloaded DOI QBWR-DCMG +Downloaded DOI AV5J-K94R +Downloaded DOI SUE9-3VKC +Downloaded DOI ZZFZ-RUW8 +Downloaded DOI 3XVJ-QQMF +Downloaded DOI CNRK-6RJB +Downloaded DOI Q4BN-8JZR +Downloaded DOI C9S8-KPZT +Downloaded DOI C9W4-Z5V7 +Downloaded DOI 2TE6-B898 +Downloaded DOI P4KP-3PFR +No data found, error 404 +Downloaded DOI XNUV-PNVE +Downloaded DOI RN2M-GJQZ +Downloaded DOI VZ3H-PKSA +Downloaded DOI 2AVG-69HA +Downloaded DOI SWZW-GR2J +Downloaded DOI 78E4-HR53 +Downloaded DOI XKPS-T5M4 +Downloaded DOI X92V-FR2P +Downloaded DOI 4A6J-36KH +Downloaded DOI YDNS-BQEK +Downloaded DOI U5FV-S3PJ +Downloaded DOI P4FZ-Y8RE +Downloaded DOI 6SJT-H4XT +Downloaded DOI MQWA-3Z39 +Downloaded DOI 9MCB-Y68Q +Downloaded DOI 74V9-EFR9 +Downloaded DOI J9EQ-S62S +Downloaded DOI Z6DJ-MZG8 +Downloaded DOI D855-P3DF +No data found, error 404 +Downloaded DOI WQDN-WUN2 +Downloaded DOI XV3G-2FJM +Downloaded DOI RSTY-V7MF +Downloaded DOI 5U4T-APJN +No data found, error 404 +Downloaded DOI 8UW6-YGRW +Downloaded DOI K83G-VG9Y +Downloaded DOI UTPJ-Y3W9 +Downloaded DOI TBY5-TP4P +Downloaded DOI SZMN-H7VW +Downloaded DOI ZYCM-6MUJ +Downloaded DOI BY5X-YU4C +Downloaded DOI JSAW-KPJN +Downloaded DOI 8E4M-ZPY2 +Downloaded DOI ZWHD-9P8H +No data found, error 404 +No data found, error 404 +Downloaded DOI MBTF-EUV6 +Downloaded DOI C669-HCQP +Downloaded DOI U2ZC-DM4X +Downloaded DOI MSJY-ATJ9 +Downloaded DOI 652Q-WT6T +Downloaded DOI D7GM-65BS +Downloaded DOI PARA-XZKA +Downloaded DOI ND9X-698N +Downloaded DOI VAXN-96DC +Downloaded DOI NM33-ZE6S +Downloaded DOI UAG2-QD7Y +Downloaded DOI 49GN-5D39 +Downloaded DOI 8G32-KM73 +Downloaded DOI SA97-8X7B +Downloaded DOI 7HGU-44F7 +Downloaded DOI 2MEF-WBNS +Downloaded DOI ZYXT-TUU2 +Downloaded DOI C44Z-QUXH +No data found, error 404 +Downloaded DOI N4VB-RUG5 +Downloaded DOI AEBJ-CS5X +Downloaded DOI C985-SAJJ +Downloaded DOI ZZSK-QT2A +Downloaded DOI EBB4-8SQV +Downloaded DOI MUYM-BHZE +Downloaded DOI ZZQY-CPQB +Downloaded DOI WESH-NHMW +Downloaded DOI JEW6-X64B +Downloaded DOI G37A-HHJY +Downloaded DOI SU2B-J8BF +Downloaded DOI QZGN-8GKZ +Downloaded DOI 4WZZ-YCUA +Downloaded DOI 66S3-QFAK +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI 8CXN-Y9R9 +Downloaded DOI J9KN-GNXT +Downloaded DOI FYKJ-9K5B +Downloaded DOI RRNT-4DDA +Downloaded DOI 8PGB-KNHC +Downloaded DOI 683T-6U2N +Downloaded DOI ZC5H-5EWN +Downloaded DOI U8PG-7R3R +Downloaded DOI YPZM-AK5M +Downloaded DOI 597D-98KD +Downloaded DOI VA2B-DZJA +Downloaded DOI TZUT-2J6H +No data found, error 404 +Downloaded DOI QZSJ-MD2J +Downloaded DOI EPKJ-3M7D +Downloaded DOI PY27-3VCU +Downloaded DOI G4AW-J2UV +Downloaded DOI STDG-8XZP +Downloaded DOI AET7-YPVE +Downloaded DOI EFU4-WQCW +No data found, error 404 +Downloaded DOI 3KWQ-A6U3 +Downloaded DOI 8T2V-UPSJ +Downloaded DOI 8TYQ-CB6U +Downloaded DOI Q4NF-HHF5 +Downloaded DOI GB2X-ME92 +Downloaded DOI PG5H-9CSH +Downloaded DOI QF74-6TXP +Downloaded DOI 8QCM-UXPG +Downloaded DOI E9UW-HQ77 +Downloaded DOI VH4K-KAGT +Downloaded DOI SEYS-FHHF +No data found, error 404 +Downloaded DOI 5AZX-NKF9 +Downloaded DOI SU7H-EXTP +Downloaded DOI 5HTG-C5EQ +Downloaded DOI AJDP-2UEX +Downloaded DOI TSK9-AT93 +Downloaded DOI V96R-X3B4 +Downloaded DOI 5UV6-HF7P +Downloaded DOI QDMU-29GW +Downloaded DOI QTSD-6YND +Downloaded DOI KJ4N-5YHE +No data found, error 404 +Downloaded DOI D662-5KZM +Downloaded DOI UJFK-7KEN +Downloaded DOI XSF9-Y6G2 +Downloaded DOI SHX9-4D85 +Downloaded DOI 3FDA-FEVV +Downloaded DOI NKFT-DYQV +No data found, error 404 +Downloaded DOI B3AJ-DXHS +No data found, error 404 +No data found, error 404 +Downloaded DOI AST6-AK2K +Downloaded DOI C3EU-GJQX +Downloaded DOI B4QQ-D5PH +Downloaded DOI 9NCJ-Z6HT +Downloaded DOI NNF7-QBEB +No data found, error 404 +Downloaded DOI 6MGR-ZTF7 +Downloaded DOI YTVN-YDVT +No data found, error 404 +Downloaded DOI 8TJ7-2XQX +Downloaded DOI MTUE-WAYG +Downloaded DOI JXXT-EMUE +Downloaded DOI YHWH-FS6H +Downloaded DOI UHJZ-F6M4 +Downloaded DOI 88HY-8H4T +Downloaded DOI AVVG-JCP5 +Downloaded DOI VYB5-VANG +Downloaded DOI 92PE-DP5F +Downloaded DOI CBFG-95HZ +Downloaded DOI BKM8-AEAT +Downloaded DOI FRP7-QETB +Downloaded DOI JXRH-M4CH +Downloaded DOI UDC9-WG58 +Downloaded DOI 3X7Y-EBHG +No data found, error 404 +No data found, error 404 +Downloaded DOI T9WF-6VDM +Downloaded DOI MHT7-PUZC +Downloaded DOI NENA-3EBP +Downloaded DOI WSKR-QJNN +Downloaded DOI 5NXH-HWQ4 +Downloaded DOI TBRD-HQMJ +Downloaded DOI PQYV-PB4R +Downloaded DOI NUJX-B8SW +Downloaded DOI HTCU-KPUV +Downloaded DOI 4SSA-A5AN +Downloaded DOI 734K-KN4F +Downloaded DOI H5GJ-5PYS +Downloaded DOI MMFV-UX3U +No data found, error 404 +Downloaded DOI 8MQ3-TVWW +Downloaded DOI AX4R-47WM +Downloaded DOI JG28-F9WF +Downloaded DOI J7CC-HTHM +Downloaded DOI YWMY-NSTK +Downloaded DOI HTNE-497H +Downloaded DOI A5BC-RQFZ +Downloaded DOI D45Q-MBZ5 +Downloaded DOI RM6G-8CY3 +Downloaded DOI X7CQ-ENTS +Downloaded DOI A2C3-TZ2D +Downloaded DOI ES6N-PDMW +Downloaded DOI 72DV-R9GW +Downloaded DOI GJBQ-UB55 +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI MFG8-YQRK +Downloaded DOI 7ZWC-ZFW2 +Downloaded DOI VSWT-F5NM +Downloaded DOI R9YY-Z4AK +Downloaded DOI 5JSB-4CBM +Downloaded DOI YQC7-S8HM +Downloaded DOI GQB9-JKRC +Downloaded DOI K8SN-XQWJ +Downloaded DOI RPUD-UBAG +No data found, error 404 +Downloaded DOI FCRZ-NNJZ +Downloaded DOI ZKE2-GUC8 +Downloaded DOI 2S6E-BE65 +Downloaded DOI MTQD-9FSW +Downloaded DOI VHTF-GKGW +Downloaded DOI RHGR-NZAJ +Downloaded DOI W5MN-WW8A +Downloaded DOI VMJV-3XMY +Downloaded DOI D6M7-A9ND +Downloaded DOI PKEQ-S9PT +Downloaded DOI 7KND-4CCV +Downloaded DOI 4QJ3-RHC8 +Downloaded DOI QCGR-PWK3 +No data found, error 404 +No data found, error 404 +Downloaded DOI EQWK-TV29 +Downloaded DOI WWFN-Z9KY +Downloaded DOI GKBC-4WTU +Downloaded DOI 6BU4-9EAP +Downloaded DOI RR7W-3J39 +Downloaded DOI 3WRM-H6VU +Downloaded DOI UU6A-AA49 +Downloaded DOI FU46-HZE4 +Downloaded DOI PMZ6-ZYVD +Downloaded DOI 3ZYN-QW99 +Downloaded DOI YZ22-XSVU +No data found, error 404 +Downloaded DOI PEQG-9XKC +Downloaded DOI QVKZ-H8SG +Downloaded DOI UGVY-E92W +Downloaded DOI H8QX-ZFPC +Downloaded DOI EWYX-GJYM +Downloaded DOI XGJH-SWEZ +Downloaded DOI M5J5-T8MN +Downloaded DOI ANKE-XXT8 +Downloaded DOI ZN3G-8TYP +Downloaded DOI 638J-E6YQ +Downloaded DOI UP4S-83KW +Downloaded DOI 4JGN-ZDHF +Downloaded DOI 3SPQ-YXUE +Downloaded DOI 9UW9-AQ3J +Downloaded DOI ZSXV-VDEX +Downloaded DOI UYGH-2HWV +No data found, error 404 +Downloaded DOI Y2C3-R86T +No data found, error 404 +Downloaded DOI JX4Z-PTFM +Downloaded DOI WZ3N-E6T8 +Downloaded DOI 5GXJ-39J6 +Downloaded DOI Q3Z3-AW4T +No data found, error 404 +Downloaded DOI K4YN-5ZZH +Downloaded DOI AJN4-PMSS +Downloaded DOI BZDF-2KWC +Downloaded DOI DY3U-CUDR +Downloaded DOI X5DQ-UWMM +Downloaded DOI 75QE-CF95 +Downloaded DOI UDT9-D4A6 +Downloaded DOI DPEW-KZYQ +No data found, error 404 +Downloaded DOI GKAW-6KE6 +Downloaded DOI YSVD-JG97 +Downloaded DOI 9D4U-CHWF +Downloaded DOI 94FF-3TXD +Downloaded DOI ZWHV-8U8E +Downloaded DOI B86H-KZ85 +Downloaded DOI 48RX-H7WX +Downloaded DOI 4VQ9-FCZB +Downloaded DOI Z2M8-75RB +Downloaded DOI 7EHH-B3M9 +Downloaded DOI EBYR-V7F4 +Downloaded DOI H4F9-6D76 +Downloaded DOI X3WW-4PAS +Downloaded DOI RAZG-HNBF +Downloaded DOI UPK5-3SE9 +Downloaded DOI FUT6-63EN +Downloaded DOI NMW2-TXB2 +Downloaded DOI TNAF-2VE3 +Downloaded DOI MRJT-N5M3 +Downloaded DOI PGTC-CMC6 +Downloaded DOI 2Z4K-VFC3 +Downloaded DOI 6KW6-W425 +Downloaded DOI FNGR-5R35 +Downloaded DOI GZN9-ATEN +Downloaded DOI CNW5-7FRG +Downloaded DOI PYS8-4N8W +Downloaded DOI 3XUW-KFBA +No data found, error 404 +No data found, error 404 +Downloaded DOI U5CM-M4ZX +Downloaded DOI 4FQ7-94FC +Downloaded DOI 8ZAT-SQVB +Downloaded DOI WPFY-Q9XB +Downloaded DOI YJJT-J2WR +Downloaded DOI PJYH-HQQT +Downloaded DOI 8ZEV-8NHJ +Downloaded DOI 2DTD-VR84 +No data found, error 404 +Downloaded DOI 8E5D-PEMX +Downloaded DOI B3UT-3R4S +Downloaded DOI FC6F-EVD3 +Downloaded DOI C34Z-2QZE +Downloaded DOI VRHY-SNVQ +Downloaded DOI TAWF-MFDW +Downloaded DOI 6K6A-WTYU +Downloaded DOI GDNV-J56M +Downloaded DOI V8B5-RK8K +Downloaded DOI KBJY-FC8C +Downloaded DOI U8ZU-EWE7 +Downloaded DOI FBYN-7KXT +Downloaded DOI WQA6-Z8TW +Downloaded DOI X665-3V9H +Downloaded DOI WS5H-ZKJT +Downloaded DOI TCHU-VJJK +No data found, error 404 +Downloaded DOI M5D2-C9DM +Downloaded DOI PSTQ-JJKB +Downloaded DOI YQQV-3V3S +Downloaded DOI DGJU-RWUT +Downloaded DOI RS4K-JWNE +Downloaded DOI XD74-VFQ5 +Downloaded DOI 4EXV-D3FJ +Downloaded DOI G2ZR-52SE +Downloaded DOI 8B3N-TTJK +Downloaded DOI 4G88-DVAC +Downloaded DOI KF8N-5XUG +Downloaded DOI CDP4-VECK +Downloaded DOI Z3PZ-8MK5 +Downloaded DOI KNUJ-43SP +Downloaded DOI M5JF-S9QS +Downloaded DOI GZN9-URXH +Downloaded DOI GRH4-CFXS +Downloaded DOI CZBA-PYJA +No data found, error 404 +Downloaded DOI EVE7-E6J4 +Downloaded DOI TG73-4F4T +Downloaded DOI M5ES-TCNV +Downloaded DOI QMWC-8Y4C +Downloaded DOI 6V8W-N9VM +Downloaded DOI VNYM-9HQR +Downloaded DOI JNA7-KMN2 +Downloaded DOI HFYN-99CS +Downloaded DOI 4Z42-MPBV +Downloaded DOI 8Z6V-PKJK +Downloaded DOI S7GU-B2Q4 +Downloaded DOI T6Q7-ZCQY +Downloaded DOI MZJ2-KS7Y +Downloaded DOI 9KJM-KPAW +Downloaded DOI 8SCE-2UPZ +Downloaded DOI ZKUX-RCNF +Downloaded DOI 8XSG-MG3Z +Downloaded DOI 4J6H-QND4 +Downloaded DOI E7JS-CQNM +Downloaded DOI RQ5U-QCXU +Downloaded DOI 6QBB-M95Q +Downloaded DOI MEQM-XCJK +Downloaded DOI 7Q9Y-AUA7 +Downloaded DOI CJME-5NG2 +No data found, error 404 +Downloaded DOI SGDR-NRU6 +Downloaded DOI 2J47-78E9 +Downloaded DOI 3MRM-DSSK +Downloaded DOI A7VM-VET5 +Downloaded DOI XZXN-5N2H +Downloaded DOI KAFH-YQZ6 +Downloaded DOI D4S8-KHXT +Downloaded DOI HG9T-995E +No data found, error 404 +Downloaded DOI ZJJG-SB55 +Downloaded DOI J4N2-APFY +Downloaded DOI V4W4-NVX6 +Downloaded DOI KQR6-D5JV +No data found, error 404 +Downloaded DOI AT5H-REQQ +Downloaded DOI B4P4-R2UV +Downloaded DOI SVZC-QG8F +No data found, error 404 +No data found, error 404 +Downloaded DOI W8DF-KKEP +Downloaded DOI DCP8-K5V9 +Downloaded DOI UW9P-932X +Downloaded DOI 4PQA-ENTG +Downloaded DOI J7NS-RJCF +Downloaded DOI PEWM-J6HU +Downloaded DOI THUT-ZU6W +Downloaded DOI 9FGK-NAA9 +Downloaded DOI RA3C-RYMM +No data found, error 404 +Downloaded DOI C26V-JV88 +Downloaded DOI X63Z-CYMY +Downloaded DOI P2JD-KFAB +Downloaded DOI CAYV-KPQR +Downloaded DOI 5745-N9JS +Downloaded DOI 4DG3-98ZG +Downloaded DOI UH4K-6S6G +Downloaded DOI VSNN-FX6T +Downloaded DOI P2US-TYS2 +Downloaded DOI J8VM-CXE5 +Downloaded DOI TD98-6XHZ +Downloaded DOI WKA2-B8ZN +Downloaded DOI 5SJG-2XSP +Downloaded DOI P6JQ-3RKB +Downloaded DOI 8FC7-JSWW +Downloaded DOI EJ7Y-EC8G +Downloaded DOI FTUY-6BFT +Downloaded DOI SNE8-D8J2 +Downloaded DOI 8N2V-EF4A +Downloaded DOI HG84-ZHG5 +Downloaded DOI 69F4-YD7M +Downloaded DOI 3BV4-HYY7 +Downloaded DOI ZY4G-DCTB +Downloaded DOI Q9NV-AC8X +No data found, error 404 +Downloaded DOI 3VC3-97PC +Downloaded DOI 8W8N-H5N9 +Downloaded DOI 58C7-DKYF +Downloaded DOI 7X2K-KGQ5 +Downloaded DOI 4T4D-WAX4 +Downloaded DOI J8EP-HR89 +Downloaded DOI 22WH-UHEZ +No data found, error 404 +Downloaded DOI 4XM8-QV7B +Downloaded DOI BPDB-G6V6 +Downloaded DOI X3XN-CFNY +Downloaded DOI QVYH-KZQR +Downloaded DOI 7T6Q-JHVG +Downloaded DOI 9USM-5HG6 +Downloaded DOI SPQ9-RMJ2 +Downloaded DOI RSFZ-RV8Q +Downloaded DOI FJW7-JAWH +Downloaded DOI B5J5-4786 +Downloaded DOI 8SQU-2DP9 +Downloaded DOI BCH5-TZMB +Downloaded DOI 3U2K-D5VM +Downloaded DOI 74DR-JDN3 +Downloaded DOI SA8B-XUPK +Downloaded DOI 45EK-DZZN +Downloaded DOI FDZ7-A6P9 +Downloaded DOI QFBB-FG95 +Downloaded DOI 8HZW-6AVZ +Downloaded DOI WM5T-237B +Downloaded DOI Z24X-UQM7 +Downloaded DOI 7GAN-T3N5 +Downloaded DOI H75V-DN8Z +Downloaded DOI FE62-AXAY +Downloaded DOI SQAE-J9WA +Downloaded DOI 28FW-Y2EY +Downloaded DOI AG4Y-HA5V +Downloaded DOI 9PRF-JPTD +Downloaded DOI MNSQ-7ZRZ +Downloaded DOI UPFF-9CSD +Downloaded DOI 52D8-Y7CT +Downloaded DOI BPV6-G7FU +Downloaded DOI QE4C-UYZG +Downloaded DOI WXBH-P6MY +Downloaded DOI T3J5-QU7Y +No data found, error 404 +No data found, error 404 +Downloaded DOI ZA44-RZN9 +Downloaded DOI AUQB-2GZK +Downloaded DOI MFJJ-ZQ85 +Downloaded DOI PFWV-2V7Z +Downloaded DOI H35Y-PJWK +Downloaded DOI SG87-MBJS +No data found, error 404 +Downloaded DOI YMUH-ZJN4 +Downloaded DOI G56S-PCVK +Downloaded DOI BJYD-SACQ +Downloaded DOI SH5Q-GA2K +Downloaded DOI B4TG-PU8W +Downloaded DOI 6E9U-X4DE +Downloaded DOI Y85Z-CW7N +Downloaded DOI 6VM4-MXZQ +Downloaded DOI 9DFC-YERH +Downloaded DOI AG3A-NH9R +Downloaded DOI DWNB-4UJG +Downloaded DOI WVHD-N2XG +Downloaded DOI FMEY-233H +Downloaded DOI 9USV-DVQG +No data found, error 404 +Downloaded DOI WAWA-Y5DW +No data found, error 404 +Downloaded DOI 7RFP-R4K5 +Downloaded DOI JX38-DP9D +Downloaded DOI T9DJ-57DB +Downloaded DOI PN52-PKPJ +Downloaded DOI 2G5H-CYGH +Downloaded DOI RKXJ-WNBU +Downloaded DOI KBAC-MKNH +Downloaded DOI R8NQ-MA8H +Downloaded DOI HAVT-9H7A +Downloaded DOI MBNZ-WM2M +Downloaded DOI FPSM-PRDZ +Downloaded DOI 4EZG-ETPX +Downloaded DOI SX45-K772 +Downloaded DOI ZEDG-MFC2 +Downloaded DOI 44MJ-HUMW +Downloaded DOI RJU6-3SH8 +Downloaded DOI 447C-MAZR +Downloaded DOI 2BNJ-8KXT +Downloaded DOI JVW4-UCKF +Downloaded DOI 49C6-EQHD +No data found, error 404 +Downloaded DOI PB7G-QPD2 +Downloaded DOI D4MB-DG5U +Downloaded DOI 5SET-TQNG +Downloaded DOI JS2Q-UP4M +Downloaded DOI GAAX-76WN +Downloaded DOI R4MP-VS6N +Downloaded DOI 2HZ2-TT4M +Downloaded DOI XE8S-DWEV +Downloaded DOI E2YT-88HX +Downloaded DOI 8Q9H-S9W8 +Downloaded DOI PFX3-FE9R +Downloaded DOI TNJ6-RUD2 +Downloaded DOI YXJQ-MCA2 +Downloaded DOI CS95-J9T3 +No data found, error 404 +Downloaded DOI ZGJJ-YUWN +Downloaded DOI HWJW-FKEQ +Downloaded DOI 8QH4-AD3A +No data found, error 404 +Downloaded DOI Q6PB-BEZ2 +Downloaded DOI EW3E-MK9P +Downloaded DOI QDUT-DWMF +Downloaded DOI RPRH-ZE75 +Downloaded DOI PXCG-N6JK +Downloaded DOI 3PAV-2TPR +Downloaded DOI KP93-K7PH +Downloaded DOI MVVB-3526 +Downloaded DOI 6R8G-DQGP +Downloaded DOI SGET-7BA5 +Downloaded DOI TE76-YHWS +Downloaded DOI VJM7-8BP7 +Downloaded DOI RGKD-HRNX +Downloaded DOI QEC6-W57W +Downloaded DOI MS3V-R79T +Downloaded DOI P2SG-QG7Y +Downloaded DOI TR2U-JE77 +Downloaded DOI ZDWP-9XZS +Downloaded DOI XHKD-H8RS +Downloaded DOI 2UTZ-A74X +Downloaded DOI YZBC-M8CM +Downloaded DOI ZUFF-KHKN +Downloaded DOI G9KT-23TW +Downloaded DOI Y3J9-DQJ6 +Downloaded DOI CXVP-8NC7 +Downloaded DOI TTHT-49XK +Downloaded DOI SPMM-QPH5 +Downloaded DOI U6SH-RARM +No data found, error 404 +Downloaded DOI CYEN-A9BM +Downloaded DOI BPDX-VAUR +Downloaded DOI CVQG-T4ZU +Downloaded DOI 8KY4-ZVBS +Downloaded DOI PEER-77HG +Downloaded DOI VN57-MDEB +Downloaded DOI 8T9Z-PXFF +Downloaded DOI SHGT-299W +Downloaded DOI EMJE-79CZ +Downloaded DOI HKAB-T5GT +Downloaded DOI WS79-JZ6H +Downloaded DOI 6WRT-SKY5 +Downloaded DOI WUWT-SM43 +Downloaded DOI W4KW-C7QR +Downloaded DOI BGMN-HMJU +Downloaded DOI QWK7-9U65 +Downloaded DOI 9V98-FZNH +Downloaded DOI ZX4Z-9F26 +No data found, error 404 +Downloaded DOI ZGGD-V99M +Downloaded DOI KHUA-TVC8 +Downloaded DOI PV9M-A8DC +Downloaded DOI KVDR-WFF5 +Downloaded DOI KNE8-VEAN +Downloaded DOI 7Z8A-ZK9W +Downloaded DOI MMEG-VWVD +Downloaded DOI T7MU-WC25 +Downloaded DOI 689E-MFFD +Downloaded DOI BVTG-JC6K +Downloaded DOI QNRJ-XUY3 +Downloaded DOI 82CZ-458Z +Downloaded DOI BFRY-FKFK +Downloaded DOI YNQ4-5VBK +Downloaded DOI BPCD-FAC6 +Downloaded DOI 4PVN-59XD +Downloaded DOI R4ZM-3QBZ +Downloaded DOI WEU9-Z7HG +Downloaded DOI YCB5-Z3ZJ +Downloaded DOI 528D-GMJ4 +Downloaded DOI J3TG-ZP4R +Downloaded DOI 7FWV-AT6J +Downloaded DOI J4XV-F8UY +Downloaded DOI VSBX-CRVD +Downloaded DOI 63DD-57V4 +Downloaded DOI RJ9Y-DQ8W +Downloaded DOI CN8Y-HX5G +Downloaded DOI WMUH-FNSW +Downloaded DOI AKH9-7PUZ +Downloaded DOI ZKT9-ZNC8 +No data found, error 404 +Downloaded DOI 37CE-ASDV +Downloaded DOI VV86-AFFW +Downloaded DOI AAS9-N224 +Downloaded DOI XGH4-QNUA +Downloaded DOI T4VZ-T3XH +No data found, error 404 +Downloaded DOI Z6RT-TMZW +Downloaded DOI 5958-KTBN +Downloaded DOI JR7P-R7B9 +Downloaded DOI 56QY-XJ6K +Downloaded DOI F5ZR-3W5K +Downloaded DOI 3UX8-BK3X +No data found, error 404 +Downloaded DOI 7R6H-4F6C +Downloaded DOI U3XD-QW38 +Downloaded DOI NQS5-JR8J +No data found, error 404 +Downloaded DOI 8CUF-GGPQ +Downloaded DOI ACPX-5WY9 +Downloaded DOI 2SAW-ZP88 +Downloaded DOI B6UF-H4CS +No data found, error 404 +Downloaded DOI H7EV-NY4D +Downloaded DOI FJYU-SBVT +Downloaded DOI 2F5Y-A6PG +Downloaded DOI US6Y-SHY5 +Downloaded DOI FSMK-FPMU +Downloaded DOI REZU-EUDF +Downloaded DOI W7YQ-E9MZ +Downloaded DOI CD47-WZMB +Downloaded DOI PF6R-WYHC +Downloaded DOI 9STS-JMUJ +Downloaded DOI G4W4-PHVP +No data found, error 404 +Downloaded DOI 7AXP-8HN3 +Downloaded DOI XZAN-QSA4 +Downloaded DOI 3FDX-XBRV +Downloaded DOI 2YZE-J8Z2 +Downloaded DOI XCVP-A5BH +Downloaded DOI 4Q8P-E8QW +Downloaded DOI B7PY-YHSD +No data found, error 404 +Downloaded DOI JNEK-9A7K +Downloaded DOI VNV7-8JVM +Downloaded DOI M33W-YSN5 +Downloaded DOI YD72-CUQM +Downloaded DOI 4AEA-TNPA +Downloaded DOI Y8K5-MQQP +Downloaded DOI UQF2-YUXJ +Downloaded DOI JP2C-A7NT +Downloaded DOI 9UPY-P9ZE +Downloaded DOI ZU2U-FPTY +Downloaded DOI 9QRT-CQ7U +Downloaded DOI FWS7-VTCS +Downloaded DOI G8CV-GM57 +No data found, error 404 +Downloaded DOI U7XE-HD2X +Downloaded DOI NSFC-YHSD +Downloaded DOI TZFV-6SHG +Downloaded DOI JTEF-TC4B +Downloaded DOI 4S7D-FDKK +Downloaded DOI R758-E953 +Downloaded DOI EU64-98JG +Downloaded DOI TN8J-W47M +Downloaded DOI UBW2-UHTM +Downloaded DOI 73BT-NZ7K +Downloaded DOI QQSS-PQBP +Downloaded DOI G8TJ-WSUA +Downloaded DOI E7KC-JYXN +Downloaded DOI PADQ-YUDJ +Downloaded DOI 9FWR-XWTT +Downloaded DOI DJBC-PN8V +Downloaded DOI 5FAR-4R97 +Downloaded DOI Q5A8-HMTU +Downloaded DOI 2U34-E223 +Downloaded DOI X76D-C9VF +Downloaded DOI CQ3Z-YFAS +Downloaded DOI KPZK-84P6 +Downloaded DOI PQTT-QMTZ +Downloaded DOI EMPV-JSEF +Downloaded DOI W83Z-DCWM +Downloaded DOI NNQY-P5HD +Downloaded DOI 97Q9-ST26 +Downloaded DOI 3YVU-CRJ4 +Downloaded DOI GF4R-JJ32 +Downloaded DOI 3W9C-RDBX +Downloaded DOI KCMV-5T23 +Downloaded DOI A6N3-Y8EA +Downloaded DOI EJHG-9Z3Y +Downloaded DOI TVY4-BCMA +Downloaded DOI PDPZ-Q5KT +Downloaded DOI U372-ZZCA +Downloaded DOI 83FA-38GK +Downloaded DOI 2HES-T9EX +Downloaded DOI RSEQ-GMYH +Downloaded DOI 83Q8-C9SB +Downloaded DOI ZRP9-BFCB +Downloaded DOI KK9Z-FZAX +Downloaded DOI MZ24-XJ8C +Downloaded DOI 76T6-DVEZ +Downloaded DOI Q3EY-42JK +Downloaded DOI 46QE-42YB +Downloaded DOI NBVA-3E5E +Downloaded DOI GNTJ-CEEH +Downloaded DOI 34HW-3BAH +Downloaded DOI SH2B-UUKV +Downloaded DOI VHMH-EGSU +Downloaded DOI 8Z9Q-MX3Q +Downloaded DOI 4N2D-BRAP +Downloaded DOI HSB4-U8F2 +Downloaded DOI PB4P-VEVD +Downloaded DOI 5CR7-8HPK +Downloaded DOI ZJUY-8MTV +Downloaded DOI Y7NP-HS2Q +Downloaded DOI S6WW-7CYQ +Downloaded DOI FKUK-DC6Z +Downloaded DOI 8TTQ-KE89 +Downloaded DOI DBC5-WN3M +Downloaded DOI FENM-DQ7H +No data found, error 404 +Downloaded DOI 3JHV-587F +Downloaded DOI EEYP-VCZ8 +Downloaded DOI B8CY-PSMG +Downloaded DOI ARCK-RFU6 +Downloaded DOI XWFQ-G2AQ +Downloaded DOI ZG8A-N5BH +Downloaded DOI NFBD-ZNBC +Downloaded DOI B2XW-7TT4 +Downloaded DOI F52N-RK3Y +Downloaded DOI 7CMN-V9CE +Downloaded DOI 8YW6-28TN +Downloaded DOI VHN2-NA3C +Downloaded DOI 63AG-NHUR +Downloaded DOI 46DN-N5WF +Downloaded DOI 8GN2-P7R2 +Downloaded DOI EE7N-6F42 +Downloaded DOI MKWE-F4MG +Downloaded DOI MCV7-FSUC +Downloaded DOI P5ZQ-PBBS +Downloaded DOI A99T-5XV6 +Downloaded DOI X2FD-ESUU +Downloaded DOI QZFP-T8CN +Downloaded DOI WJR4-7824 +No data found, error 404 +Downloaded DOI H3WM-2ZNR +Downloaded DOI 9RZR-GS7B +Downloaded DOI RJQM-J9GC +Downloaded DOI PCNN-XVM4 +Downloaded DOI SMH8-E2HF +Downloaded DOI 45AV-Q4FF +Downloaded DOI F3H6-6VUV +Downloaded DOI RFW8-B4C9 +No data found, error 404 +Downloaded DOI P7ZZ-XZA4 +Downloaded DOI V8HE-D6HB +Downloaded DOI 3MDW-6ABY +Downloaded DOI 47CW-BGUY +Downloaded DOI RJP3-MRUJ +Downloaded DOI DN9Z-TSAM +Downloaded DOI KA49-JMYA +Downloaded DOI RK3C-358W +No data found, error 404 +Downloaded DOI A7W7-AV5Z +Downloaded DOI 23P6-9HJC +Downloaded DOI VF46-9SMM +Downloaded DOI 7RGE-SUFH +Downloaded DOI 6ZA4-FZUN +Downloaded DOI 68W7-5NPP +Downloaded DOI QXPJ-3677 +Downloaded DOI 8SQR-EYJY +No data found, error 404 +Downloaded DOI 2NV4-FAJM +Downloaded DOI 5TNU-GQCA +Downloaded DOI SWZ5-4SYV +Downloaded DOI CUFU-JMYT +Downloaded DOI NNAR-CZEG +Downloaded DOI 44PW-Q3MW +Downloaded DOI R568-YUY2 +Downloaded DOI DCXN-YVJ3 +Downloaded DOI 2BBU-Q7WN +Downloaded DOI 3RR5-DUB9 +Downloaded DOI 43AE-JHP8 +No data found, error 404 +No data found, error 404 +Downloaded DOI AD96-G6VN +Downloaded DOI N2KN-BMPQ +Downloaded DOI QTSZ-RW65 +Downloaded DOI S3G2-KKFX +Downloaded DOI YNRN-NQBA +Downloaded DOI 9JSQ-V6SJ +Downloaded DOI WJHW-GZNH +Downloaded DOI G244-6H6F +Downloaded DOI BZ8C-4BS3 +Downloaded DOI JR2V-CFA2 +Downloaded DOI 89XV-WGUC +Downloaded DOI PHY6-9BQ8 +Downloaded DOI W9YZ-T5M3 +No data found, error 404 +Downloaded DOI UMZ9-EJPT +Downloaded DOI 8UNV-A3NR +No data found, error 404 +Downloaded DOI AWV8-MXN8 +Downloaded DOI N892-SY76 +Downloaded DOI X7PR-CMFP +Downloaded DOI 5G79-BDVH +Downloaded DOI KXZG-SHB4 +No data found, error 404 +Downloaded DOI 8PKN-DRTT +Downloaded DOI 5854-2KE2 +Downloaded DOI DVKM-GYP4 +Downloaded DOI QCZS-8RW3 +Downloaded DOI QTQF-KSAZ +Downloaded DOI JMEE-78EY +No data found, error 404 +Downloaded DOI U8HX-C5X5 +Downloaded DOI MM74-B4TY +Downloaded DOI 6YTF-UW8M +Downloaded DOI NFPY-5H2W +Downloaded DOI YWHC-AGWH +Downloaded DOI 2CPC-X4BZ +Downloaded DOI B4SK-KDFX +Downloaded DOI 5JMV-6F48 +Downloaded DOI FDBV-SS7F +Downloaded DOI 6XCG-RRU7 +Downloaded DOI HDVA-X8SE +Downloaded DOI 3G25-8HHU +Downloaded DOI D5CK-SJPK +Downloaded DOI 7K9M-HE2F +Downloaded DOI ASUK-JEH5 +Downloaded DOI WAQE-ZWUW +Downloaded DOI U7DQ-AY5V +Downloaded DOI 9CWR-AMX5 +Downloaded DOI QT2N-Q766 +Downloaded DOI C2CM-7U76 +Downloaded DOI FVAM-32PN +Downloaded DOI YN74-HWAH +No data found, error 404 +Downloaded DOI 5U3P-2662 +Downloaded DOI SGN5-M9RZ +Downloaded DOI 8KQU-THRW +Downloaded DOI GAN6-TMPE +Downloaded DOI VKCC-RFMC +Downloaded DOI J9Y4-VXZV +Downloaded DOI 9GM3-GWX9 +Downloaded DOI 52QA-HPJH +Downloaded DOI HJY2-ZM5T +Downloaded DOI WBUD-CTEP +Downloaded DOI B98V-JVPD +Downloaded DOI 89GZ-SDHJ +Downloaded DOI DYGT-8SGU +Downloaded DOI ZURZ-PRKC +Downloaded DOI FPHW-9HAE +No data found, error 404 +Downloaded DOI 3FM8-4SXP +Downloaded DOI HNWJ-J9XV +Downloaded DOI A3Y6-878K +Downloaded DOI 2VBH-8Z3E +Downloaded DOI JJKR-WYJY +Downloaded DOI 5HEB-73XZ +Downloaded DOI FPP4-CW6A +Downloaded DOI NW9M-XZ33 +No data found, error 404 +Downloaded DOI NVV8-EKCX +Downloaded DOI 3W4A-237S +Downloaded DOI M7DT-7HGU +Downloaded DOI 4ZZA-9PJE +Downloaded DOI JNMA-MEDU +Downloaded DOI AYG9-MB3Q +Downloaded DOI VVBG-7CDH +No data found, error 404 +Downloaded DOI RBGC-F969 +Downloaded DOI YVC8-GZUJ +Downloaded DOI YV32-WNX5 +Downloaded DOI U377-KJ7U +Downloaded DOI 6PFA-4EGY +No data found, error 404 +Downloaded DOI RJQ6-4PYA +Downloaded DOI B6UD-BZND +Downloaded DOI 4ZD6-7CGB +Downloaded DOI S4CX-9C38 +Downloaded DOI NRPP-59KP +Downloaded DOI 9AHP-VRJX +Downloaded DOI PXJ4-JM7H +Downloaded DOI QP5T-TSWX +Downloaded DOI J968-M6GC +No data found, error 404 +Downloaded DOI VR34-B44S +Downloaded DOI 7UNS-9VHP +Downloaded DOI 85MX-QF8X +Downloaded DOI YJTT-ZEYP +Downloaded DOI EV5J-5SC8 +Downloaded DOI 87H5-TMNM +Downloaded DOI 624Z-YGBQ +Downloaded DOI AEXJ-KYT2 +Downloaded DOI 7R87-X22W +No data found, error 404 +Downloaded DOI S3W2-XPG2 +Downloaded DOI A4CH-UP98 +Downloaded DOI XK26-EJEA +Downloaded DOI K722-G3DY +Downloaded DOI 5B7Q-7VZU +Downloaded DOI PBFQ-PPYH +Downloaded DOI F45Z-Q3P3 +No data found, error 404 +Downloaded DOI 7MDV-7WWF +Downloaded DOI 7H3U-8YRT +Downloaded DOI SJQS-WCQR +Downloaded DOI V6SZ-W7GQ +Downloaded DOI KMZ6-28RY +Downloaded DOI X6G8-KSY3 +Downloaded DOI 2SSQ-F2FV +Downloaded DOI YD6T-68UZ +Downloaded DOI 8WNX-UU4F +Downloaded DOI PPSK-XJJY +Downloaded DOI DBPQ-987W +Downloaded DOI HH6S-3K2Z +Downloaded DOI CBNS-99A8 +No data found, error 404 +Downloaded DOI T26R-EDVC +Downloaded DOI M7EH-4WBW +Downloaded DOI 8RBS-UE93 +Downloaded DOI MJ33-UUWD +Downloaded DOI EHJJ-ZEYZ +Downloaded DOI 33TF-2FM2 +No data found, error 404 +Downloaded DOI FHVB-75EF +Downloaded DOI 7DAK-WXD4 +Downloaded DOI 8534-VEB2 +Downloaded DOI GWPM-89MX +No data found, error 404 +Downloaded DOI 6NB5-HKYN +Downloaded DOI UZKT-535W +Downloaded DOI S35M-P2NY +Downloaded DOI 5WE9-KPKU +Downloaded DOI QP7A-8UAF +Downloaded DOI 9XAT-YBW8 +Downloaded DOI BTJA-FVJD +Downloaded DOI ARYW-TDQG +Downloaded DOI PYYF-T3YG +Downloaded DOI CZWF-NM5U +Downloaded DOI X74Q-28DF +Downloaded DOI QBBM-37NR +Downloaded DOI 6HPE-NNQJ +Downloaded DOI BNHA-XAJM +Downloaded DOI 52W6-NR47 +Downloaded DOI CXSP-FMJE +Downloaded DOI H5KZ-XTWC +Downloaded DOI R85M-KHW2 +Downloaded DOI AQU9-CZDD +Downloaded DOI BNFS-NN9G +Downloaded DOI X38K-KZZA +Downloaded DOI CZ8F-9V9P +Downloaded DOI ATT8-CEYD +Downloaded DOI HQ8W-VDRY +Downloaded DOI 9X5B-KR3N +Downloaded DOI EP2N-FBQ6 +No data found, error 404 +Downloaded DOI 4VFT-8S3T +Downloaded DOI RUSD-ZWUC +Downloaded DOI KQVT-QJNM +Downloaded DOI 5S2F-2W39 +Downloaded DOI 8QU5-Q6ZD +Downloaded DOI Q5AY-4TZE +Downloaded DOI 4V9Z-7K8R +Downloaded DOI WSTD-VM9S +Downloaded DOI N6VN-7SMP +Downloaded DOI CEQM-86DV +Downloaded DOI WRJY-G5TV +Downloaded DOI SXED-7H6P +Downloaded DOI R5GN-4V62 +Downloaded DOI TAHZ-TRB6 +Downloaded DOI 85F5-KBH5 +Downloaded DOI A8S6-79HB +Downloaded DOI HYYK-U2XM +Downloaded DOI DH5K-6UX2 +Downloaded DOI 66PV-8VCR +Downloaded DOI YDUZ-P9XY +Downloaded DOI CH9E-DTFA +Downloaded DOI JXFH-54WA +Downloaded DOI XVMZ-P43T +Downloaded DOI WDKA-H8V7 +Downloaded DOI QEKX-CK57 +Downloaded DOI YYS9-VDMP +Downloaded DOI 7YEJ-WHFP +Downloaded DOI A2RX-BUV9 +Downloaded DOI KE88-TXNM +Downloaded DOI YFT5-3N8C +Downloaded DOI 3CGB-3JKG +Downloaded DOI BTTV-44GN +Downloaded DOI 323F-J8N3 +Downloaded DOI TV36-KNBE +Downloaded DOI VJAT-QQ8W +Downloaded DOI KG43-4QGN +Downloaded DOI URQH-NW4D +Downloaded DOI BWWJ-EZN9 +Downloaded DOI 85R2-PSFH +Downloaded DOI 87H9-NQP6 +Downloaded DOI 84CC-GKKC +Downloaded DOI ZW72-P3AS +Downloaded DOI 5MY6-R4HK +Downloaded DOI ADUN-VENM +Downloaded DOI BZWV-XAX7 +No data found, error 404 +Downloaded DOI 7KD9-GAMP +Downloaded DOI 96JF-WCAH +Downloaded DOI 3RHY-EKZG +Downloaded DOI ECMK-E97U +Downloaded DOI 43AN-UJJ6 +Downloaded DOI EE9Z-QGD4 +Downloaded DOI 7WHR-3AJR +Downloaded DOI W8JB-BH3N +Downloaded DOI 6JWW-PFPR +Downloaded DOI DWQM-2QEU +Downloaded DOI VWDG-XVRB +Downloaded DOI U7H8-QYHC +Downloaded DOI 2NS3-R9PR +Downloaded DOI 294W-VYGG +Downloaded DOI SXJS-AP9N +Downloaded DOI TH2A-8VQE +Downloaded DOI 6ERX-CWH6 +Downloaded DOI BHAB-SSE9 +Downloaded DOI X3TP-83TT +No data found, error 404 +Downloaded DOI 7PAG-PT5T +Downloaded DOI 4GW3-CMP5 +Downloaded DOI 5HU4-B83G +Downloaded DOI 3MSQ-NMTQ +Downloaded DOI 3QV2-RBN5 +No data found, error 404 +Downloaded DOI WTJ7-NH3B +Downloaded DOI PWMY-2FGD +Downloaded DOI JWSV-R58M +Downloaded DOI SHHF-AE4F +Downloaded DOI 3DGY-4KBD +Downloaded DOI ZEFY-NQ88 +Downloaded DOI 7EJJ-CHUZ +No data found, error 404 +Downloaded DOI VNGA-RMS5 +Downloaded DOI PUCD-9CE3 +Downloaded DOI Y889-S8C3 +Downloaded DOI VH6R-6H26 +Downloaded DOI 3XVZ-U64S +Downloaded DOI ED44-KN9C +Downloaded DOI Z7GH-AH57 +Downloaded DOI MRPX-EVUT +Downloaded DOI MT48-NPFJ +No data found, error 404 +Downloaded DOI 493R-D9GE +Downloaded DOI JZJU-8B4H +Downloaded DOI P9FB-AYK9 +Downloaded DOI 4C8C-DMNX +No data found, error 404 +Downloaded DOI FED4-ZX6Y +Downloaded DOI DQEU-GNXE +Downloaded DOI B3GX-SFVE +Downloaded DOI XRUA-M2NU +Downloaded DOI 49J6-UNR2 +Downloaded DOI TD3F-HJ6B +Downloaded DOI Q8QR-SV7H +Downloaded DOI 7CP9-XGPD +Downloaded DOI S8RR-843M +No data found, error 404 +Downloaded DOI 2GSA-HUE7 +Downloaded DOI 2WBJ-5EAZ +Downloaded DOI 9MFT-YNQ7 +Downloaded DOI ZFDU-6GS9 +Downloaded DOI U45J-RBJS +Downloaded DOI SM4S-3XN6 +Downloaded DOI 7UQK-MHPM +Downloaded DOI 3PEW-TJW7 +Downloaded DOI XX3T-WBC3 +Downloaded DOI MCPM-44QW +Downloaded DOI QBHF-ZDAM +Downloaded DOI PBKJ-3EC6 +Downloaded DOI N8UZ-RH57 +Downloaded DOI MVVQ-7GZG +Downloaded DOI G3Q3-38A8 +Downloaded DOI RVFU-D2S7 +Downloaded DOI WWB7-DMV8 +Downloaded DOI FQ7J-46E2 +Downloaded DOI VE8S-32P5 +Downloaded DOI JVAD-AEZS +Downloaded DOI HMAA-JYZK +Downloaded DOI GVBZ-ZGAS +No data found, error 404 +Downloaded DOI 4TF7-X4N2 +No data found, error 404 +Downloaded DOI UKWJ-84QY +Downloaded DOI ST3W-R6NF +Downloaded DOI 52Q7-257R +No data found, error 404 +Downloaded DOI MECU-GBA4 +Downloaded DOI J558-NH6Q +Downloaded DOI GU6Y-N5E5 +Downloaded DOI UN6F-CPQZ +Downloaded DOI ZUNN-JZ5D +Downloaded DOI VSVW-NBEE +Downloaded DOI T2NP-EXKZ +Downloaded DOI V4J8-BKZ3 +Downloaded DOI E9PU-KVQW +Downloaded DOI 7YM2-W4F3 +Downloaded DOI K296-ZEQZ +Downloaded DOI C79V-42RC +Downloaded DOI P4GD-F3HD +Downloaded DOI HKY7-RJ93 +Downloaded DOI 9XC6-SU7Z +Downloaded DOI VZR6-7Q45 +Downloaded DOI 42DW-9JTM +Downloaded DOI M58W-8XJ5 +Downloaded DOI 9J26-XX8Z +Downloaded DOI 3WGH-BYUG +Downloaded DOI FZ7W-33SZ +Downloaded DOI 56PT-7NN4 +Downloaded DOI 5SNF-45YH +Downloaded DOI CUEX-7WJ6 +Downloaded DOI 89YU-CAT5 +Downloaded DOI CA6Y-ZF8G +Downloaded DOI EK9U-A3CD +Downloaded DOI XXDP-RVTX +Downloaded DOI HZRA-HSTD +Downloaded DOI VUFN-3HWW +Downloaded DOI TEG8-D2U6 +Downloaded DOI QVT9-3F3Z +Downloaded DOI A5QM-ECV7 +Downloaded DOI X4VP-UQTH +Downloaded DOI CWT2-9PRM +Downloaded DOI WHHF-4F5H +Downloaded DOI SBDR-R6EM +Downloaded DOI ZXTR-2RC3 +Downloaded DOI XY6C-S44U +Downloaded DOI 3D23-MMN6 +Downloaded DOI N44S-MUX2 +Downloaded DOI MVH6-A7F6 +Downloaded DOI WYVX-PPJC +Downloaded DOI HMD6-5J5R +Downloaded DOI JJQD-MPER +Downloaded DOI MDDX-9W2K +Downloaded DOI 9SJ9-5PQD +Downloaded DOI F9W7-E56A +Downloaded DOI DBUZ-YFGM +Downloaded DOI 97DA-73EH +Downloaded DOI 3N4J-7DMB +Downloaded DOI J2BF-YGU7 +Downloaded DOI PWJY-8TTW +Downloaded DOI UYRY-WH7N +Downloaded DOI G9X9-SYBK +Downloaded DOI SFM6-VSVW +Downloaded DOI 795B-A4RZ +Downloaded DOI F57B-2CAZ +Downloaded DOI 5VPC-GC2P +Downloaded DOI 43MC-6T49 +Downloaded DOI BSZN-E7FN +Downloaded DOI S5GR-D4SX +Downloaded DOI 6CVW-QF2H +Downloaded DOI A47C-YZ9P +Downloaded DOI 623S-SWF7 +Downloaded DOI PW5R-THPD +Downloaded DOI 2F2M-QQF6 +No data found, error 404 +Downloaded DOI 49MK-SUHN +Downloaded DOI 9SSE-RD6A +Downloaded DOI WRNV-EGEA +Downloaded DOI 6J8Y-5JR3 +Downloaded DOI 2KWN-UUK6 +Downloaded DOI CC4S-BP82 +No data found, error 404 +Downloaded DOI C3U6-E6R5 +Downloaded DOI UARZ-RY4T +Downloaded DOI Z7EM-5YM4 +No data found, error 404 +Downloaded DOI 8XFV-44RU +Downloaded DOI 33WC-UVR2 +Downloaded DOI YXB9-R9ZZ +Downloaded DOI RXV3-X8SM +Downloaded DOI WHRM-FVRF +Downloaded DOI J85H-857B +Downloaded DOI U9GJ-BU28 +Downloaded DOI N45U-UE4D +Downloaded DOI R5XZ-E5K3 +Downloaded DOI X2M2-TMXX +No data found, error 404 +Downloaded DOI 8CNE-E6J9 +Downloaded DOI ZDSZ-T4TF +Downloaded DOI 3237-HVFZ +Downloaded DOI 68ZF-9FP4 +Downloaded DOI WJVD-QJDX +Downloaded DOI X3NF-HTF5 +Downloaded DOI YP5A-6KQ8 +Downloaded DOI V9DF-MQQF +No data found, error 404 +Downloaded DOI Z5DR-GSFV +Downloaded DOI VAUK-8RZD +Downloaded DOI PY9R-2H2A +Downloaded DOI MFUH-ZPCC +Downloaded DOI 2ZP9-9E9V +Downloaded DOI D4AY-ZU66 +Downloaded DOI STDM-TYF7 +Downloaded DOI HKKQ-N64T +Downloaded DOI KBJT-ANKX +Downloaded DOI CTM2-QRAB +Downloaded DOI PG8R-E9BQ +Downloaded DOI 6A7G-REZA +Downloaded DOI Y9A2-ZFAD +Downloaded DOI TZTM-BEH6 +Downloaded DOI 9Q45-2XZB +Downloaded DOI F4QS-EFW3 +Downloaded DOI RCJE-TMB7 +Downloaded DOI 4YZ5-KN3K +Downloaded DOI QTPE-VGRR +No data found, error 404 +Downloaded DOI JMXT-RCUZ +Downloaded DOI SRV9-754X +Downloaded DOI WUNX-5ZCY +Downloaded DOI C6MP-HCZP +Downloaded DOI S2GT-NQ7C +Downloaded DOI AATB-SJ54 +Downloaded DOI 322A-ZBPB +Downloaded DOI QJRC-JT8Y +Downloaded DOI DZGA-56WV +Downloaded DOI XZQ7-9F4J +Downloaded DOI MWM6-WFW7 +Downloaded DOI T9DV-ED8Z +No data found, error 404 +Downloaded DOI HKC4-WDK6 +Downloaded DOI 37G6-7P7N +Downloaded DOI S4GJ-ZSHN +Downloaded DOI W54H-2RKD +Downloaded DOI N548-7DTK +Downloaded DOI 3YQE-26KN +Downloaded DOI SY4M-H6QX +Downloaded DOI 2KNB-7KPM +Downloaded DOI WJ8Z-AYRB +Downloaded DOI 4TGZ-5HDP +Downloaded DOI QJUE-AZU7 +No data found, error 404 +Downloaded DOI Q6AW-SRHB +Downloaded DOI FFBE-3D9G +Downloaded DOI SNZ8-DMAH +Downloaded DOI G933-ZU4R +Downloaded DOI WUNH-Z74W +Downloaded DOI QAEV-JQMH +Downloaded DOI C6A8-FGHU +Downloaded DOI 53R5-V7AT +Downloaded DOI MTWM-67RV +Downloaded DOI KR2P-4C8V +Downloaded DOI B7EN-E5E4 +No data found, error 404 +Downloaded DOI PKRS-RJ2H +Downloaded DOI WY9H-ZTK8 +Downloaded DOI 43CE-HU9T +Downloaded DOI VQ96-23SC +Downloaded DOI DVSR-64SU +Downloaded DOI 99AT-F8K3 +Downloaded DOI 6F93-3ZJ7 +Downloaded DOI 8TWR-WMJP +Downloaded DOI SA2N-8QDY +Downloaded DOI FANR-XNAY +Downloaded DOI 52WV-2XCJ +Downloaded DOI MEHQ-BRK9 +Downloaded DOI PUX6-7CWD +Downloaded DOI 6TKR-9VSN +Downloaded DOI ZGRA-RNNZ +Downloaded DOI 724K-MSSF +Downloaded DOI ANST-HZQ9 +Downloaded DOI SHUG-S3AG +Downloaded DOI NDDV-NKE8 +Downloaded DOI C34W-XZUR +Downloaded DOI 7FK9-8W3H +Downloaded DOI FM84-X5A2 +No data found, error 404 +Downloaded DOI 8EH9-XD6N +Downloaded DOI R65B-8RYC +Downloaded DOI XJES-K9HT +Downloaded DOI 7BA2-M6RZ +Downloaded DOI QQNH-EF9P +No data found, error 404 +Downloaded DOI VW44-XNUA +Downloaded DOI NYM3-ANQW +Downloaded DOI VEAD-CFHE +Downloaded DOI XYG4-A2AW +Downloaded DOI MZWS-86RW +Downloaded DOI AK7E-3H9Y +Downloaded DOI G3RR-AJNU +Downloaded DOI TGNY-ZZ8N +Downloaded DOI A93A-MADG +Downloaded DOI ZSEJ-E9PV +Downloaded DOI AU6Z-GZCE +Downloaded DOI E7PC-YYDM +Downloaded DOI M2YW-AJ86 +Downloaded DOI UR7U-HV9S +Downloaded DOI M45P-4VKY +Downloaded DOI A337-UUFJ +Downloaded DOI FFB7-BDYS +Downloaded DOI AYST-9W43 +No data found, error 404 +Downloaded DOI P28X-CPB5 +Downloaded DOI BZNF-ZN95 +Downloaded DOI RJ9P-SEU6 +Downloaded DOI 89V2-VEQE +Downloaded DOI K58P-SF76 +Downloaded DOI H66W-RKGF +Downloaded DOI PH8C-UJN9 +No data found, error 404 +Downloaded DOI JDX3-MJD4 +Downloaded DOI NM6P-F9GZ +Downloaded DOI UQR5-SF2V +Downloaded DOI UVNU-SPVW +Downloaded DOI XY92-GGYQ +Downloaded DOI 8TUY-DBHV +Downloaded DOI 9VRD-3GZW +Downloaded DOI KXXH-CFFN +Downloaded DOI DUQP-RPYZ +Downloaded DOI JPVR-2ARX +Downloaded DOI JPZD-EV8M +Downloaded DOI DZEF-JR6Q +No data found, error 404 +Downloaded DOI BNPD-S3XM +Downloaded DOI NJTP-W5ST +Downloaded DOI 9JH7-J7PE +Downloaded DOI AHTY-W5R7 +Downloaded DOI T5QK-MV5M +No data found, error 404 +Downloaded DOI SNKV-JFBR +Downloaded DOI P58C-73AN +Downloaded DOI HU7D-RCHB +Downloaded DOI EHK4-XSWM +Downloaded DOI ZHQV-Q4AS +Downloaded DOI GFK9-YRHH +Downloaded DOI HWQ3-8WE4 +Downloaded DOI MRWB-A67A +Downloaded DOI Z9K6-62B2 +Downloaded DOI 2Q82-647R +Downloaded DOI SF6W-UQM7 +Downloaded DOI GSXK-7C8K +Downloaded DOI HDMX-ZXBU +No data found, error 404 +Downloaded DOI XY87-3FD3 +Downloaded DOI YBP4-RQET +Downloaded DOI 6EE6-G53V +Downloaded DOI ZX48-9WBG +Downloaded DOI V7DH-2DY6 +Downloaded DOI RGQA-PA42 +Downloaded DOI 899K-ASW5 +Downloaded DOI 3UFK-7UAD +Downloaded DOI KAMD-TBF3 +Downloaded DOI E9S5-JRND +Downloaded DOI VY6A-SUNC +Downloaded DOI MJDU-H48T +Downloaded DOI 32MM-ABP6 +Downloaded DOI 4BKP-7W9F +Downloaded DOI KPNU-MQ6A +Downloaded DOI XR6M-6XXP +Downloaded DOI AU75-CV98 +Downloaded DOI VE8P-Y63H +Downloaded DOI JHQG-QGJK +Downloaded DOI 9TQK-ZAF3 +Downloaded DOI 9PVV-V9CD +Downloaded DOI D49V-GCVK +Downloaded DOI BJSB-TH5T +Downloaded DOI KBNB-MGD8 +Downloaded DOI HXZC-4WZT +Downloaded DOI 5ZKF-467F +Downloaded DOI P8PY-YSA5 +Downloaded DOI SNB2-RJ8C +Downloaded DOI 6EPK-426T +Downloaded DOI F3BQ-NU84 +Downloaded DOI HW9B-NXFY +Downloaded DOI WVJS-KRJC +Downloaded DOI GCCM-VXWX +Downloaded DOI 8J9E-Q2SK +Downloaded DOI Y9CF-378X +Downloaded DOI WDBY-ZHP5 +Downloaded DOI W2EG-BSX3 +Downloaded DOI 8E6F-WBXE +Downloaded DOI JYZN-DKZ5 +Downloaded DOI KJHX-QTS3 +Downloaded DOI X6CZ-4M4E +Downloaded DOI N38Y-JDU5 +Downloaded DOI BHGS-9GCC +Downloaded DOI RP6F-GRK7 +Downloaded DOI FK45-RJNB +Downloaded DOI ZK86-6JTP +Downloaded DOI Y4D2-VJTP +Downloaded DOI CBR8-KASK +Downloaded DOI 44R4-KR72 +Downloaded DOI SZHZ-QXYD +Downloaded DOI XV5Z-2ZDQ +Downloaded DOI D83U-ZN9F +Downloaded DOI M8DQ-ZQUD +Downloaded DOI J8WX-R5G6 +Downloaded DOI RUCT-ZMXE +Downloaded DOI 8KM7-PBVA +Downloaded DOI PNAD-M9HK +Downloaded DOI 6V2J-CS2S +Downloaded DOI MA2K-FZER +Downloaded DOI B8SG-VB8W +Downloaded DOI NYM5-HSXX +Downloaded DOI HE7E-FZ2B +Downloaded DOI 2BM7-M2J3 +Downloaded DOI A8AW-WRZQ +Downloaded DOI SF7P-86G6 +Downloaded DOI FBMK-7EQJ +Downloaded DOI YZNZ-Z9FF +Downloaded DOI T4UU-8MY4 +Downloaded DOI QSND-6UW2 +Downloaded DOI QH4U-3AM2 +No data found, error 404 +Downloaded DOI KBDK-9DKA +Downloaded DOI GW89-5DJN +Downloaded DOI X6BW-YEAK +Downloaded DOI M3RD-KWM8 +Downloaded DOI YRWS-XVK6 +Downloaded DOI MX67-E2X8 +Downloaded DOI YXEU-NZ65 +Downloaded DOI NMZJ-4DNN +Downloaded DOI 9C56-4AH2 +Downloaded DOI GASN-EPDH +Downloaded DOI 5EPS-3CAE +Downloaded DOI 66NA-9MEA +Downloaded DOI ZAAK-Z2UF +Downloaded DOI J6JQ-JN2U +Downloaded DOI H7W3-5SKU +Downloaded DOI Z9CG-R9MB +Downloaded DOI 7A76-2J78 +Downloaded DOI XYJN-CPHU +Downloaded DOI 3JJU-Q7D3 +Downloaded DOI 44TG-GC7Z +Downloaded DOI ZBSQ-84BB +Downloaded DOI N5BR-C3PE +Downloaded DOI YAE6-KUHY +Downloaded DOI TGD4-Z3ND +Downloaded DOI FFNB-DYPZ +Downloaded DOI 5PBF-MJE5 +Downloaded DOI 987S-DA3D +Downloaded DOI K2TC-5MGM +Downloaded DOI KEDP-8Q29 +Downloaded DOI UCE5-QQRW +Downloaded DOI VAZP-FK7S +Downloaded DOI MA39-E2YE +No data found, error 404 +No data found, error 404 +Downloaded DOI XPFR-RU3K +Downloaded DOI JHRZ-YHSR +Downloaded DOI W5H2-2YVB +No data found, error 404 +Downloaded DOI N5JF-CEY5 +Downloaded DOI 8FX5-5YXG +Downloaded DOI 6G8Z-B98S +No data found, error 404 +Downloaded DOI G29M-JWBV +No data found, error 404 +Downloaded DOI BUT4-3YEX +Downloaded DOI EQQJ-HNFE +Downloaded DOI FUUR-99YN +No data found, error 404 +Downloaded DOI T9J5-9BNZ +Downloaded DOI BH56-Q23Y +Downloaded DOI UFFH-UF99 +Downloaded DOI SB5T-5HRB +Downloaded DOI SW3W-DFE2 +Downloaded DOI FKGS-AW7T +Downloaded DOI CU7U-VB89 +No data found, error 404 +Downloaded DOI BN99-66N7 +Downloaded DOI K6XW-YZR2 +Downloaded DOI AVJQ-UPJM +Downloaded DOI QHPA-VSSD +Downloaded DOI HRQ9-UURX +Downloaded DOI V64V-7B4X +Downloaded DOI WSAP-QNWQ +Downloaded DOI QA8T-USYY +Downloaded DOI KGXW-BPZN +No data found, error 404 +Downloaded DOI 4BQ5-M88A +Downloaded DOI 9HPS-FDMN +Downloaded DOI 73SW-UXUY +No data found, error 404 +Downloaded DOI BQH5-T3PN +Downloaded DOI WZTD-MH6T +Downloaded DOI F8NB-DVU7 +Downloaded DOI PCU7-UDVN +Downloaded DOI DVNJ-AV6Y +Downloaded DOI FDYG-2DVQ +Downloaded DOI YDNT-CT4P +Downloaded DOI X8HR-AGJ9 +Downloaded DOI 3HWM-FG62 +Downloaded DOI 3NPD-AKFX +No data found, error 404 +Downloaded DOI 9J3A-EPSP +Downloaded DOI 3Z38-2AFS +Downloaded DOI 9XWY-WAV5 +Downloaded DOI GN5R-ZTA4 +Downloaded DOI 75UB-YRQW +Downloaded DOI 8TC7-4924 +Downloaded DOI V9S5-MR4C +Downloaded DOI AK43-C68Z +Downloaded DOI XZF7-NV4X +Downloaded DOI JY9W-AVWU +Downloaded DOI MM9Q-CJT9 +Downloaded DOI 43FV-YVUD +Downloaded DOI ZPQT-S494 +Downloaded DOI MY7F-53JJ +Downloaded DOI ZYAT-N9XK +Downloaded DOI MGER-2FYP +Downloaded DOI 34HG-UJN3 +No data found, error 404 +No data found, error 404 +Downloaded DOI 2GQH-EENP +Downloaded DOI DZ3T-8SWX +No data found, error 404 +Downloaded DOI 6GEM-B93N +Downloaded DOI 6TD3-MF4U +Downloaded DOI 9BG8-GJ6A +Downloaded DOI YFBH-Y5BG +Downloaded DOI YXSR-TFWF +Downloaded DOI RNKP-WFNT +Downloaded DOI RGT8-94NG +Downloaded DOI GJBE-WHWP +Downloaded DOI BNJR-9PMJ +Downloaded DOI BK8Q-SMD2 +Downloaded DOI WKMJ-3DC4 +Downloaded DOI R4SH-S4RS +Downloaded DOI 9HEK-55HM +Downloaded DOI UAZG-WUY6 +Downloaded DOI VJC7-SFGP +Downloaded DOI HMV5-DTDE +Downloaded DOI XXXV-J2TC +Downloaded DOI RC3A-3KKR +Downloaded DOI CGUW-SB8X +Downloaded DOI K8YH-XBHT +Downloaded DOI NPB6-VC34 +No data found, error 404 +Downloaded DOI 8VZS-S24R +Downloaded DOI KKJ8-4ZZ9 +Downloaded DOI J575-6DP5 +Downloaded DOI CSZK-236E +Downloaded DOI 6K5W-AR95 +Downloaded DOI V2G4-VRR7 +Downloaded DOI DZTZ-AQDM +Downloaded DOI 9WNS-HSKY +Downloaded DOI ZW34-DBFG +Downloaded DOI PCXJ-X94R +Downloaded DOI H3AD-HWFF +Downloaded DOI WMYF-85CN +Downloaded DOI C9RE-THEH +Downloaded DOI X59Y-MGCH +Downloaded DOI 728D-NHXE +Downloaded DOI Z8BD-AYMK +No data found, error 404 +Downloaded DOI 7BK3-6C7Y +No data found, error 404 +Downloaded DOI EY25-M3HP +Downloaded DOI 6XE8-9MMD +Downloaded DOI F5YT-AJ4V +Downloaded DOI ZX29-9DG5 +Downloaded DOI HK4U-PB59 +Downloaded DOI 3KNP-V6ZF +Downloaded DOI UYNM-5X7Y +Downloaded DOI YE4K-863F +Downloaded DOI 7BNA-2FD3 +Downloaded DOI A35R-G3Y4 +Downloaded DOI DNYP-NJ7E +Downloaded DOI 95JR-6GNA +Downloaded DOI VAHU-CE99 +Downloaded DOI WKFT-C86B +Downloaded DOI HVQP-JADA +Downloaded DOI SBCD-BY25 +Downloaded DOI YARF-9SKQ +Downloaded DOI GCKK-9PA3 +Downloaded DOI NBMV-ARTS +Downloaded DOI KXN8-UTSC +Downloaded DOI Y3VE-ZEMS +No data found, error 404 +Downloaded DOI Y3AA-489Y +Downloaded DOI P63M-M2P3 +No data found, error 404 +Downloaded DOI 6DF9-RQ9A +Downloaded DOI 5RP8-87NS +Downloaded DOI D35W-DMGR +No data found, error 404 +Downloaded DOI MF9C-XXSE +Downloaded DOI WFNJ-5GC4 +Downloaded DOI MXPB-ZH5C +Downloaded DOI TVGS-WFWZ +Downloaded DOI WND9-GZTW +Downloaded DOI X39V-UNWA +Downloaded DOI FTGE-DU6A +Downloaded DOI C6EG-NYXT +No data found, error 404 +Downloaded DOI QAWU-NAZ5 +Downloaded DOI 55YF-DYJA +Downloaded DOI AKX8-4TYR +No data found, error 404 +Downloaded DOI 3UEY-588J +Downloaded DOI HQ7T-PUCE +Downloaded DOI ZCGS-RVHC +Downloaded DOI XVJX-SUZT +No data found, error 404 +Downloaded DOI TRDC-JFTT +Downloaded DOI AM74-CWEQ +Downloaded DOI 5MPE-PVWQ +Downloaded DOI W4MR-BCST +Downloaded DOI 86SC-PFFN +Downloaded DOI JYR2-MQQC +Downloaded DOI WCHH-766G +Downloaded DOI ET8U-J456 +Downloaded DOI Q743-C79D +Downloaded DOI DRMC-HCHZ +Downloaded DOI SRS5-D86Z +Downloaded DOI 8QDM-52M2 +Downloaded DOI EAHT-AE5H +Downloaded DOI NJTP-MJWW +Downloaded DOI U2MQ-N8N9 +Downloaded DOI WDBQ-7FNB +Downloaded DOI 4Y8W-BHCS +Downloaded DOI ZQKV-ND6W +Downloaded DOI JJZK-NS3K +Downloaded DOI NP4M-JHDQ +Downloaded DOI 3NTQ-23VN +Downloaded DOI 22XC-9HXG +Downloaded DOI M67N-4SHS +Downloaded DOI 5QMC-M4CT +Downloaded DOI NTZS-DNPZ +Downloaded DOI XT2Q-755U +No data found, error 404 +Downloaded DOI Q5NG-MRTF +Downloaded DOI EB3C-EXDR +Downloaded DOI CATD-UF22 +Downloaded DOI GM2X-4PRN +Downloaded DOI MFNY-93WG +Downloaded DOI F846-WC7G +Downloaded DOI 3GYY-DGE9 +Downloaded DOI NUSG-3REQ +No data found, error 404 +No data found, error 404 +Downloaded DOI U2AE-9K69 +Downloaded DOI MGVM-M6TA +Downloaded DOI SB94-QYDW +Downloaded DOI W2U4-JW66 +Downloaded DOI QKCW-RZTP +Downloaded DOI HKYX-8XTG +Downloaded DOI CTQG-7BTH +Downloaded DOI 4XC7-E2SR +Downloaded DOI UR5S-Z6UF +Downloaded DOI UM77-WV6R +Downloaded DOI 2GPH-KWAW +Downloaded DOI MKDK-Z984 +Downloaded DOI 7CP5-ZFEQ +Downloaded DOI NXXG-NDAJ +No data found, error 404 +Downloaded DOI W2GS-GDNQ +Downloaded DOI SEG4-7QG8 +Downloaded DOI Z9Y6-2FKT +Downloaded DOI SZ23-45GK +Downloaded DOI BMPR-ZDWR +Downloaded DOI PNYM-P65B +Downloaded DOI 8XVC-RAFN +Downloaded DOI NPWW-S69E +Downloaded DOI BZDM-Q5GR +Downloaded DOI KFPA-HFJH +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI A4UY-7K62 +No data found, error 404 +Downloaded DOI 58V2-D24Y +Downloaded DOI S3JF-R4EX +Downloaded DOI 32G5-V688 +Downloaded DOI CWSS-UH38 +Downloaded DOI E3BB-HVCZ +Downloaded DOI VYPF-EVUA +Downloaded DOI JAZN-86ZP +Downloaded DOI 3MUA-6WHM +Downloaded DOI NGVA-X46U +Downloaded DOI 3H66-EZFR +Downloaded DOI P92P-8WKN +Downloaded DOI BE2B-4773 +Downloaded DOI PXN6-9D6T +Downloaded DOI BWZ8-X5WJ +Downloaded DOI ZGYP-SA3S +Downloaded DOI VFPK-GDB8 +Downloaded DOI Y39C-8A39 +Downloaded DOI WVNU-TCJQ +Downloaded DOI UTA4-ZZGX +Downloaded DOI C8HZ-SJEZ +Downloaded DOI ZQQE-SBAR +No data found, error 404 +Downloaded DOI GNU2-UTX6 +Downloaded DOI TA29-JGDG +No data found, error 404 +Downloaded DOI 3XMN-GBZG +No data found, error 404 +Downloaded DOI WUBK-6875 +No data found, error 404 +Downloaded DOI SHZH-FCXX +Downloaded DOI 9K9M-SUTT +Downloaded DOI E4GB-6NQK +Downloaded DOI AK4T-HSRR +Downloaded DOI 6GME-RPRM +Downloaded DOI G2P4-G5TU +Downloaded DOI E4JE-BJQT +Downloaded DOI XD92-NDRM +Downloaded DOI WXZZ-PVCY +Downloaded DOI X8PV-EWE3 +No data found, error 404 +Downloaded DOI BJ3C-SX5E +Downloaded DOI 2R6R-3K79 +Downloaded DOI N4F4-PVBW +Downloaded DOI FX9M-WU8M +Downloaded DOI 2HGK-BT6B +Downloaded DOI AJ9D-GXZ9 +Downloaded DOI QR8N-3HDQ +Downloaded DOI FW5N-8MPK +No data found, error 404 +Downloaded DOI QQ2N-7YEX +Downloaded DOI VUK4-K97E +Downloaded DOI KSCJ-PQU6 +No data found, error 404 +Downloaded DOI ZNYU-8WDC +Downloaded DOI Z9ET-ZHZS +Downloaded DOI PJ2R-CT98 +No data found, error 404 +Downloaded DOI 7Q9H-92Y3 +Downloaded DOI JQRU-EPCC +Downloaded DOI WYTR-5EZU +Downloaded DOI DZEP-FSEN +Downloaded DOI BTFX-Y69B +Downloaded DOI HUYF-FWRV +Downloaded DOI 9PMJ-9TTN +No data found, error 404 +Downloaded DOI Z3T4-JX2A +Downloaded DOI N7WH-ES78 +Downloaded DOI QBX3-FHN3 +Downloaded DOI 88N8-8FDT +Downloaded DOI 68BU-K8SB +Downloaded DOI XZ9Y-C9WR +Downloaded DOI 2T2E-6ZCV +Downloaded DOI NYWJ-RTNH +Downloaded DOI 7RZH-U2AT +Downloaded DOI 4HHD-R9Q6 +No data found, error 404 +Downloaded DOI EEXY-7GPF +Downloaded DOI JAUA-MCP4 +Downloaded DOI 6XMY-WAFB +Downloaded DOI CYCA-H6UX +Downloaded DOI PGDC-D7EK +Downloaded DOI J9UE-QW7N +Downloaded DOI XM89-X29P +Downloaded DOI JN68-UQHE +Downloaded DOI KDTJ-VVW7 +Downloaded DOI TYKF-S5AQ +Downloaded DOI 5EM5-HAS6 +Downloaded DOI G4JA-XZF7 +Downloaded DOI SW6N-QBHD +Downloaded DOI QGE6-H4ZG +Downloaded DOI 8ZRB-JT5N +Downloaded DOI WSZQ-YEU2 +No data found, error 404 +Downloaded DOI W3E2-CSA7 +Downloaded DOI UF7F-ZG5X +Downloaded DOI 69R5-4ZQG +Downloaded DOI H69S-D2XM +Downloaded DOI VEM5-WBJ6 +Downloaded DOI YQNQ-KDAH +No data found, error 404 +Downloaded DOI BXGH-67DW +Downloaded DOI QA67-YJP8 +Downloaded DOI S3HU-Q4M8 +Downloaded DOI KBY3-U8NG +Downloaded DOI 5WDC-WPPH +Downloaded DOI QHU3-YYD6 +Downloaded DOI KTQM-6QXD +No data found, error 404 +Downloaded DOI XW6D-DRY6 +Downloaded DOI KPXQ-CSMK +Downloaded DOI 6XC4-W2X6 +No data found, error 404 +Downloaded DOI 4JD8-BCC6 +Downloaded DOI TUJS-F9CD +Downloaded DOI THN2-Q44T +Downloaded DOI S347-KDTT +Downloaded DOI QTRD-Y4YV +Downloaded DOI 6G3S-VW8E +Downloaded DOI W4Z7-CEPP +Downloaded DOI 244U-URAW +Downloaded DOI MEB8-YXBK +Downloaded DOI M8VQ-GA7F +Downloaded DOI V2R5-YYBW +Downloaded DOI SADG-T2UU +Downloaded DOI REYP-J6CZ +Downloaded DOI CJTF-URXS +Downloaded DOI KE96-F2XP +No data found, error 404 +Downloaded DOI 6M25-94G3 +Downloaded DOI 4A6V-YUA5 +Downloaded DOI B58F-9PSY +Downloaded DOI EXG5-WBF2 +Downloaded DOI CSKG-3BP2 +Downloaded DOI YM8V-6MMV +Downloaded DOI 3EST-MGFN +Downloaded DOI G7R3-XJU2 +Downloaded DOI 2TTG-DXVD +No data found, error 404 +Downloaded DOI PSXG-75G3 +Downloaded DOI PQTM-8968 +Downloaded DOI RYJ8-QE6M +Downloaded DOI CF9D-9SJV +Downloaded DOI TW54-XHYZ +Downloaded DOI KJ5T-KCAB +Downloaded DOI 6XUW-BNV9 +Downloaded DOI TVWP-KWNW +Downloaded DOI NHBS-CYE5 +Downloaded DOI 8N5G-9AAS +Downloaded DOI DGSP-DXEV +Downloaded DOI MF5R-2DCG +Downloaded DOI AJ4B-TV9A +Downloaded DOI 6PJD-CYPF +Downloaded DOI N4VG-E935 +No data found, error 404 +Downloaded DOI MGMY-6UVR +Downloaded DOI 46EB-MGNA +Downloaded DOI P65G-VHJB +Downloaded DOI JSZN-6BQ9 +Downloaded DOI S8QK-CCDB +Downloaded DOI DRMD-EJ46 +Downloaded DOI NR99-GZHH +No data found, error 404 +Downloaded DOI DAYX-UCH3 +Downloaded DOI FBDH-9DGV +Downloaded DOI E7JE-4A7K +Downloaded DOI H4DA-AK7W +Downloaded DOI F9RA-2BYE +Downloaded DOI TKP9-GG2K +Downloaded DOI RK8B-DAEY +Downloaded DOI XT3H-ERKT +No data found, error 404 +Downloaded DOI 244J-BVE2 +Downloaded DOI STVK-CDKH +Downloaded DOI JSEU-4T3Z +Downloaded DOI 3SHY-NGWE +Downloaded DOI 3FJJ-X6G5 +Downloaded DOI YWDK-GCQP +Downloaded DOI 9UJF-7KV4 +Downloaded DOI 7DR4-SK7Q +Downloaded DOI SF58-G9RJ +Downloaded DOI RRA7-HZ54 +Downloaded DOI GR4V-RP2U +No data found, error 404 +Downloaded DOI RX7Q-RNJQ +Downloaded DOI GV4B-5TBN +No data found, error 404 +Downloaded DOI H4WH-7NEE +Downloaded DOI A4H5-NZA2 +Downloaded DOI X64M-5JMC +Downloaded DOI BVCM-E28G +Downloaded DOI EGRX-TFGP +Downloaded DOI ABXN-Y6Y6 +Downloaded DOI GUBV-YDK9 +Downloaded DOI FF6W-88GP +Downloaded DOI DN2K-5WQ9 +Downloaded DOI JHE8-4K5S +Downloaded DOI CGAJ-ANDY +Downloaded DOI 3VCK-4CBV +Downloaded DOI 2H3S-QRSA +Downloaded DOI 3Y49-NNTU +Downloaded DOI 96XG-T2E3 +Downloaded DOI 8S4W-3X5Y +Downloaded DOI 3PPA-DBZM +Downloaded DOI WB57-KJXC +Downloaded DOI GA6Q-7HKK +Downloaded DOI VSH8-HKX7 +Downloaded DOI WGX2-KBWF +No data found, error 404 +Downloaded DOI XZ75-39UT +Downloaded DOI 9P2Y-2CA8 +Downloaded DOI 3WZ7-YBQM +Downloaded DOI BB96-Q3Q9 +Downloaded DOI ZC55-GXP6 +Downloaded DOI VB2T-PQ4T +Downloaded DOI 97NQ-K7WA +Downloaded DOI WUY6-5E2W +Downloaded DOI VQCN-Q3A4 +Downloaded DOI GXW4-GYXE +Downloaded DOI VA2A-MKG4 +Downloaded DOI DTAN-E4U7 +Downloaded DOI JJ3R-GZ3N +Downloaded DOI 6NW3-YYTG +Downloaded DOI W5JJ-RHYC +Downloaded DOI EVB2-3M98 +Downloaded DOI GSQR-6WDM +Downloaded DOI C8KJ-3C99 +Downloaded DOI UFSK-X8TR +Downloaded DOI 4HE2-9DPV +Downloaded DOI QKZ8-AV5S +Downloaded DOI 6K4M-S9VV +Downloaded DOI 2HHW-4XYA +Downloaded DOI HPCC-D2RT +Downloaded DOI 3CHC-P74P +Downloaded DOI YQRU-6XDB +Downloaded DOI DHCH-ZYW9 +Downloaded DOI BA9N-QKJZ +Downloaded DOI KQWJ-RAJ2 +Downloaded DOI XBCT-WZHQ +Downloaded DOI 4CTB-4JJU +Downloaded DOI KABE-XUKP +Downloaded DOI GMTN-WA3H +Downloaded DOI BHZG-H99G +Downloaded DOI JAEM-3ZU7 +Downloaded DOI 4NJS-MMRQ +Downloaded DOI 288Z-KQAJ +Downloaded DOI 3PDS-S5XH +Downloaded DOI E72X-MJAZ +Downloaded DOI RTRF-WR99 +Downloaded DOI 49K4-5W7D +Downloaded DOI 256F-UHB9 +Downloaded DOI X8Q9-N4F4 +Downloaded DOI W42R-MHY7 +Downloaded DOI W94A-N2EE +Downloaded DOI WJPW-D2KM +Downloaded DOI JA7U-68M7 +Downloaded DOI MHBD-46RK +Downloaded DOI 2A3N-C3SU +Downloaded DOI UF4B-XTU3 +Downloaded DOI UDRS-E4ZD +Downloaded DOI N3KX-CFTC +Downloaded DOI NA25-U2BT +Downloaded DOI R4G3-NHTB +Downloaded DOI VFBH-ERV8 +Downloaded DOI CXDN-X9ME +Downloaded DOI BZJS-QQD2 +No data found, error 404 +Downloaded DOI 7989-XKEP +Downloaded DOI S5MU-ER3M +Downloaded DOI AZZ5-S6XG +Downloaded DOI RQ26-9842 +Downloaded DOI G5BJ-NXPK +Downloaded DOI GJJZ-QBDC +Downloaded DOI YY6E-GEYM +Downloaded DOI MFNH-PSJB +Downloaded DOI 2B8K-7YAY +Downloaded DOI 8H4W-UHJ5 +Downloaded DOI 9T4Q-KZAD +No data found, error 404 +Downloaded DOI U8W6-7A7S +Downloaded DOI ES6R-JBJT +No data found, error 404 +Downloaded DOI WSXY-RJMP +Downloaded DOI YGSR-59A8 +Downloaded DOI AYH8-U98U +Downloaded DOI 8QBU-SX4G +Downloaded DOI ZU6T-6EVZ +Downloaded DOI EJJB-RUVB +Downloaded DOI H7Z8-2T2V +Downloaded DOI X7EY-T27J +Downloaded DOI XTAY-7GE8 +Downloaded DOI CGX4-V2AW +Downloaded DOI 8SDP-MCV5 +Downloaded DOI VN8A-B55C +Downloaded DOI WCHP-UQ58 +Downloaded DOI 9VRT-KUA2 +No data found, error 404 +Downloaded DOI RX7Q-YC6P +Downloaded DOI VQN7-92JR +Downloaded DOI J8F7-3VSB +Downloaded DOI 8JD8-6KHY +Downloaded DOI 4GTY-EFUG +Downloaded DOI BZ7K-XVZE +Downloaded DOI JEXF-SQUF +Downloaded DOI VVEA-VFTE +Downloaded DOI Q6XM-UNXA +Downloaded DOI CV45-ARQA +Downloaded DOI 9NHQ-25A6 +Downloaded DOI 6H76-6KHE +Downloaded DOI EWGG-9MYR +Downloaded DOI ZHF9-8UTX +Downloaded DOI 8HD4-WSS3 +Downloaded DOI 6MMC-BZWH +No data found, error 404 +Downloaded DOI E7NU-PAR3 +Downloaded DOI CTJJ-PUNE +Downloaded DOI 5FUV-MSTA +Downloaded DOI 49BU-CF9A +Downloaded DOI WNNS-MG2H +Downloaded DOI 6PZ8-FHWD +Downloaded DOI Z9F7-RDV7 +Downloaded DOI HFUP-J7Q7 +Downloaded DOI VQWM-H3AC +Downloaded DOI D52C-GVYJ +Downloaded DOI JSF5-YRN6 +Downloaded DOI FUQA-856X +Downloaded DOI XDFN-QZGA +Downloaded DOI 69JS-Q32C +Downloaded DOI R2JA-QKS4 +Downloaded DOI WQQQ-S783 +Downloaded DOI 6YQB-2MEN +Downloaded DOI 8F8R-DA96 +Downloaded DOI QGZS-5XKM +Downloaded DOI 37GA-PV96 +Downloaded DOI 3HGH-C9P3 +Downloaded DOI X8V4-MAZV +Downloaded DOI NDCM-RCGW +No data found, error 404 +Downloaded DOI 7GEN-F8ND +Downloaded DOI 52CT-DDNT +Downloaded DOI 3VA6-YCVY +No data found, error 404 +Downloaded DOI BCVT-SEJV +No data found, error 404 +Downloaded DOI 96KH-EJRA +Downloaded DOI Z2NT-RJAF +Downloaded DOI KCXB-QQRR +Downloaded DOI CKHH-2HS5 +Downloaded DOI THUM-CEY8 +Downloaded DOI C4VN-XJD2 +Downloaded DOI YRJZ-6HVX +Downloaded DOI WJQ9-Q5A2 +Downloaded DOI 9HZ7-4FN4 +Downloaded DOI UHZB-5BMP +Downloaded DOI 868K-ZYU2 +Downloaded DOI B966-WQDS +Downloaded DOI 5MSP-59GS +Downloaded DOI AC4T-5UZ5 +Downloaded DOI W67V-X88N +Downloaded DOI WZC8-TQEW +Downloaded DOI 2J8E-PC6P +Downloaded DOI BTMF-JQJJ +Downloaded DOI BGXC-QUH5 +Downloaded DOI TR2Y-5B8W +Downloaded DOI E5WB-NXRG +Downloaded DOI HY6Q-CU7D +Downloaded DOI JNBH-3FXB +No data found, error 404 +No data found, error 404 +Downloaded DOI GA5M-8FJ3 +Downloaded DOI 834H-VUTV +Downloaded DOI XK2C-X4DZ +Downloaded DOI BTUX-DZ2E +No data found, error 404 +Downloaded DOI F774-9ADN +No data found, error 404 +Downloaded DOI YHEP-P29M +Downloaded DOI Y5NR-38UE +Downloaded DOI 2YQH-8UQ9 +Downloaded DOI K836-7Z2N +Downloaded DOI RPWX-UE7D +Downloaded DOI KEJJ-3S34 +Downloaded DOI 6HR3-BG67 +Downloaded DOI U7ZV-99BZ +Downloaded DOI HZXR-QJRD +No data found, error 404 +Downloaded DOI SP78-2BKV +Downloaded DOI 44GJ-Z6QB +Downloaded DOI 7ETC-9CFQ +Downloaded DOI NAPP-U4PN +Downloaded DOI KCFH-JDKJ +Downloaded DOI V2YA-YVFF +Downloaded DOI J75N-XAE2 +Downloaded DOI 9QFV-3SAR +Downloaded DOI TPMQ-9YMY +Downloaded DOI 8MA6-4H58 +Downloaded DOI YWWT-54Z2 +Downloaded DOI KRV4-2JQY +Downloaded DOI Q6VF-Z7PA +Downloaded DOI GTPN-RMMB +Downloaded DOI 85DK-B9CT +Downloaded DOI GYMZ-9EVZ +Downloaded DOI RBNV-5QRK +No data found, error 404 +Downloaded DOI P5BH-794M +Downloaded DOI TZZN-4NJX +Downloaded DOI 9AW7-GGSX +Downloaded DOI K8T8-GAC3 +Downloaded DOI C7SC-ZJ9A +Downloaded DOI FZSE-Z33C +Downloaded DOI TFMD-DSKU +Downloaded DOI AMKG-W9AR +Downloaded DOI AUMJ-EES5 +Downloaded DOI 2JZ3-F4RY +Downloaded DOI 2YQB-6A7F +Downloaded DOI 52PW-DVSZ +Downloaded DOI QAG9-62E5 +Downloaded DOI XZ3M-XT2U +No data found, error 404 +Downloaded DOI 353U-MQAP +Downloaded DOI G4PN-WNKE +Downloaded DOI 7HMK-DX85 +Downloaded DOI 5WUH-VUKT +No data found, error 404 +No data found, error 404 +Downloaded DOI KJCU-5EDG +Downloaded DOI YMX3-VY7H +Downloaded DOI UUNF-TZXQ +No data found, error 404 +Downloaded DOI D9BY-X6T8 +Downloaded DOI HZ49-BXMR +Downloaded DOI FQKV-CUNW +Downloaded DOI 5Y79-BDAD +Downloaded DOI FC7X-MRED +Downloaded DOI PKQP-EHQF +Downloaded DOI 4GWD-HZH9 +Downloaded DOI QQHD-5JVS +Downloaded DOI YY68-CSSS +Downloaded DOI VDYW-GEHK +Downloaded DOI BV6N-VGCB +Downloaded DOI MYNZ-56V9 +Downloaded DOI XYFT-H46A +Downloaded DOI UZDM-TPCV +Downloaded DOI X3T8-SYZW +Downloaded DOI U8YP-HVS2 +Downloaded DOI WJZS-NDZA +Downloaded DOI 3X32-7CMH +Downloaded DOI TP92-E944 +No data found, error 404 +Downloaded DOI MHAV-78BV +Downloaded DOI SC7B-WTHF +Downloaded DOI JPQJ-CF9H +Downloaded DOI PCC8-5ZR9 +Downloaded DOI WZQ6-RJ69 +Downloaded DOI DANR-4GFR +Downloaded DOI FNCR-6MQA +Downloaded DOI ASS5-QYDD +Downloaded DOI BEHM-FJAX +Downloaded DOI UVFC-TUDA +Downloaded DOI G57Q-85JY +Downloaded DOI KKZR-RZ96 +Downloaded DOI XV7G-U2KB +Downloaded DOI VHBS-NZV7 +Downloaded DOI 2F9X-PSBD +Downloaded DOI EDQA-X7ZA +Downloaded DOI Z2D4-EDZY +Downloaded DOI 6QFB-7Q7U +No data found, error 404 +Downloaded DOI MP3N-P3X3 +Downloaded DOI C4RQ-SPNK +Downloaded DOI J279-ZPY8 +Downloaded DOI YK7P-T42P +Downloaded DOI UFDH-JCQ3 +Downloaded DOI YN6E-4B55 +Downloaded DOI CR3Z-PRCH +Downloaded DOI 87TD-5ZWE +Downloaded DOI R35B-YSQN +No data found, error 404 +Downloaded DOI 5Q8D-XDYB +Downloaded DOI RNF6-Q3W2 +Downloaded DOI CM9X-EEQ9 +Downloaded DOI XVBV-GFKH +Downloaded DOI K46F-GD2P +No data found, error 404 +Downloaded DOI S8A7-PK2D +Downloaded DOI 395F-75YG +Downloaded DOI Z4XT-VYGH +Downloaded DOI AYN5-E6VM +Downloaded DOI J45P-X2D2 +Downloaded DOI BHFB-KKJS +Downloaded DOI 8C5C-S7M3 +Downloaded DOI NPKW-FDPV +Downloaded DOI 8596-9NDJ +No data found, error 404 +Downloaded DOI 3RAR-N5S8 +Downloaded DOI ZFT3-ATUH +Downloaded DOI X4WA-PV96 +Downloaded DOI HFD9-RDYH +Downloaded DOI B9DW-4YB5 +No data found, error 404 +Downloaded DOI 2S7E-PCMS +Downloaded DOI H9Z6-G45A +Downloaded DOI DXGY-WTDW +No data found, error 404 +No data found, error 404 +Downloaded DOI GEE9-X8KR +No data found, error 404 +Downloaded DOI U3GV-XVPY +Downloaded DOI FFJH-K67S +Downloaded DOI KBPH-VDWB +Downloaded DOI FKGD-Q2DN +No data found, error 404 +Downloaded DOI 3YY5-WSAF +Downloaded DOI 54F8-7MJR +Downloaded DOI DWTU-92BQ +Downloaded DOI XK33-QAQU +Downloaded DOI P4S8-ZFS6 +Downloaded DOI E78X-8Q55 +Downloaded DOI 6DGR-MUTK +Downloaded DOI V89C-P2Y8 +Downloaded DOI P3HD-KWCT +Downloaded DOI NRUA-W95Z +Downloaded DOI MZAZ-932Z +Downloaded DOI FWPX-5P5J +Downloaded DOI Y434-5AY7 +Downloaded DOI NJZS-HRWV +Downloaded DOI UQPX-744N +Downloaded DOI TZ5K-A5RQ +Downloaded DOI X6H2-AZUS +Downloaded DOI KNT7-Y6JH +Downloaded DOI GBPZ-JZBM +Downloaded DOI NG57-VBW6 +Downloaded DOI VW74-Y8T5 +Downloaded DOI Z5WR-EA5J +Downloaded DOI BK33-HJUX +Downloaded DOI YSPS-CF5R +Downloaded DOI BHSE-X6SQ +Downloaded DOI FXNR-66ET +Downloaded DOI NSM8-E3R8 +Downloaded DOI YYEB-3GU8 +No data found, error 404 +Downloaded DOI 5W5T-34T6 +Downloaded DOI ZVFQ-7TS7 +No data found, error 404 +Downloaded DOI XAUY-9BU8 +Downloaded DOI WAUT-KZMU +Downloaded DOI X6Z9-5X6W +Downloaded DOI TEBX-PWZ7 +Downloaded DOI RH38-RN4E +Downloaded DOI 2VDH-J4ST +Downloaded DOI X7DQ-SYMX +Downloaded DOI GRGN-3MBY +Downloaded DOI HC7Q-QUWN +Downloaded DOI CQ6T-Q6JE +Downloaded DOI EZKK-69AK +Downloaded DOI 5273-FB8V +Downloaded DOI MV5Q-TNE9 +Downloaded DOI MSSD-9H3C +Downloaded DOI 2YB3-GZBV +Downloaded DOI G2Q3-EKY8 +Downloaded DOI WFB8-DQ3F +No data found, error 404 +Downloaded DOI WBKT-XS2S +Downloaded DOI RZMJ-GJJA +Downloaded DOI G9F6-FHPG +Downloaded DOI NE34-BJQJ +Downloaded DOI A36R-AN6V +Downloaded DOI JKVZ-GR4K +Downloaded DOI QC8N-RRQ8 +Downloaded DOI 34XW-TB8M +Downloaded DOI V89B-XB5E +Downloaded DOI ZYVZ-YG93 +Downloaded DOI ANY5-JWN4 +Downloaded DOI 53FN-YP9K +Downloaded DOI E92T-JU6G +Downloaded DOI APBU-HUQH +Downloaded DOI 4HK6-93A3 +Downloaded DOI EYKX-7E4V +Downloaded DOI 3FYJ-FDNW +Downloaded DOI S5T7-RBKF +Downloaded DOI E6G8-7PNJ +No data found, error 404 +Downloaded DOI 5V7P-HAED +Downloaded DOI 33PH-53N3 +Downloaded DOI UM42-CU2D +Downloaded DOI M6HP-WNGK +Downloaded DOI VRCE-8MV9 +Downloaded DOI QBX4-JWPF +Downloaded DOI TF42-8JE9 +Downloaded DOI WHGW-GMWG +Downloaded DOI TEV9-WPZ9 +Downloaded DOI E8UH-WXE8 +Downloaded DOI 8BJN-XMY2 +Downloaded DOI JHKM-R5X7 +Downloaded DOI XMCA-MTRD +Downloaded DOI JTAW-CJK6 +Downloaded DOI 85XM-MHTY +Downloaded DOI X2CX-V9UA +Downloaded DOI ENBX-NB6V +Downloaded DOI 7UV3-PDJS +Downloaded DOI 2CC3-2NHR +Downloaded DOI H5JG-9V2E +Downloaded DOI GATM-JBBF +Downloaded DOI P8XK-DF5H +Downloaded DOI H5QZ-828S +Downloaded DOI 3B6Y-GFN7 +Downloaded DOI BE6C-QKGC +Downloaded DOI DRQX-2M5R +Downloaded DOI MFP8-NHNS +Downloaded DOI 4CNT-X9N7 +Downloaded DOI S9JB-RD4P +Downloaded DOI M5B5-8EC6 +Downloaded DOI 3568-2W3Q +Downloaded DOI HDVP-JPZS +Downloaded DOI FGUQ-9W9Q +Downloaded DOI 3J2Z-UZFN +No data found, error 404 +No data found, error 404 +Downloaded DOI 6MDP-RRWW +Downloaded DOI 6XVF-TEJE +Downloaded DOI YZME-XK48 +Downloaded DOI N27B-SFBY +Downloaded DOI BU7P-KQN2 +Downloaded DOI YW4D-4WU7 +Downloaded DOI Q376-Y6K8 +Downloaded DOI R99Y-S9D8 +Downloaded DOI HJ5M-JHTN +No data found, error 404 +Downloaded DOI HWK9-25UF +Downloaded DOI GCR2-9NBH +Downloaded DOI ZH4E-VDM6 +Downloaded DOI FN8T-CU8R +Downloaded DOI 6VEH-TUSF +Downloaded DOI 8SQY-SJPV +No data found, error 404 +Downloaded DOI HX23-VARN +Downloaded DOI 5T7S-6PXT +Downloaded DOI U4GZ-EWDR +Downloaded DOI DB74-N8A3 +Downloaded DOI 26J6-7YJT +Downloaded DOI KCXH-9RX6 +Downloaded DOI SYNH-MY55 +Downloaded DOI FB4T-NXDD +Downloaded DOI D68F-SJK3 +Downloaded DOI D8CX-BNKP +Downloaded DOI 582X-SG9R +Downloaded DOI TDHZ-8ARX +Downloaded DOI PB2F-FV4T +No data found, error 404 +Downloaded DOI T9ZX-W8N8 +Downloaded DOI XAJM-3CJG +Downloaded DOI YW74-KPKY +Downloaded DOI XQJB-4NCK +Downloaded DOI JAMS-DX6B +Downloaded DOI H77N-MX2A +Downloaded DOI 5WWF-Y3MG +Downloaded DOI FMEG-845E +Downloaded DOI RNR5-P9YU +Downloaded DOI T6YT-J8BU +Downloaded DOI 922N-MM7K +Downloaded DOI TERE-PGUN +Downloaded DOI P84X-RHEK +Downloaded DOI ZFW2-UB3U +Downloaded DOI SX7T-VMTB +Downloaded DOI KQFY-WSNJ +Downloaded DOI 7A39-792H +Downloaded DOI 6C9C-3GC2 +Downloaded DOI FEQ9-8G9R +Downloaded DOI KTB8-UWY5 +Downloaded DOI W4YP-B9B8 +Downloaded DOI AKCA-EMHN +Downloaded DOI JK3B-S5RU +No data found, error 404 +Downloaded DOI SFU4-CS9T +No data found, error 404 +Downloaded DOI GXMR-D82U +Downloaded DOI 2PC2-SUU9 +Downloaded DOI BPYT-QSGV +Downloaded DOI QHJ4-35MS +Downloaded DOI WQ6F-T7H3 +Downloaded DOI EAKR-T86C +Downloaded DOI QT6N-ZDZZ +Downloaded DOI 8P5V-9RGK +Downloaded DOI X43Z-PMJY +Downloaded DOI CTBB-22JC +Downloaded DOI S6GG-8JC2 +Downloaded DOI WXHA-52JG +Downloaded DOI 7GBS-35JW +Downloaded DOI P6M7-4RBM +Downloaded DOI NNKE-DTB6 +Downloaded DOI ZV99-GZXP +Downloaded DOI 4ABG-9FED +No data found, error 404 +Downloaded DOI PZNX-VYXF +Downloaded DOI DM3C-W3UW +No data found, error 404 +Downloaded DOI VAT7-KWTU +Downloaded DOI ZX9A-6R53 +Downloaded DOI P85Y-4F2G +Downloaded DOI EK7Z-4X95 +Downloaded DOI G3QP-M6PT +Downloaded DOI WJMA-JE7N +No data found, error 404 +Downloaded DOI Z9HM-85AN +No data found, error 404 +Downloaded DOI FWYG-WW3V +Downloaded DOI TMJ4-BBJX +Downloaded DOI WEG5-FKXS +Downloaded DOI YV4S-SG83 +Downloaded DOI V266-C6TV +Downloaded DOI YH8M-Q94S +No data found, error 404 +No data found, error 404 +Downloaded DOI 43TC-V86G +Downloaded DOI 8TQ7-2KHU +Downloaded DOI PY2P-FJS5 +Downloaded DOI AG79-463Y +Downloaded DOI 63B3-EU6K +Downloaded DOI 939C-SC4B +Downloaded DOI W4NH-E9CJ +Downloaded DOI 6YAF-FWUB +Downloaded DOI 8DJQ-9J2M +Downloaded DOI R8Q7-NX3U +Downloaded DOI XV8M-KSNS +Downloaded DOI N374-6B79 +Downloaded DOI N9ZM-RCSF +Downloaded DOI PXBD-AE6A +Downloaded DOI MPFD-EN6D +Downloaded DOI G8K6-KZR6 +Downloaded DOI RP98-QJZP +Downloaded DOI CMPY-TA9B +Downloaded DOI QDJB-CSPC +Downloaded DOI JNFU-UM7X +No data found, error 404 +Downloaded DOI AXV8-WGJ6 +Downloaded DOI JPPG-XK33 +Downloaded DOI 9WF9-SGYZ +Downloaded DOI XTH9-DSFE +Downloaded DOI 793W-423M +No data found, error 404 +Downloaded DOI CT9R-TTZ4 +Downloaded DOI TCBD-YMJB +No data found, error 404 +Downloaded DOI N56B-UJU4 +Downloaded DOI 2KV5-HUTG +Downloaded DOI A8W5-Z54C +Downloaded DOI THBB-THE2 +Downloaded DOI 7K2M-D2JF +Downloaded DOI WXPM-HNDP +Downloaded DOI WBKA-4HF2 +Downloaded DOI Z9E3-8YSW +Downloaded DOI 68WW-MT25 +Downloaded DOI SPRF-BQKJ +Downloaded DOI RJXT-DRXW +Downloaded DOI PE5Q-4ZFC +Downloaded DOI EXA2-PTR3 +Downloaded DOI HUBH-H9UN +Downloaded DOI RXDE-TUBF +No data found, error 404 +Downloaded DOI VJBG-2D36 +Downloaded DOI W5R8-9BFZ +Downloaded DOI NE39-9C4S +Downloaded DOI KSEJ-FC58 +Downloaded DOI 3JCR-RZAX +Downloaded DOI JTWY-434S +Downloaded DOI GVZU-J527 +Downloaded DOI 46U7-Q5NC +Downloaded DOI AGCX-SZCN +Downloaded DOI UXV2-ZSSB +Downloaded DOI EP4K-ZUCS +Downloaded DOI Z88S-2XQD +Downloaded DOI DPAM-YVYQ +Downloaded DOI FKHP-UJYT +Downloaded DOI 5RPK-Z835 +Downloaded DOI 5ZHM-256P +Downloaded DOI HMTS-HBK6 +Downloaded DOI EB5X-C979 +Downloaded DOI CH6Q-UAFY +Downloaded DOI 6WDQ-8RUA +No data found, error 404 +No data found, error 404 +Downloaded DOI D235-PVRK +Downloaded DOI RPQK-Q472 +Downloaded DOI VUCF-57VA +Downloaded DOI E5CR-AJ53 +Downloaded DOI ESEA-F3KV +Downloaded DOI RMGJ-QCHM +Downloaded DOI 4VS5-XXCK +Downloaded DOI X7W9-DRZE +Downloaded DOI 57JB-RX8M +Downloaded DOI 3AKT-ZKPY +Downloaded DOI RHCE-WSUK +Downloaded DOI NGHM-X7P9 +Downloaded DOI MA38-GQT9 +Downloaded DOI MFTD-UYAK +Downloaded DOI BVR3-UYRY +Downloaded DOI CM53-5EGZ +Downloaded DOI 2HYT-8Q42 +Downloaded DOI N47M-HAQP +Downloaded DOI ZGZH-TH54 +Downloaded DOI BEU4-4HNM +Downloaded DOI MUSB-JMB7 +No data found, error 404 +Downloaded DOI RS63-MEWT +Downloaded DOI UUCV-SVPZ +Downloaded DOI HGCT-Q8E6 +No data found, error 404 +Downloaded DOI B8C6-VVPM +Downloaded DOI 37CT-PUDM +No data found, error 404 +Downloaded DOI DANB-U9MQ +Downloaded DOI W82N-FMM3 +Downloaded DOI 78ZU-DT4W +Downloaded DOI DQAG-V6Y7 +No data found, error 404 +Downloaded DOI TFBR-CZMA +Downloaded DOI X8G4-3NMM +Downloaded DOI 9H8M-6NAV +Downloaded DOI FZ7Z-FHU4 +Downloaded DOI Z2UM-ZWX2 +No data found, error 404 +No data found, error 404 +Downloaded DOI SD7F-ZRPZ +No data found, error 404 +Downloaded DOI AXNP-HJ9T +Downloaded DOI RK8G-2FPU +No data found, error 404 +Downloaded DOI GPHG-W59N +No data found, error 404 +No data found, error 404 +Downloaded DOI 9DFX-2YGQ +Downloaded DOI KZYD-HUU7 +Downloaded DOI VXCD-H4G4 +Downloaded DOI JV5B-GCM2 +Downloaded DOI B8H7-SJMR +Downloaded DOI KKJY-FP84 +Downloaded DOI 2V9N-6Z5R +Downloaded DOI QT7Z-VVJY +Downloaded DOI B2MU-8VMM +Downloaded DOI 97Y3-H69V +Downloaded DOI FHX7-VXJC +No data found, error 404 +Downloaded DOI KDEH-MREK +Downloaded DOI SR6M-UN4G +Downloaded DOI 5DEJ-4DDM +Downloaded DOI C4P8-NZZ9 +Downloaded DOI 3C3V-WVJG +Downloaded DOI 54FE-YP8Y +Downloaded DOI A3CD-33YU +Downloaded DOI 42M4-KHNG +Downloaded DOI TFTP-S5RH +Downloaded DOI PK47-K62T +Downloaded DOI 2B7W-3BG2 +Downloaded DOI PENZ-Z4WD +Downloaded DOI YUVF-GYZQ +Downloaded DOI P9NA-FU5P +Downloaded DOI Z99V-779A +Downloaded DOI HAPS-WGKX +No data found, error 404 +Downloaded DOI ER9S-S8S3 +Downloaded DOI 8PJD-NF2M +Downloaded DOI 6E9A-8XGP +Downloaded DOI CVF6-K2V3 +Downloaded DOI K7K6-VFZ3 +Downloaded DOI UMQ5-YZFT +Downloaded DOI 5J96-4H4V +Downloaded DOI KF6A-N782 +No data found, error 404 +Downloaded DOI WNZA-K299 +Downloaded DOI ZD86-J3EN +Downloaded DOI XBRN-AHBC +Downloaded DOI 8X7J-RU8Y +Downloaded DOI BSQG-N6CW +Downloaded DOI 4VMW-JTBX +Downloaded DOI JYEK-GCQG +Downloaded DOI BEX4-X948 +Downloaded DOI NFUW-J82E +Downloaded DOI DAG6-8WYR +Downloaded DOI 9F48-7M9A +Downloaded DOI UYBU-6H96 +Downloaded DOI SHS7-BH7C +Downloaded DOI N2TZ-SY72 +Downloaded DOI 3CEZ-64M8 +Downloaded DOI 857S-VJZ9 +Downloaded DOI GEZB-TEKY +Downloaded DOI NHPY-NM73 +Downloaded DOI PW4A-MENG +Downloaded DOI ESER-RX9T +No data found, error 404 +Downloaded DOI DQ5K-5P6B +Downloaded DOI BKS5-N632 +Downloaded DOI W74T-EMGC +Downloaded DOI ZYYY-ESKQ +No data found, error 404 +Downloaded DOI 6FE7-XM4Z +Downloaded DOI TNE9-USB2 +Downloaded DOI 3GMJ-3VVX +Downloaded DOI Q6Y6-KMSF +Downloaded DOI Z6J3-ZNE7 +Downloaded DOI K3UA-ANCP +Downloaded DOI VT59-PJW2 +Downloaded DOI NNPB-CYFJ +Downloaded DOI 48SQ-SRU5 +Downloaded DOI 2UKG-FNWG +Downloaded DOI 8VCT-UDMU +Downloaded DOI SNGC-WDJG +Downloaded DOI JDEJ-4U88 +Downloaded DOI B6JU-RZQX +Downloaded DOI 54HF-63V5 +Downloaded DOI KCFG-VHEZ +Downloaded DOI Z8A8-7GZW +Downloaded DOI MM43-7YFW +No data found, error 404 +Downloaded DOI EX8M-QTAB +Downloaded DOI F56C-TK5C +Downloaded DOI BCM2-JM58 +Downloaded DOI Y9MG-M9KD +Downloaded DOI HHEG-6G38 +Downloaded DOI MSTQ-EN3W +Downloaded DOI BM42-RVS4 +Downloaded DOI W9AU-HP3Q +Downloaded DOI PHD5-U6JG +Downloaded DOI EZYF-MQ7A +Downloaded DOI Z8B6-H474 +No data found, error 404 +Downloaded DOI S3H8-QT52 +Downloaded DOI 27QQ-GVCH +Downloaded DOI RGV4-ZWH7 +Downloaded DOI 2R88-7UCU +Downloaded DOI 8JXR-TR8W +Downloaded DOI 24QB-HHSF +No data found, error 404 +Downloaded DOI W4VN-G8F8 +Downloaded DOI 4M6Y-XY3H +Downloaded DOI 9VDB-QPCX +Downloaded DOI UMGN-5PHD +Downloaded DOI G264-BMHB +Downloaded DOI FTG3-B62Z +Downloaded DOI BJ7K-JFJY +Downloaded DOI XQXD-YKWD +Downloaded DOI 2V9A-XUSM +No data found, error 404 +Downloaded DOI JHS4-5ZUR +No data found, error 404 +Downloaded DOI EE5S-DACC +Downloaded DOI 2BZY-KMCA +No data found, error 404 +Downloaded DOI JYWV-6ZPE +Downloaded DOI T8SH-KVSD +Downloaded DOI WMY2-GAMD +Downloaded DOI 99Q9-THK3 +Downloaded DOI 935D-K7CV +Downloaded DOI BSDN-JDKV +Downloaded DOI CYJM-7ABN +Downloaded DOI VV32-TXXT +Downloaded DOI Z5AC-UCX7 +Downloaded DOI 47FB-N6VQ +Downloaded DOI NKPS-KDE6 +Downloaded DOI SZWU-NDSD +Downloaded DOI PUMH-8HPE +Downloaded DOI 69AP-BFFZ +Downloaded DOI MWZE-BSXS +No data found, error 404 +Downloaded DOI 4XF4-UWNF +Downloaded DOI DRR5-6AZD +Downloaded DOI 257R-DXCZ +Downloaded DOI 68BW-ASKP +Downloaded DOI YVME-75UG +No data found, error 404 +Downloaded DOI TSRY-9YP8 +Downloaded DOI 25YH-2MZE +No data found, error 404 +Downloaded DOI 5V85-5EAN +Downloaded DOI BTUB-H9R7 +Downloaded DOI QKCY-A6UX +Downloaded DOI 44GX-XC2B +Downloaded DOI BSS5-WHRM +Downloaded DOI EVV3-GGF4 +Downloaded DOI MZ8P-FTXA +Downloaded DOI TQJR-UWWS +Downloaded DOI 7TJ8-PWRK +Downloaded DOI WXRH-PP6G +Downloaded DOI DXUG-85SG +Downloaded DOI 6XJ2-BGUU +Downloaded DOI WWRT-ET9G +Downloaded DOI 9WJE-Q2JR +Downloaded DOI 4FZD-R5ZC +Downloaded DOI T98A-K3HK +Downloaded DOI WDTH-SMCZ +No data found, error 404 +No data found, error 404 +Downloaded DOI 497G-73Q8 +Downloaded DOI 86GD-2ARM +Downloaded DOI PWYD-UHYG +Downloaded DOI 4A5D-BZSY +Downloaded DOI Y9MV-TMKT +Downloaded DOI TEUK-JZZT +Downloaded DOI 8ZTV-HFZ5 +Downloaded DOI 2AUW-6K43 +Downloaded DOI DX3J-TEYJ +Downloaded DOI RTC6-DNA8 +Downloaded DOI 6YCA-QWZB +Downloaded DOI G5EW-EM3X +Downloaded DOI 9PF2-QXDC +Downloaded DOI 8S29-PUHP +Downloaded DOI PAEQ-CXYU +Downloaded DOI 6FBG-6VPC +Downloaded DOI NCJ3-29D9 +Downloaded DOI ZAUT-REZR +Downloaded DOI 5RKQ-N9NR +Downloaded DOI JDHK-YAZE +Downloaded DOI VZDY-YD74 +No data found, error 404 +Downloaded DOI 7RZA-XG9J +Downloaded DOI VAB8-M4X7 +Downloaded DOI 3DMH-S5Y5 +Downloaded DOI G8D9-SPKB +Downloaded DOI M6XH-6KCF +Downloaded DOI WKF9-K8F7 +Downloaded DOI VS3M-WGWY +Downloaded DOI GJVZ-6SFJ +Downloaded DOI 46J4-G9GS +Downloaded DOI ASZM-ZTM4 +Downloaded DOI 27WY-7UB3 +Downloaded DOI BTX4-3K3F +No data found, error 404 +Downloaded DOI 5P7J-RC3G +Downloaded DOI 54KT-FE6W +Downloaded DOI 7KBE-7T3T +Downloaded DOI PZC4-DGVN +Downloaded DOI P44E-RYBW +Downloaded DOI KHEA-VUXC +Downloaded DOI S53A-GW4Z +No data found, error 404 +Downloaded DOI 96WM-57E8 +Downloaded DOI GVU2-SGYU +Downloaded DOI KAT8-UBW9 +No data found, error 404 +Downloaded DOI YT8T-T27R +Downloaded DOI 3P9Z-6GSC +Downloaded DOI JQMA-WJX9 +Downloaded DOI XA22-DZNK +Downloaded DOI GYJH-629M +Downloaded DOI NF8D-EUNK +Downloaded DOI VAMH-YYMZ +Downloaded DOI KHFK-8J2U +Downloaded DOI GATX-7Q74 +Downloaded DOI REF6-9UMX +Downloaded DOI HFHH-PUQF +Downloaded DOI U2GZ-UYTK +Downloaded DOI YM9A-ZNAS +No data found, error 404 +Downloaded DOI UU4W-3FBH +Downloaded DOI FCJ8-EKK4 +Downloaded DOI KZ3Y-WE7H +Downloaded DOI Q72N-FNKU +Downloaded DOI CDX3-9WJS +Downloaded DOI UWR3-UDDG +Downloaded DOI SGT4-ZAYS +Downloaded DOI CA8V-JFEZ +No data found, error 404 +Downloaded DOI P4MS-GR5C +Downloaded DOI 6V6Z-DEHQ +Downloaded DOI YYZY-X5XN +No data found, error 404 +Downloaded DOI XY44-6Z44 +No data found, error 404 +Downloaded DOI CWYM-KXB7 +Downloaded DOI 93WC-EP7P +Downloaded DOI CMM8-7FTF +Downloaded DOI WVZM-JDUH +Downloaded DOI V742-DEJF +Downloaded DOI 6TEH-NKUD +Downloaded DOI 2SP8-R4S5 +Downloaded DOI 3X3V-YWKE +Downloaded DOI KMYS-EQGC +Downloaded DOI Y288-Q9KN +Downloaded DOI SB5P-EMWP +Downloaded DOI Z66H-BJD6 +Downloaded DOI A9FV-CZ25 +Downloaded DOI RGJ5-SHKN +Downloaded DOI YRE8-9SEW +Downloaded DOI 3AJB-R2NJ +Downloaded DOI 2CNS-2EVU +Downloaded DOI FVB9-F6RF +Downloaded DOI QZFF-KY8U +Downloaded DOI M2KM-AVCZ +No data found, error 404 +Downloaded DOI 5YYH-ZJA4 +Downloaded DOI FS8Q-WZNA +Downloaded DOI P8QZ-7RWZ +Downloaded DOI YYEM-D26D +Downloaded DOI 7CNC-VRNB +Downloaded DOI 3KGS-FP2R +Downloaded DOI HC8H-3DPV +Downloaded DOI CABQ-68W2 +Downloaded DOI ZWFA-89CZ +Downloaded DOI ZGC9-M77K +Downloaded DOI 4XA5-ZZAG +Downloaded DOI AARF-5X82 +Downloaded DOI NZMX-PMJR +Downloaded DOI JKYX-9H6N +Downloaded DOI B2M7-QTU7 +Downloaded DOI ZBD4-HTAG +Downloaded DOI P389-5CWK +Downloaded DOI ZQS5-B64T +Downloaded DOI CZUF-5N7E +Downloaded DOI G6BX-ABJH +No data found, error 404 +Downloaded DOI 5N8A-TR7Z +No data found, error 404 +No data found, error 404 +Downloaded DOI 373Y-SBGF +Downloaded DOI K5GH-6J7M +Downloaded DOI 5DR8-ZYDM +No data found, error 404 +Downloaded DOI G534-PRG8 +Downloaded DOI 6VFK-UUCA +Downloaded DOI XYVK-XQ9D +Downloaded DOI M6RE-9ZDC +Downloaded DOI 9J7V-U22A +No data found, error 404 +Downloaded DOI 99C8-3YQC +Downloaded DOI V8K7-BJPY +Downloaded DOI JDD7-ZWUU +Downloaded DOI Q6Y5-DXV8 +Downloaded DOI M895-TX9E +Downloaded DOI HVGA-8W23 +Downloaded DOI JTNC-AQE5 +Downloaded DOI US9G-4FJG +Downloaded DOI 4UGG-55BZ +No data found, error 404 +Downloaded DOI 42UJ-5SPE +Downloaded DOI 3N77-QF4J +Downloaded DOI ZBQK-E38V +Downloaded DOI T7ZW-S6UT +Downloaded DOI 8AUT-748P +Downloaded DOI WNGB-CM25 +Downloaded DOI GC96-Z65H +Downloaded DOI TYX7-K3AW +Downloaded DOI RDTW-5M44 +Downloaded DOI YDGC-94KE +Downloaded DOI 5NJC-UNVX +Downloaded DOI YUAZ-A2QG +Downloaded DOI VJYT-QTNA +Downloaded DOI DRR7-QAKQ +Downloaded DOI 87EM-U7GK +Downloaded DOI 8GUZ-GCQD +Downloaded DOI FG72-SZVF +Downloaded DOI GSAR-73Q2 +Downloaded DOI 7E2C-93ZM +Downloaded DOI Y2XM-UC9M +Downloaded DOI WMU7-F7WQ +Downloaded DOI BWGE-SHXN +No data found, error 404 +Downloaded DOI ANHS-AUN5 +Downloaded DOI VFVP-AS6H +Downloaded DOI A4S5-ETCJ +Downloaded DOI YHQ3-AD6N +Downloaded DOI UQC5-9T22 +Downloaded DOI N5JK-ZB63 +Downloaded DOI 93S9-5ZD5 +No data found, error 404 +Downloaded DOI A3Q8-JTUA +Downloaded DOI GK8U-QC3E +Downloaded DOI KPD8-6R2Q +Downloaded DOI ERA8-FJBN +Downloaded DOI RUMM-3PT8 +Downloaded DOI GTHS-G8GZ +Downloaded DOI BV4B-2QYR +Downloaded DOI 3B7W-SU6Z +Downloaded DOI QMZW-XX3P +Downloaded DOI QQN8-TM4H +Downloaded DOI 2WCM-CFBK +Downloaded DOI 7YXQ-WNXJ +Downloaded DOI ZFFK-SHM4 +Downloaded DOI YQKA-UG5K +Downloaded DOI 7KWV-8XNR +Downloaded DOI YYQY-3ZAF +Downloaded DOI 2ZP5-4296 +Downloaded DOI Z8K7-S38N +Downloaded DOI 9E4F-FJ4S +Downloaded DOI 9SDT-9CW8 +Downloaded DOI 6Q36-MBZ2 +Downloaded DOI UD2X-478C +Downloaded DOI KBU6-JRZ9 +Downloaded DOI DHAJ-9BWM +No data found, error 404 +No data found, error 404 +Downloaded DOI ND6S-2HDV +No data found, error 404 +Downloaded DOI YVXJ-5MRG +Downloaded DOI 5G5C-CVKX +Downloaded DOI UEFN-45WG +Downloaded DOI 68CH-FWWE +Downloaded DOI FDZC-6NCR +Downloaded DOI WWJX-7RDD +Downloaded DOI 9NHH-HAS2 +Downloaded DOI HQ9Y-2NCR +Downloaded DOI P7AG-RZ2D +Downloaded DOI ND65-K5XV +Downloaded DOI KXJB-V4G6 +Downloaded DOI RZXF-JMBC +No data found, error 404 +Downloaded DOI ZQTU-Z2JQ +No data found, error 404 +No data found, error 404 +Downloaded DOI ZCSA-Y38Q +No data found, error 404 +Downloaded DOI XRAN-EJWY +Downloaded DOI 7DDR-4DHC +Downloaded DOI JQW6-TX2B +No data found, error 404 +Downloaded DOI XCE8-DE3E +Downloaded DOI YMQ5-FH3K +Downloaded DOI 483D-2Q6X +No data found, error 404 +Downloaded DOI 38PG-Y9GQ +Downloaded DOI 29QD-XKPN +Downloaded DOI R2UG-MEWH +Downloaded DOI BD5N-HBQC +Downloaded DOI TZ54-XYJ8 +Downloaded DOI 8QC9-T9D3 +No data found, error 404 +Downloaded DOI QJCV-BSDY +Downloaded DOI C6DJ-8G38 +No data found, error 404 +Downloaded DOI PDMX-V6MU +Downloaded DOI 49EJ-FJTF +No data found, error 404 +Downloaded DOI H8X6-QJG3 +No data found, error 404 +Downloaded DOI S98X-8BJX +Downloaded DOI DXNY-GH9N +Downloaded DOI RZHZ-98B5 +Downloaded DOI ZN8N-W4JF +Downloaded DOI CQY4-5AFT +Downloaded DOI HJUF-XHFW +Downloaded DOI Y4KM-8CF2 +Downloaded DOI MJTP-999Z +Downloaded DOI F9JF-ZSGJ +Downloaded DOI A2GH-XGU9 +Downloaded DOI DDF6-D6SR +Downloaded DOI B5R6-3FSR +Downloaded DOI CUJD-PJFY +Downloaded DOI XCXN-88XB +Downloaded DOI AQJY-2MBP +Downloaded DOI SA5Y-Q3DK +Downloaded DOI FD3Y-ANKZ +Downloaded DOI HYCT-M9FN +Downloaded DOI 4B3N-7GFS +No data found, error 404 +Downloaded DOI 9E2K-B2ER +Downloaded DOI JS7U-BWFP +Downloaded DOI QM95-B7ZQ +Downloaded DOI 39SK-6V6W +Downloaded DOI XARQ-PBQN +Downloaded DOI URBG-9KZF +Downloaded DOI YPHN-7SJ5 +Downloaded DOI EX98-JAJR +Downloaded DOI A4PZ-GEF3 +Downloaded DOI CQ7C-3BV9 +Downloaded DOI SSCD-E6W2 +Downloaded DOI SM2R-2AU8 +Downloaded DOI NHTW-ZYCK +Downloaded DOI 6G6M-HMRB +Downloaded DOI 55TW-JSM5 +Downloaded DOI DBG3-B3Z6 +Downloaded DOI MZEW-RRJV +Downloaded DOI FEBZ-CC68 +Downloaded DOI MVU9-SMXZ +Downloaded DOI 2USS-53AV +Downloaded DOI E83G-XRHW +No data found, error 404 +Downloaded DOI 8XXR-URSN +Downloaded DOI VUY6-8JAM +Downloaded DOI 4M97-V8RP +Downloaded DOI 4G8E-76U6 +Downloaded DOI K9W3-BE5S +Downloaded DOI YJVH-9V5N +No data found, error 404 +Downloaded DOI WJJV-4N4F +Downloaded DOI WVMU-KSHP +Downloaded DOI TUWH-3B6K +Downloaded DOI RNM7-SRS9 +Downloaded DOI P9VS-K9CY +Downloaded DOI SZBD-HDCW +Downloaded DOI PBPT-AWCQ +Downloaded DOI TF7R-7TB5 +Downloaded DOI 9KP7-ASAS +Downloaded DOI 3XYU-NS75 +Downloaded DOI 7VJR-2WHF +Downloaded DOI UGQY-D46C +Downloaded DOI GY3E-WJJE +Downloaded DOI X59U-UGBB +Downloaded DOI XZYY-PZSV +Downloaded DOI UH3U-UY5F +Downloaded DOI W7UX-MFQE +Downloaded DOI FVXM-M78V +Downloaded DOI F6Q2-D9YG +Downloaded DOI KYQB-DWZV +Downloaded DOI YBMJ-F9BC +Downloaded DOI 6MUW-K89P +Downloaded DOI WAND-CMJX +No data found, error 404 +Downloaded DOI N8K7-2QJT +Downloaded DOI 2799-FKK2 +Downloaded DOI TAEC-3TJT +Downloaded DOI HMRH-64QE +Downloaded DOI RKE7-S83M +Downloaded DOI 387R-YRXW +Downloaded DOI P7EH-9MYW +Downloaded DOI T6MX-CEKH +Downloaded DOI G97T-A6PX +Downloaded DOI KWA2-HHR4 +No data found, error 404 +No data found, error 404 +Downloaded DOI HAP6-WYRQ +Downloaded DOI MYRX-GGH5 +No data found, error 404 +Downloaded DOI KU4R-GAR5 +Downloaded DOI PR92-Z2ED +Downloaded DOI DK6R-6YPV +Downloaded DOI MZNH-94CB +Downloaded DOI 4KHA-HH74 +Downloaded DOI 2PXP-8SSY +Downloaded DOI 7WJ6-3K7J +Downloaded DOI KJKX-X5SB +No data found, error 404 +Downloaded DOI KXP2-3YQF +Downloaded DOI YH9V-9G6V +Downloaded DOI AYJ6-SNTC +Downloaded DOI YSM7-3PW4 +Downloaded DOI 33JH-3C8B +Downloaded DOI BPC6-HMV2 +Downloaded DOI TE9K-FD7G +No data found, error 404 +Downloaded DOI NV6D-ZR4H +Downloaded DOI ETYT-63PV +Downloaded DOI U5Y2-NZUD +Downloaded DOI C9EB-GGVX +Downloaded DOI N54C-A3FR +No data found, error 404 +Downloaded DOI ZVCT-7JVQ +Downloaded DOI W5PE-B9WU +Downloaded DOI Y4DA-Y6P9 +Downloaded DOI PYMH-YKVX +Downloaded DOI FFGG-SBAD +Downloaded DOI CW5N-WVT3 +Downloaded DOI 6VMB-9YQU +Downloaded DOI BDWV-RRG3 +Downloaded DOI WHDN-68U3 +Downloaded DOI PHX4-R4UX +Downloaded DOI 4M9U-H6HU +No data found, error 404 +Downloaded DOI MQRH-2RZW +Downloaded DOI V9CZ-CQCF +Downloaded DOI 6GNX-7243 +Downloaded DOI TARA-J9AH +Downloaded DOI F9A4-9535 +Downloaded DOI N5UH-SPYT +Downloaded DOI 6WSA-JPC3 +Downloaded DOI E99N-WZPK +Downloaded DOI 9Y9G-62XP +No data found, error 404 +Downloaded DOI 3Z9V-5E75 +Downloaded DOI GDB8-BN9S +Downloaded DOI J5MQ-K8EY +No data found, error 404 +Downloaded DOI 2X9H-SFDS +Downloaded DOI 2FY7-CT5F +Downloaded DOI YWWS-7S23 +Downloaded DOI AKUH-2R8H +Downloaded DOI B37T-CZ69 +Downloaded DOI YNZ4-Y5NT +Downloaded DOI RFDK-DY37 +Downloaded DOI F6E9-BWVN +Downloaded DOI B3G6-KBCZ +Downloaded DOI F4EB-8E4B +No data found, error 404 +Downloaded DOI F2C6-N9WB +Downloaded DOI 9QJ7-RZ84 +Downloaded DOI V64B-936N +No data found, error 404 +Downloaded DOI W68K-R8ET +Downloaded DOI XYVQ-HEPW +Downloaded DOI 3SGT-T78H +Downloaded DOI MBAU-PYM7 +Downloaded DOI W44V-5A3K +Downloaded DOI KMWD-ET53 +Downloaded DOI P7XV-5553 +Downloaded DOI P83J-G3W9 +Downloaded DOI MBAR-8TES +Downloaded DOI 8M3C-A7E4 +Downloaded DOI 3WQH-T572 +Downloaded DOI 89Z7-X2X6 +Downloaded DOI B8FT-A7YB +Downloaded DOI JQV2-HKFY +Downloaded DOI 3Q9Z-RRBC +Downloaded DOI NHB4-47TW +Downloaded DOI XNMP-6AAF +Downloaded DOI SEUY-SFVD +Downloaded DOI 339S-6D7Y +Downloaded DOI KJE9-YMYT +Downloaded DOI BH5A-7WCR +Downloaded DOI KBHU-WT9S +Downloaded DOI J9DA-ZBDJ +Downloaded DOI ZJFS-BNNX +Downloaded DOI GC2Q-73YP +Downloaded DOI EMRS-CCU7 +Downloaded DOI DWC7-4DKG +Downloaded DOI KBYB-PJZE +Downloaded DOI H92G-N5WB +No data found, error 404 +Downloaded DOI DP9Y-XRP2 +Downloaded DOI KS75-RTU4 +No data found, error 404 +Downloaded DOI 6HVQ-WJA6 +Downloaded DOI P3BT-TEFR +Downloaded DOI 9YHX-QEJM +Downloaded DOI NF4U-S9A3 +Downloaded DOI PZF8-2KAG +Downloaded DOI CXK9-MB2R +Downloaded DOI Z5UX-ZH8E +Downloaded DOI B4H9-Q6KA +Downloaded DOI TBCX-FUR9 +Downloaded DOI EMZG-GDTS +Downloaded DOI MV3F-AY4J +Downloaded DOI KUSH-KFFE +Downloaded DOI JS4E-VAEZ +Downloaded DOI 97HS-5GUQ +Downloaded DOI T5NV-35CV +Downloaded DOI TXHA-VX7G +Downloaded DOI EBWT-JXTG +Downloaded DOI US87-7XEZ +Downloaded DOI RD6Y-4SSS +Downloaded DOI VWVV-DSJX +Downloaded DOI 3TXS-H53B +Downloaded DOI CMAS-9DWR +Downloaded DOI QFYS-KPAV +Downloaded DOI 4DMH-HNR8 +No data found, error 404 +Downloaded DOI JYWM-5P65 +Downloaded DOI EQ8N-NJ5R +Downloaded DOI 5TQ3-WHSA +Downloaded DOI PRBW-7NWK +Downloaded DOI 5FY7-XP7T +Downloaded DOI D2AY-4DFZ +No data found, error 404 +Downloaded DOI 4HV8-D26F +Downloaded DOI 8RX2-UFJU +Downloaded DOI KJFZ-Y9KM +Downloaded DOI PX2G-QDCT +Downloaded DOI VR4V-6NUC +Downloaded DOI KSPE-V8DD +Downloaded DOI TCPV-3XQC +Downloaded DOI 5B8X-H48S +Downloaded DOI 7DXC-MT88 +Downloaded DOI 3868-MYD4 +Downloaded DOI 4SHB-77X8 +Downloaded DOI 4T9M-UB23 +Downloaded DOI 238B-W6M2 +Downloaded DOI H7DM-3V6S +Downloaded DOI 8WQ5-APZY +Downloaded DOI JUQ9-CH8A +Downloaded DOI XCXS-9AAA +Downloaded DOI V7MH-AEPF +Downloaded DOI K445-M7JQ +Downloaded DOI 7PWF-U7CV +Downloaded DOI NRS5-DJYN +Downloaded DOI 2MGG-YUFC +Downloaded DOI 6YZP-TWZ8 +Downloaded DOI 43GG-43CG +Downloaded DOI TJV5-5642 +No data found, error 404 +No data found, error 404 +No data found, error 404 +Downloaded DOI EFH2-NWV8 +Downloaded DOI 53WP-VNH7 +Downloaded DOI BKH2-HXAW +Downloaded DOI 8525-F8TK +Downloaded DOI SN6U-374R +Downloaded DOI YECS-8D4Z +Downloaded DOI WYMU-URDZ +Downloaded DOI PXJ7-K7WA +Downloaded DOI 7QN5-XBZV +Downloaded DOI 266D-QR9N +No data found, error 404 +Downloaded DOI ZE5Y-UM2M +Downloaded DOI A4RG-WK67 +No data found, error 404 +Downloaded DOI 7695-X3EG +Downloaded DOI T4CC-JHDM +Downloaded DOI SUYP-4KC4 +Downloaded DOI NURM-448Y +Downloaded DOI A9W3-AA64 +Downloaded DOI 7NRC-CHS8 +Downloaded DOI VSK5-C2U3 +Downloaded DOI DN2Z-64U9 +Downloaded DOI 6ZT9-3TYT +No data found, error 404 +Downloaded DOI 45VH-FDKQ +Downloaded DOI 27B4-2TJU +Downloaded DOI UY8U-THGX +Downloaded DOI UM8X-3FVM +Downloaded DOI KM5C-A4YS +Downloaded DOI HNMT-3GAW +Downloaded DOI JJMZ-UABF +Downloaded DOI 4RWJ-WDVE +Downloaded DOI 8UGC-QAVC +Downloaded DOI RE8Q-5ZVY +Downloaded DOI EU9S-TJYJ +Downloaded DOI 2TZJ-EHQD +Downloaded DOI BVY8-G3ZV +Downloaded DOI J5N2-WZBH +Downloaded DOI CM4U-5SEA +Downloaded DOI 22ZP-R6ZZ +Downloaded DOI QDBA-8HDU +No data found, error 404 +Downloaded DOI W88J-9RBV +No data found, error 404 +Downloaded DOI CR5V-RKWB +No data found, error 404 +Downloaded DOI VAWX-KV7F +No data found, error 404 +Downloaded DOI 5MZJ-5694 +Downloaded DOI 2SMQ-CKGA +Downloaded DOI DFYK-JE5Z +Downloaded DOI 2RW7-7BDW +Downloaded DOI XSFN-JMK8 +Downloaded DOI 5YB5-W4XG +Downloaded DOI FDHS-TY3U +Downloaded DOI RMJR-8NHN +Downloaded DOI FXS6-87SQ +Downloaded DOI RY73-TF3V +Downloaded DOI VZ3F-JVWY +Downloaded DOI VEU9-G6PZ +Downloaded DOI 8JVQ-DMUJ +Downloaded DOI YBWE-MJYX +Downloaded DOI 878G-HZ4Q +Downloaded DOI 53RE-TK2H +Downloaded DOI YNXS-MYDP +Downloaded DOI UR23-K9MV +Downloaded DOI X79D-XBHY +Downloaded DOI F87D-2JQG +Downloaded DOI X2WF-PEA5 +No data found, error 404 +Downloaded DOI RBVB-4D5J +Downloaded DOI MFFC-WMKE +Downloaded DOI P5GH-AMB6 +Downloaded DOI R42G-2YZ3 +Downloaded DOI VA7M-K5ZC +Downloaded DOI N63K-2UAD +Downloaded DOI K89Y-SCXT +Downloaded DOI NTAB-R4PN +Downloaded DOI G78Q-VJCW +Downloaded DOI 6M65-4WWV +No data found, error 404 +Downloaded DOI UDBD-MGY5 +Downloaded DOI KN6Z-8VNS +No data found, error 404 +Downloaded DOI RD7T-F4MG +Downloaded DOI 2BJB-H5YZ +Downloaded DOI FYEE-ZK8M +Downloaded DOI JFRX-DWUZ +Downloaded DOI KAHH-D552 +Downloaded DOI M2Y8-QFUV +Downloaded DOI WNFZ-GU74 +Downloaded DOI EHM4-CUAN +Downloaded DOI 3HYX-65RA +Downloaded DOI Z4ZN-QZRA +Downloaded DOI ZM6T-P75E +No data found, error 404 +Downloaded DOI TFR6-4PUY +Downloaded DOI W7B7-D22H +Downloaded DOI X4G7-3XXQ +Downloaded DOI EVBV-ETN3 +Downloaded DOI 5SXH-RSF3 +Downloaded DOI U4W6-TSJT +Downloaded DOI DJKC-8CTD +Downloaded DOI JE83-R576 +Downloaded DOI P8P4-RJ2C +Downloaded DOI QP86-GPF2 +No data found, error 404 +Downloaded DOI 8DCP-8485 +No data found, error 404 +Downloaded DOI 9YF6-DQCK +Downloaded DOI RPMX-J8VW +Downloaded DOI QCKQ-K6NT +Downloaded DOI 3CT3-CPRV +Downloaded DOI 4WEF-CPVF +No data found, error 404 +Downloaded DOI AHQJ-MMAJ +Downloaded DOI T2DV-X9X6 +Downloaded DOI 793J-AUUX +Downloaded DOI PYXC-RSBK +Downloaded DOI FTEU-BD2X +Downloaded DOI X32Q-EX26 +Downloaded DOI QDZ7-5VME +No data found, error 404 +Downloaded DOI S327-HK6M +Downloaded DOI PHCV-2EEH +Downloaded DOI M3YS-NX8D +Downloaded DOI 4GKE-SPA4 +Downloaded DOI 7CCE-SMEH +Downloaded DOI 6PCD-H87Q +Downloaded DOI AQ9T-82XY +Downloaded DOI ECN9-VCN4 +Downloaded DOI BMFP-HDUS +Downloaded DOI WHEE-UWHT +Downloaded DOI 56CW-TTR9 +No data found, error 404 +Downloaded DOI DTA9-VEUF +Downloaded DOI KKBX-F2K7 +Downloaded DOI NNSM-86XF +Downloaded DOI 2SYH-KS8M +Downloaded DOI JJ7D-3VUP +Downloaded DOI 2588-EP2E +Downloaded DOI UZFN-3QZ2 +Downloaded DOI V4PY-9EYU +No data found, error 404 +Downloaded DOI T4UU-2ZTW +Downloaded DOI Z9CK-WVQQ +Downloaded DOI 3RJB-ZRRD +Downloaded DOI VF5H-T4SD +Downloaded DOI AQTF-E5TT +Downloaded DOI JXKC-S8VX +Downloaded DOI 9VU8-8ABE +Downloaded DOI 4HWD-39W3 +Downloaded DOI DJU7-EGMJ +Downloaded DOI VYC6-FFAB +Downloaded DOI WRFP-NTCN +Downloaded DOI 3FKB-8KAU +Downloaded DOI MBDB-BDGH +Downloaded DOI KABT-EU4U +Downloaded DOI UA3T-MYS4 +Downloaded DOI E6P8-X49C +Downloaded DOI WWPT-E6QX +Downloaded DOI AA3X-XDZR +Downloaded DOI YABX-SEBX +No data found, error 404 +Downloaded DOI QAYP-E9FU +Downloaded DOI 8EVA-73GQ +Downloaded DOI HXQ8-82YM +Downloaded DOI MBHA-KZGN +Downloaded DOI J2XT-SN8J +Downloaded DOI VMUF-2UWY +No data found, error 404 +Downloaded DOI K7M2-GT4G +Downloaded DOI H438-JY3P +Downloaded DOI Q9SC-MBM5 +Downloaded DOI 76GH-P6GY +Downloaded DOI 2MBF-M3CB +Downloaded DOI Q6AP-TGU8 +Downloaded DOI C89K-UJ8C +Downloaded DOI WD66-4BT7 +Downloaded DOI 7PU3-38G4 +Downloaded DOI T3V3-USVQ +Downloaded DOI ESM5-XQ9P +Downloaded DOI VT8B-VFV7 +Downloaded DOI PHFU-RR92 +Downloaded DOI K6ZN-9Z4Y +Downloaded DOI XFCZ-AH58 +Downloaded DOI 823N-A5UF +Downloaded DOI GCUJ-AYGB +Downloaded DOI CN4Y-7UG4 +Downloaded DOI BASW-4NZB +Downloaded DOI RHTM-EKTH +Downloaded DOI 6QRT-GNDV +Downloaded DOI KFMC-XGK7 +Downloaded DOI RRME-M3FQ +Downloaded DOI U9CG-2HAW +Downloaded DOI 83Z8-QVPQ +Downloaded DOI JFRB-5CHX +Downloaded DOI YXVF-JQR2 +Downloaded DOI 5QY7-49FR +Downloaded DOI UPZU-JS3X +Downloaded DOI DRTQ-FU37 +Downloaded DOI 39MZ-JC7V +Downloaded DOI 2RXX-MBBH +Downloaded DOI GDCX-S3R5 +Downloaded DOI 3PHB-D3XQ +Downloaded DOI AJ37-VZWY +Downloaded DOI YWA2-Y7EN +Downloaded DOI TRUK-8R7V +No data found, error 404 +No data found, error 404 +Downloaded DOI DQ83-EQBE +Downloaded DOI ZHHA-QVD9 +Downloaded DOI ERQJ-9ZSN +No data found, error 404 +Downloaded DOI NVBT-4Z8X +Downloaded DOI Q4AA-FRDU +Downloaded DOI FTPE-29EN +Downloaded DOI MDRM-5JYQ +Downloaded DOI 3ESS-MBXJ +Downloaded DOI V4FE-47Y5 +Downloaded DOI Q6QP-HZGJ +Downloaded DOI EK8F-2SNC +Downloaded DOI WUKR-5EW5 +Downloaded DOI V635-XSPC +Downloaded DOI 2EE6-ZFTY +Downloaded DOI VATQ-8C5Q +Downloaded DOI ZG3C-BZ5N +Downloaded DOI V7UE-2HPE +Downloaded DOI E27M-Z4BS +Downloaded DOI HJES-V88A +Downloaded DOI EP9N-SMVR +Downloaded DOI D8DT-JJC2 +No data found, error 404 +Downloaded DOI BEZG-7EUX +Downloaded DOI GCFJ-ASWS +Downloaded DOI DPN9-SRN4 +Downloaded DOI CCZA-YAVM +Downloaded DOI HXPU-UBTR +Downloaded DOI GPQP-YTEP +Downloaded DOI 3Q98-DFS9 +Downloaded DOI T7DK-R2BA +Downloaded DOI PM8K-4QAM +No data found, error 404 +Downloaded DOI ABND-JA69 +Downloaded DOI 3TN9-JJG7 +Downloaded DOI HCM8-PYUW +Downloaded DOI J553-55Q4 +Downloaded DOI URK8-3PMN +Downloaded DOI 2JD4-SG8E +Downloaded DOI 422X-ZY8S +Downloaded DOI CN5K-2DGF +Downloaded DOI 6XRB-8V37 +Downloaded DOI JUES-KGVB +Downloaded DOI 8XDT-5SDA +Downloaded DOI RFVE-BSR8 +Downloaded DOI TUX5-UQAH +Downloaded DOI GESD-82AW +Downloaded DOI QJ3H-2CWK +No data found, error 404 +Downloaded DOI HVDD-DCWN +Downloaded DOI SDBY-VNXH +Downloaded DOI YN84-3QMU +Downloaded DOI 4PQ6-MPM7 +Downloaded DOI FA9Q-U46M +Downloaded DOI RG45-453U +Downloaded DOI 9VDP-AVD7 +Downloaded DOI EUUC-A8XC +Downloaded DOI U65A-JCWF +Downloaded DOI S2QY-GAT9 +Downloaded DOI WBSY-EXV9 +Downloaded DOI NNNV-NBMP +Downloaded DOI 5MRK-D98F +Downloaded DOI XVZG-4UEN +Downloaded DOI W5FD-BT3B +Downloaded DOI DVN5-SS3T +Downloaded DOI 8HM6-S4M6 +Downloaded DOI ACWQ-U6R3 +Downloaded DOI UU2Q-8TYR +Downloaded DOI 6BXV-BM2G +No data found, error 404 +Downloaded DOI AG4V-UDAC +Downloaded DOI KGAE-KXK6 +Downloaded DOI MRVA-56F9 +Downloaded DOI REKG-BB2Y +Downloaded DOI Y8ZZ-AP5Q +Downloaded DOI ZBA9-3FZ3 +Downloaded DOI NUKP-SWRM +Downloaded DOI Z6YR-FTEK +Downloaded DOI NDEN-TTXX +Downloaded DOI HEKR-SU7P +No data found, error 404 +Downloaded DOI ED36-ZA7T +Downloaded DOI Z5CB-4XFP +Downloaded DOI VE2F-E597 +Downloaded DOI S5MP-4V9D +Downloaded DOI H282-26MP +Downloaded DOI UHBN-ZT9X +Downloaded DOI YT9T-EBRT +Downloaded DOI 94KS-CP4J +Downloaded DOI 8URB-MWZD +No data found, error 404 +Downloaded DOI 9AQZ-429W +Downloaded DOI 65G9-QF6N +Downloaded DOI 4G6W-DSWN +Downloaded DOI XNUJ-Q6JQ +Downloaded DOI X2D7-P3VC +Downloaded DOI 9QMX-APXP +Downloaded DOI 5VQJ-VS52 +Downloaded DOI 78K4-UP6D +Downloaded DOI R3P7-G2BQ +Downloaded DOI B5VR-YQ5N +No data found, error 404 +No data found, error 404 +Downloaded DOI TFKG-3X8W +Downloaded DOI E396-88NH +Downloaded DOI T6J3-SHQP +Downloaded DOI XJMA-ZEA8 +Downloaded DOI 75QM-QMAK +Downloaded DOI ED9Y-73B3 +Downloaded DOI CVES-A7EM +No data found, error 404 +No data found, error 404 +Downloaded DOI WF9F-G6VB +Downloaded DOI A46Q-AC72 +Downloaded DOI 6KN8-XPTM +Downloaded DOI AND4-5KJX +No data found, error 404 +Downloaded DOI RGYF-3NHN +Downloaded DOI 9VU8-Q3C9 +Downloaded DOI ZFRR-49YS +Downloaded DOI H39B-HE2C +Downloaded DOI 4G4N-BRXP +Downloaded DOI G7V4-PM3E +Downloaded DOI 3PCN-2G6N +Downloaded DOI HWSF-P7Z8 +Downloaded DOI G7AN-74U8 +Downloaded DOI 38HC-SX9S +No data found, error 404 +Downloaded DOI E8KC-3Z6K +Downloaded DOI S7JJ-Z8ZU +Downloaded DOI CWBJ-SAU5 +Downloaded DOI 56WR-DC93 +Downloaded DOI KRGG-VBV3 +No data found, error 404 +Downloaded DOI 8ARU-X8M7 +Downloaded DOI 97V2-CBXP +Downloaded DOI V4FG-ECTY +Downloaded DOI 92UF-5T7W +Downloaded DOI KRWQ-72MC +Downloaded DOI QZGF-ZQW7 +Downloaded DOI KUR9-9STM +Downloaded DOI JJN7-92DS +Downloaded DOI EYHU-8KGE +Downloaded DOI QBDQ-347C +Downloaded DOI ZTWD-MAYJ +Downloaded DOI BT5J-YSEU +No data found, error 404 +Downloaded DOI TEBH-53UQ +Downloaded DOI DAM8-DX4F +Downloaded DOI PC9Y-J3FQ +Downloaded DOI VE8D-C5RM +Downloaded DOI 83TA-ZCKC +Downloaded DOI YGZA-BP8G +Downloaded DOI NYPS-YTQ9 +No data found, error 404 +Downloaded DOI VHD3-M3WB +Downloaded DOI 7GTF-RRR5 +Downloaded DOI BN5X-Q2E2 +Downloaded DOI B6ZN-EREE +Downloaded DOI W9CJ-UUAX +No data found, error 404 +Downloaded DOI HHYT-5DXA +Downloaded DOI R2SP-N38B +Downloaded DOI NSZC-KREV +Downloaded DOI 736M-XRJQ +Downloaded DOI 6XF2-MJS6 +Downloaded DOI 993D-V7S4 +Downloaded DOI TQYP-KKFB +Downloaded DOI DUXD-CS8H +Downloaded DOI 94V6-TCS6 +Downloaded DOI QGMT-6ZMK +Downloaded DOI HQ55-J2VA +Downloaded DOI JA2Z-VNYU +Downloaded DOI 7456-H3M2 +Downloaded DOI KB8N-QUVE +Downloaded DOI 7FBN-MB88 +No data found, error 404 +Downloaded DOI N9WY-97XM +Downloaded DOI X42A-RQQB +Downloaded DOI 5XWE-N7CA +Downloaded DOI 5QFU-F3M4 +Downloaded DOI RXQV-SQGV +Downloaded DOI GQ4Y-2YFM +Downloaded DOI X7NK-G2VY +Downloaded DOI HXRG-2UD3 +Downloaded DOI ZCAJ-AS6D +No data found, error 404 +Downloaded DOI R6UD-5B64 +Downloaded DOI Y5E4-9FEQ +Downloaded DOI EM52-BUYW +Downloaded DOI R5N5-TDVM +Downloaded DOI G2KV-BV9K +No data found, error 404 +Downloaded DOI UGCS-QHVQ +Downloaded DOI SGEG-NKEH +Downloaded DOI Z2TG-BQQ5 +Downloaded DOI RWUT-6TNJ +Downloaded DOI 2RRQ-HDQ5 +Downloaded DOI 27YH-SRTJ +Downloaded DOI MTXZ-Y8BJ +Downloaded DOI AFXZ-F8HU +Downloaded DOI 4TQ5-CUAD +Downloaded DOI W9VJ-DD9M +Downloaded DOI PYPK-AYME +Downloaded DOI V4SM-T954 +Downloaded DOI 6X37-BQK9 +Downloaded DOI 29T9-ZG6M +Downloaded DOI QPZF-86T8 +Downloaded DOI 2K5A-MP78 +Downloaded DOI JYSQ-UFAF +Downloaded DOI PR7K-4STP +Downloaded DOI FXSB-G88Z +Downloaded DOI NMG5-YJZK +Downloaded DOI R55J-ER27 +Downloaded DOI CM7J-T9SZ +Downloaded DOI 34CM-XM86 +Downloaded DOI 2KTY-4C3B +Downloaded DOI JGQH-GF3S +Downloaded DOI QPX6-UMAR +Downloaded DOI HCKR-NWDR +Downloaded DOI MQZK-6KTT +Downloaded DOI Q8DK-32GS +Downloaded DOI S75Z-BMMV +Downloaded DOI PPNZ-BVYV +Downloaded DOI MC49-9H76 +Downloaded DOI QS5G-GDVR +Downloaded DOI X8VQ-RAPH +Downloaded DOI SDHR-SC48 +Downloaded DOI 4AS8-KT23 +Downloaded DOI FTC6-PBXW +Downloaded DOI PQXD-3QNC +Downloaded DOI R25Z-WURR +Downloaded DOI YGTE-JJNX +Downloaded DOI 26WM-2Q56 +Downloaded DOI ASPJ-XPR9 +Downloaded DOI RXE3-TDND +Downloaded DOI PWUY-WAWE +Downloaded DOI K5FV-4YQC +Downloaded DOI VH9M-DBUB +Downloaded DOI 3MFY-T5RT +Downloaded DOI 3X2X-PP45 +Downloaded DOI GHZD-XNWK +Downloaded DOI 26ES-WK2J +Downloaded DOI HF8P-TVGN +Downloaded DOI ANER-9AZM +Downloaded DOI A4V8-WRNH +Downloaded DOI 5K8B-V7EJ +Downloaded DOI QV78-2VXD +Downloaded DOI SWY7-BYXT +Downloaded DOI KEJZ-EDZK +Downloaded DOI ZAB7-25XR +Downloaded DOI 3KT5-P26J +Downloaded DOI 47HR-5RET +Downloaded DOI 2H42-4KBJ +Downloaded DOI ZKXW-AVYV +Downloaded DOI C68C-T3C4 +Downloaded DOI BGF6-GQA8 +Downloaded DOI PYM7-CHMW +Downloaded DOI JQ5E-NK9B +Downloaded DOI B2C8-4Q8H +Downloaded DOI KRZN-KNGC +Downloaded DOI Z597-EXZ3 +Downloaded DOI NUD3-NJVH +Downloaded DOI CP52-46TM +Downloaded DOI 2JYB-QJSC +Downloaded DOI JV3V-QC29 +Downloaded DOI 8SAS-8YB8 +Downloaded DOI JCWG-DK5U +Downloaded DOI H6RE-QJCB +Downloaded DOI PM3B-FXZE +Downloaded DOI JZS5-BNYJ +Downloaded DOI SY9N-3RB4 +Downloaded DOI N497-Z9BG +Downloaded DOI J2X2-VSK3 +Downloaded DOI UHNP-FN46 +Downloaded DOI R5DV-5F6D +Downloaded DOI VS8R-EMXF +Downloaded DOI 2Q8J-6YSG +Downloaded DOI T8X5-2789 +Downloaded DOI 3UJ2-U4NM +Downloaded DOI AXER-4RSF +Downloaded DOI S82M-RUW4 +Downloaded DOI 65KC-U3TN +Downloaded DOI GPPV-82F7 +Downloaded DOI FU8F-ZQ2B +Downloaded DOI 4C78-QVUT +Downloaded DOI H6F6-4GX2 +Downloaded DOI SAAJ-ZACE +Downloaded DOI YVRZ-5XA6 +Downloaded DOI 4ND4-RXWS +Downloaded DOI DDEP-EZFG +Downloaded DOI KK84-6FWV +Downloaded DOI HKU5-WJVH +Downloaded DOI Y85G-4ARJ +Downloaded DOI VBU8-8D5G +Downloaded DOI 3VVU-HH8Y +Downloaded DOI JNF7-S7XE +Downloaded DOI EKRJ-DCH5 +Downloaded DOI XXJ7-APME +Downloaded DOI DCCX-TJ9X +Downloaded DOI 545M-V3Y2 +No data found, error 404 +Downloaded DOI G5Q7-TDZR +Downloaded DOI 795B-MCES +Downloaded DOI DYNF-RHNU +Downloaded DOI XRJN-QX6X +Downloaded DOI UHZA-WUU5 +Downloaded DOI BXFT-EURA +Downloaded DOI SJ8T-TPEX +Downloaded DOI GUSU-496X +Downloaded DOI 9RTC-P99P +Downloaded DOI ASPT-KTX9 +Downloaded DOI YB5G-BAQ2 +Downloaded DOI 76GN-9R7D +No data found, error 404 +Downloaded DOI 3GWH-ADEF +Downloaded DOI WDZK-3KW5 +Downloaded DOI VTAM-8N28 +No data found, error 404 +Downloaded DOI 2F2J-H8YU +Downloaded DOI E4K9-2YN9 +Downloaded DOI HAPA-9NH9 +Downloaded DOI 24ZY-33FJ +Downloaded DOI XDE4-4FB7 +Downloaded DOI XB8A-TABM +Downloaded DOI SQMG-K6XK +Downloaded DOI WBU2-2E4T +Downloaded DOI GJS4-U3TN +Downloaded DOI BDRC-PDB3 +Downloaded DOI VFTA-XAFS +Downloaded DOI WUH5-76F3 +Downloaded DOI QYC8-EQUN +Downloaded DOI ARN8-5PPA +No data found, error 404 +No data found, error 404 +Downloaded DOI 4HXZ-3XJM +Downloaded DOI 4ECK-PXG2 +Downloaded DOI E8EA-5KYU +Downloaded DOI UYGS-Z3R4 +Downloaded DOI SEG8-MDF2 +Downloaded DOI 82GU-FXY6 +Downloaded DOI 58CA-V7JN +Downloaded DOI 49DE-HPZP +Downloaded DOI DWRF-ASM2 +Downloaded DOI TBBM-F35B +Downloaded DOI EBZ3-86ZW +Downloaded DOI R8ET-P6YZ +Downloaded DOI XCSD-EPVV +Downloaded DOI QS93-TF3B +No data found, error 404 +Downloaded DOI HN8Y-GDGB +Downloaded DOI J4U7-X8BT +Downloaded DOI MHK5-UCE3 +No data found, error 404 +Downloaded DOI 7QFB-FKUD +Downloaded DOI AFMG-5CSA +Downloaded DOI RM7S-VQKA +Downloaded DOI BZ7Q-E3SN +Downloaded DOI JXZS-BBZK +Downloaded DOI YVAQ-PZW7 +Downloaded DOI V2FY-ZSDN +Downloaded DOI 6PQR-53XZ +Downloaded DOI KHDS-DJ7P +Downloaded DOI 4BZN-QN6E +Downloaded DOI WZP5-44MK +Downloaded DOI 9HTB-D34V +Downloaded DOI Q8ZC-JRUP +Downloaded DOI T347-UEZD +No data found, error 404 +Downloaded DOI XNK4-T5J4 +Downloaded DOI 3MPJ-WCF9 +Downloaded DOI 923S-3BET +Downloaded DOI 2ZDK-4EFK +No data found, error 404 +Downloaded DOI NUG9-YWJ9 +Downloaded DOI DH7X-2TTT +Downloaded DOI J2AC-4UQX +Downloaded DOI XSZE-MTMS +Downloaded DOI V6VG-J73G +Downloaded DOI 6AME-W744 +Downloaded DOI 6Z9M-GK8B +Downloaded DOI ASSZ-NFUU +Downloaded DOI BVCU-XHUR +Downloaded DOI G2MX-KYUX +Downloaded DOI 5ZKT-7NEA +Downloaded DOI R698-JCQ4 +Downloaded DOI 98DC-SCE9 +Downloaded DOI 6R2S-67CF +Downloaded DOI TK9B-A2JB +Downloaded DOI NJKX-4D8S +Downloaded DOI XF3U-TXCF +Downloaded DOI ZDTP-DKVM +Downloaded DOI HPPZ-8CVZ +Downloaded DOI S6DZ-2P3D +Downloaded DOI R3HH-5V6H +Downloaded DOI N7GC-CSAC +Downloaded DOI WFPH-83M5 +Downloaded DOI R7BW-FVEF +Downloaded DOI S23X-FDUT +Downloaded DOI VG5K-Q8AG +No data found, error 404 +Downloaded DOI S7DS-GG2N +Downloaded DOI BGJ2-EK4A +Downloaded DOI BU7Y-XCP8 +Downloaded DOI 447D-97BH +No data found, error 404 +Downloaded DOI WT58-YJT6 +Downloaded DOI YZH4-KWAY +Downloaded DOI ZUP9-ST8Z +Downloaded DOI CYWQ-DZMW +Downloaded DOI VCBH-5GHH +Downloaded DOI T47T-K2GG +Downloaded DOI GHTA-R8D5 +Downloaded DOI HM9B-YJJC +Downloaded DOI RUJU-25V8 +Downloaded DOI UB2G-7M42 +No data found, error 404 +Downloaded DOI MXWR-HXXE +Downloaded DOI 22TH-PGHR +Downloaded DOI CT8F-WJ6P +Downloaded DOI NFC8-9AVN +Downloaded DOI H759-55X3 +Downloaded DOI WSR6-NXP7 +Downloaded DOI B4VU-QAHQ +Downloaded DOI 8YNR-9PRN +No data found, error 404 +Downloaded DOI N2XT-HTD2 +Downloaded DOI KH2T-2QQ3 +No data found, error 404 +Downloaded DOI KKAS-T5D5 +Downloaded DOI JQRQ-D5QN +Downloaded DOI 9K77-BBQD +Downloaded DOI TPBS-8UKE +Downloaded DOI NBY3-87QW +Downloaded DOI 4NG2-XBNS +Downloaded DOI RF2G-P7M3 +No data found, error 404 +Downloaded DOI QMFZ-U2K5 +Downloaded DOI GB8M-HJPY +Downloaded DOI JHRK-ASTM +Downloaded DOI 6N7Z-BCCN +Downloaded DOI QZYJ-XJM5 +Downloaded DOI DW74-NMTG +Downloaded DOI GDPH-6FFF +Downloaded DOI VTK6-KHHM +Downloaded DOI QTAX-QGSS +Downloaded DOI UMHN-MKCF +Downloaded DOI XKPW-556C +No data found, error 404 +Downloaded DOI KHRB-F73J +Downloaded DOI 48PZ-PXZJ +Downloaded DOI CSYM-JF22 +No data found, error 404 +Downloaded DOI K8ZX-WENG +Downloaded DOI V8QX-UMHV +Downloaded DOI P43G-SQDD +Downloaded DOI XNN7-JD7M +Downloaded DOI 3T3A-GWRY +No data found, error 404 +Downloaded DOI BXS5-ETD5 +Downloaded DOI NUNJ-CKNT +Downloaded DOI RBTX-6AZY +Downloaded DOI BAET-SVAB +Downloaded DOI JKWM-FTZH +Downloaded DOI 3G6A-3DT7 +Downloaded DOI B37B-BA6N +Downloaded DOI G5EF-CWW8 +Downloaded DOI KQVP-CSDA +Downloaded DOI ZYUM-TDTY +Downloaded DOI ZQH4-Q4N7 +Downloaded DOI 5VQN-Q3KG +Downloaded DOI F2K8-C65D +Downloaded DOI H7F8-BHMB +Downloaded DOI 672N-NCHJ +Downloaded DOI SFDR-JS29 +No data found, error 404 +Downloaded DOI MU5C-36S9 +Downloaded DOI UHDM-FJFS +Downloaded DOI 8Q2Z-JB3K +Downloaded DOI 6ZN8-VTZD +Downloaded DOI AMB5-JR5C +No data found, error 404 +Downloaded DOI NG2F-HKT6 +Downloaded DOI 2FNG-67KE +Downloaded DOI 3WWM-K6RX +Downloaded DOI JSWQ-E4SZ +Downloaded DOI 6G9H-UYNE +Downloaded DOI TD5M-HBDE +Downloaded DOI 4KYA-VXXW +Downloaded DOI 8X4Z-EA34 +Downloaded DOI 6PJD-VQN6 +Downloaded DOI C6YS-WJS3 +Downloaded DOI UEWV-257U +Downloaded DOI 66FT-PQZX +Downloaded DOI SUR7-PVTB +Downloaded DOI 3YEH-98M4 +Downloaded DOI X3GG-D58P +Downloaded DOI 5JFF-JXCW +Downloaded DOI Z8FS-NBD3 +Downloaded DOI SYF9-FRPV +Downloaded DOI 43MP-9CXT +Downloaded DOI 3N3E-2JVG +Downloaded DOI 9Q64-6GEG +Downloaded DOI VVEN-R75W +Downloaded DOI DMKE-752A +Downloaded DOI CYK4-UU58 +Downloaded DOI JQNE-2H4V +Downloaded DOI 88XM-K38A +Downloaded DOI X7PP-NSSK +Downloaded DOI KPZY-MU2A +Downloaded DOI Z4F3-EFFS +Downloaded DOI TH6Q-Y9RR +Downloaded DOI FW2Z-JTG9 +Downloaded DOI FSCU-B5FE +No data found, error 404 +Downloaded DOI 99EW-ZMK7 +Downloaded DOI SFZ5-JQQH +Downloaded DOI EZTC-H4H8 +Downloaded DOI ZFXX-DVE5 +Downloaded DOI YTWJ-7MWG +Downloaded DOI M2D4-4KYT +Downloaded DOI B22N-H6YY +Downloaded DOI BM7N-Y5W6 +Downloaded DOI E6UY-KDCC +No data found, error 404 +Downloaded DOI JJUY-7FY3 +Downloaded DOI QTR8-RFKU +Downloaded DOI 3768-DS82 +Downloaded DOI ZBPX-ASMA +Downloaded DOI FZZ2-7RXH +Downloaded DOI 3Q8B-MMCT +Downloaded DOI AZ5W-P8PS +Downloaded DOI JBMB-AWE5 +No data found, error 404 +Downloaded DOI 3AN4-W732 +Downloaded DOI VPT3-WYMX +Downloaded DOI 3SEN-PT5K +Downloaded DOI 3WA3-FANU +Downloaded DOI V9A7-TYD8 +Downloaded DOI JM6X-MF86 +Downloaded DOI PPXB-WWJD +Downloaded DOI R4NN-FSXX +Downloaded DOI Q832-AYV8 +No data found, error 404 +Downloaded DOI C7VE-SJUX +Downloaded DOI VXJP-KMJU +Downloaded DOI YMYX-ZG4R +Downloaded DOI 43WF-KVXA +Downloaded DOI 98FX-NGEB +Downloaded DOI K8A9-KEJB +Downloaded DOI 5S97-2C44 +No data found, error 404 +Downloaded DOI JNRU-TUD3 +Downloaded DOI SN7G-VX6T +Downloaded DOI CREU-XYZY +Downloaded DOI UMCJ-TKVQ +Downloaded DOI Z5F8-N6QY +Downloaded DOI PWWA-BYPP +Downloaded DOI BEFT-SWJ4 +Downloaded DOI U4X5-HA7N +Downloaded DOI D6YD-NVWS +Downloaded DOI WE8V-QE5Q +Downloaded DOI W5UD-PKU6 +Downloaded DOI A47A-SQPU +Downloaded DOI U6QZ-3JHV +Downloaded DOI JCH9-EUCT +Downloaded DOI RWGT-XMZR +No data found, error 404 +Downloaded DOI P4TW-A8Z3 +Downloaded DOI PYKU-F5VZ +Downloaded DOI FT6S-HDBY +Downloaded DOI 2CU5-6K6Z +Downloaded DOI WVHP-WU69 +Downloaded DOI U9NW-GAXV +Downloaded DOI SDVG-R5YY +Downloaded DOI 6CFC-BNM8 +Downloaded DOI MTCJ-PMSX +Downloaded DOI 2D3J-3YWD +Downloaded DOI XTGT-Y5T2 +Downloaded DOI Q6P6-43W6 +Downloaded DOI DUHK-4ZJE +Downloaded DOI 4WW8-8HMD +Downloaded DOI 4DXD-WCGE +No data found, error 404 +Downloaded DOI NAB3-NDYE +Downloaded DOI H6H4-26A8 +Downloaded DOI BW5V-2F6X +Downloaded DOI 3VHF-TPFF +No data found, error 404 +Downloaded DOI SYUG-J4YD +Downloaded DOI 6BSC-4JKW +Downloaded DOI VRDM-NK5F +Downloaded DOI QUUV-6V24 +Downloaded DOI PH2Y-WGAE +Downloaded DOI RXJP-WA6P +Downloaded DOI P6Y6-PJN7 +Downloaded DOI 9A54-95C6 +Downloaded DOI QT8T-H6V9 +Downloaded DOI 72KS-5CKK +Downloaded DOI AQ2A-VQ53 +Downloaded DOI SG5Y-QWW7 +Downloaded DOI TU3C-8TE5 +Downloaded DOI RHE6-WREC +Downloaded DOI MYRS-PNVP +Downloaded DOI WGU6-VP4A +Downloaded DOI NMUV-YJKR +Downloaded DOI XUW9-PWFK +No data found, error 404 +Downloaded DOI 3M92-UY5R +Downloaded DOI FJM9-RXSE +Downloaded DOI VC4R-NMAN +Downloaded DOI 7HBC-6F6E +No data found, error 404 +Downloaded DOI AZMJ-JVU6 +Downloaded DOI 2RAC-PX2R +Downloaded DOI E68G-DUMQ +Downloaded DOI 4ZNQ-KK4W +Downloaded DOI 3VUK-QGPQ +Downloaded DOI 69W4-ZFCF +No data found, error 404 +Downloaded DOI 47P9-6P42 +Downloaded DOI F359-MB8Y +Downloaded DOI YK8U-E2M7 +Downloaded DOI JMCE-YSNJ +Downloaded DOI UGTT-WP35 +Downloaded DOI NUYT-ZQS3 +No data found, error 404 +Downloaded DOI A2D7-PURW +Downloaded DOI SCHN-RBJ6 +Downloaded DOI YP4S-SE8A +Downloaded DOI HBZE-G7ZE +Downloaded DOI K9UP-N2WG +Downloaded DOI GJSM-MF8J +Downloaded DOI V2K7-6UM2 +Downloaded DOI 9XR4-T7Y3 +Downloaded DOI NBNS-F3KE +Downloaded DOI C4WG-SDZJ +Downloaded DOI QU3W-HNQS +Downloaded DOI RSWJ-TYFD +Downloaded DOI 4KEY-TWBM +Downloaded DOI ZYM2-PUXC +Downloaded DOI S7HR-F8FA +Downloaded DOI NBQ9-752B +Downloaded DOI 5E7W-E8YY +Downloaded DOI 7YEF-HSW8 +Downloaded DOI A5SR-BV7E +Downloaded DOI RZTX-UVN3 +Downloaded DOI 4UVA-2EEP +No data found, error 404 +Downloaded DOI MXZA-KVEH +Downloaded DOI P9ZG-SYSY +Downloaded DOI U6QE-SV2B +Downloaded DOI 6V5Q-PT2S +Downloaded DOI 3HG4-2QSX +Downloaded DOI A5KR-SF29 +Downloaded DOI QVNU-UUN4 +Downloaded DOI FACY-V2UZ +Downloaded DOI JYV6-2XMV +Downloaded DOI 7BA2-FHTY +Downloaded DOI HRY9-4MVW +Downloaded DOI ZS89-QA2J +Downloaded DOI B2CT-MHNM +Downloaded DOI BMJU-JZ5H +Downloaded DOI YUFK-9PJ5 +Downloaded DOI CT5Y-55JG +Downloaded DOI F3UY-3PEH +Downloaded DOI R8UJ-J77U +Downloaded DOI 84EB-H89Y +Downloaded DOI 6HYQ-E5DM +Downloaded DOI CTTA-8UVP +Downloaded DOI PJPN-CU3G +Downloaded DOI UABM-352Y +Downloaded DOI FJQ8-QN8Y +Downloaded DOI CYKE-95T6 +Downloaded DOI GMEP-CK8Q +Downloaded DOI QUS3-R9KW +Downloaded DOI P8VM-MQVA +Downloaded DOI EPXP-R3SR +Downloaded DOI XRWV-V3DR +Downloaded DOI GPSJ-7N9X +Downloaded DOI FM2S-E5GJ +Downloaded DOI 52GX-V49J +Downloaded DOI GW8Q-SJ8T +Downloaded DOI MADT-G732 +Downloaded DOI MZK2-UJZD +Downloaded DOI MPET-B2BU +Downloaded DOI 84XT-R8SP +Downloaded DOI VV26-DRAH +Downloaded DOI DSYW-EW7B +Downloaded DOI 56CH-RB5Y +Downloaded DOI D2KE-R5DF +Downloaded DOI 7KER-X4P4 +Downloaded DOI E667-KH9N +Downloaded DOI FYFR-MDAQ +Downloaded DOI HQ2N-6XTZ +No data found, error 404 +Downloaded DOI MPPH-SKYY +Downloaded DOI RWDW-S8TE +Downloaded DOI R2JF-WSCX +No data found, error 404 +Downloaded DOI FZDK-PBTN +Downloaded DOI RA39-A3SB +Downloaded DOI PJSQ-X94N +Downloaded DOI NEV6-UHY8 +Downloaded DOI NX8M-ZYXY +Downloaded DOI ZEG2-3TWU +Downloaded DOI H2CK-H6S4 +Downloaded DOI CKQV-4952 +Downloaded DOI MN28-J45U +Downloaded DOI E45Y-TQ5E +Downloaded DOI WNW2-EYSJ +Downloaded DOI NWYX-SY2F +Downloaded DOI WRQY-QWMD +Downloaded DOI FTVX-68HH +Downloaded DOI SB65-V2HD +Downloaded DOI RD36-UMXP +Downloaded DOI K3TW-TF8A +Downloaded DOI SNAQ-CWKD +No data found, error 404 +Downloaded DOI 4F6S-ZJAG +Downloaded DOI J9MS-MWX5 +Downloaded DOI JPZR-BNK9 +Downloaded DOI UF6W-8SBJ +Downloaded DOI 7GS6-38V5 +Downloaded DOI 3NYN-KMWU +Downloaded DOI BV8S-KURX +Downloaded DOI JAY9-QEC4 +Downloaded DOI KWS5-BCWC +Downloaded DOI Y7SF-AV5B +Downloaded DOI YZB9-VQVJ +Downloaded DOI WTWF-3PY9 +Downloaded DOI YJ3R-ME2E +Downloaded DOI ER3S-MGG7 +Downloaded DOI KYS9-V28U +Downloaded DOI EZQ2-7E9J +No data found, error 404 +Downloaded DOI ZHV9-WGMS +Downloaded DOI GC6N-Q6EV +Downloaded DOI Z5QF-RV2F +Downloaded DOI 3W27-SMH5 +Downloaded DOI QNWB-KMSB +Downloaded DOI 6GRU-VQBT +Downloaded DOI TJJ3-RX2D +Downloaded DOI FX4A-64BM +Downloaded DOI 5YBR-R7ZH +Downloaded DOI DDKV-SJ3U +Downloaded DOI ZKHH-E9CY +Downloaded DOI AGRQ-4XX3 +Downloaded DOI HVMG-HB9J +Downloaded DOI 4NCU-TJTS +No data found, error 404 +Downloaded DOI ZJGD-KHBC +No data found, error 404 +Downloaded DOI R3CU-ZAS3 +Downloaded DOI C9FJ-VEDC +Downloaded DOI UKFT-V5ZB +Downloaded DOI HEZW-44P6 +No data found, error 404 +Downloaded DOI GBDF-XBB2 +Downloaded DOI 4TUP-5JNE +Downloaded DOI VJSF-J8N5 +Downloaded DOI GV2X-DAKD +Downloaded DOI 33ZY-VZWJ +Downloaded DOI F4RU-JC5C +Downloaded DOI QVT4-VN6Z +Downloaded DOI YB4W-TEXC +Downloaded DOI TR29-S2S4 +Downloaded DOI SPTD-HG9M +Downloaded DOI ENKH-8J43 +Downloaded DOI QB9J-GYDY +Downloaded DOI NWHQ-9W5Q +Downloaded DOI C59H-U5YC +Downloaded DOI REMM-NG7C +Downloaded DOI 725B-AG3T +Downloaded DOI K338-GG68 +Downloaded DOI XZBY-Q7KN +Downloaded DOI R3VY-BCKA +Downloaded DOI NDG3-JD82 +Downloaded DOI ZEB2-SQ4A +Downloaded DOI SX6V-6EAP +Downloaded DOI 4WVZ-3U62 +Downloaded DOI FWK7-XMKA +Downloaded DOI DA4J-3AFZ +Downloaded DOI VA8T-9U92 +Downloaded DOI E9RQ-XPF4 +Downloaded DOI VBXT-7NJG +Downloaded DOI 29ZS-FEN4 +Downloaded DOI 3C84-49Z5 +Downloaded DOI R4XX-U2YA +Downloaded DOI 3XQH-YTY4 +Downloaded DOI 54GS-H2UA +Downloaded DOI XU6K-EMU3 +Downloaded DOI 4RAS-7AM8 +Downloaded DOI 92R2-RSPJ +Downloaded DOI GVUG-CA3A +Downloaded DOI VGU9-QWQP +Downloaded DOI Y4QE-QGTT +Downloaded DOI Z7H5-X82R +Downloaded DOI KJY6-7B8P +Downloaded DOI HJHG-866M +No data found, error 404 +Downloaded DOI VGAU-4HV9 +Downloaded DOI 63Q8-VPZ9 +No data found, error 404 +Downloaded DOI CMA2-48TS +Downloaded DOI HDPP-5F6N +Downloaded DOI KM49-WR9A +Downloaded DOI 2Z7M-CBNN +Downloaded DOI QSZJ-A7EK +Downloaded DOI 2KT5-Y553 +Downloaded DOI Y9UK-F879 +Downloaded DOI YRCB-PGHS +Downloaded DOI XDYF-5BEJ +Downloaded DOI NRS5-9Y2U +Downloaded DOI HGPX-V2XY +Downloaded DOI EMTM-JFU9 +Downloaded DOI EVAU-SCPY +Downloaded DOI QX6H-CKPM +Downloaded DOI PJET-2ZNF +Downloaded DOI RSJJ-NDBZ +Downloaded DOI 5NM4-G3X7 +Downloaded DOI FW3Y-2F48 +Downloaded DOI VSZJ-KV9W +Downloaded DOI DZ6P-9594 +Downloaded DOI 7BDM-QAYJ +Downloaded DOI 3V3E-4WN3 +Downloaded DOI HF7G-MAQB +Downloaded DOI YBFV-2WS5 +Downloaded DOI R3AA-YAN7 +Downloaded DOI 5RU6-HBQG +Downloaded DOI ZF92-EAWH +Downloaded DOI 464Y-C3TJ +No data found, error 404 +Downloaded DOI TUZF-GP93 +Downloaded DOI M72E-U77Q +Downloaded DOI 3J4D-F9D7 +Downloaded DOI ZK86-JQH9 +Downloaded DOI UEZX-XEKA +Downloaded DOI B36N-22DR +Downloaded DOI P9VU-5RD7 +Downloaded DOI D5D5-6X6A +Downloaded DOI E32K-7UXN +Downloaded DOI YQMR-4FBB +Downloaded DOI G3WQ-TQAJ +Downloaded DOI RVWM-PQBU +Downloaded DOI AS5A-U49M +Downloaded DOI QZSY-HP2K +Downloaded DOI 8Q2R-TUP8 +Downloaded DOI 259V-M5XU +Downloaded DOI Q4CE-SM4X +Downloaded DOI 8HV6-XA7R +Downloaded DOI QZSS-MKF8 +Downloaded DOI MTYV-TNUT +Downloaded DOI PNG9-4MVA +Downloaded DOI M86Q-8QH3 +No data found, error 404 +Downloaded DOI JD72-EHVF +Downloaded DOI NNJV-2G4X +Downloaded DOI MVB4-V3Q8 +Downloaded DOI C8QU-43KR +No data found, error 404 +Downloaded DOI WQEA-MZ6Q +Downloaded DOI 8TZR-NR6H +Downloaded DOI WN3G-8KFD +No data found, error 404 +Downloaded DOI CE8B-ACF8 +Downloaded DOI W9R9-FCGT +Downloaded DOI WDMD-9JCQ +Downloaded DOI 656K-HG78 +Downloaded DOI XC48-ZPM2 +Downloaded DOI CJNE-P8NH +Downloaded DOI AACN-FQWJ +Downloaded DOI UPX3-VZS9 +Downloaded DOI RDYZ-JHN8 +Downloaded DOI VGX7-J4Y9 +Downloaded DOI N5XS-K2TD +No data found, error 404 +Downloaded DOI 8734-YF36 +Downloaded DOI XNS8-2TV9 +No data found, error 404 +Downloaded DOI DZPU-EHTY +Downloaded DOI JM47-GTP9 +Downloaded DOI BTYF-8JDX +Downloaded DOI G8HP-CYSC +Downloaded DOI P9PG-RPGF +No data found, error 404 +Downloaded DOI 5BSZ-QTSD +No data found, error 404 +No data found, error 404 +Downloaded DOI JKPX-2FHA +Downloaded DOI P55X-3Y2M +Downloaded DOI 69XC-A5W5 +Downloaded DOI 5G8W-AENB +Downloaded DOI XK3R-R2DT +Downloaded DOI BZY6-2J46 +Downloaded DOI PBVY-FUDD +Downloaded DOI AWV5-F5G7 +Downloaded DOI 7E58-T5DF +Downloaded DOI 3YTT-XEBB +Downloaded DOI HFZ5-MRC3 +Downloaded DOI V96A-YKXX +Downloaded DOI 79YA-Q2HR +Downloaded DOI UW7X-WAPM +No data found, error 404 +No data found, error 404 +Downloaded DOI N2QW-HNJS +Downloaded DOI WCQH-9MPM +Downloaded DOI AM8H-R7YT +Downloaded DOI XFQE-2NE9 +Downloaded DOI KEQK-DE4N +Downloaded DOI GYYM-5YD8 +Downloaded DOI YURY-28VB +Downloaded DOI 773M-S4ZC +Downloaded DOI 6MAF-KRSU +Downloaded DOI KDW6-FXNN +Downloaded DOI 8FXU-MKFF +Downloaded DOI 8RKA-CGQ2 +Downloaded DOI JJ6R-NWTC +Downloaded DOI ZV9T-37WF +Downloaded DOI MJYV-ASNQ +Downloaded DOI Y6KD-BZGM +Downloaded DOI VN3U-CB9K +Downloaded DOI 3EHQ-EUSA +Downloaded DOI 6WCW-MZRW +Downloaded DOI 764Z-8HGN +Downloaded DOI 2Y74-MP2Q +Downloaded DOI 4CVW-DABX +Downloaded DOI JCT4-Z7B8 +Downloaded DOI F633-UBWH +Downloaded DOI FW7Z-T5UZ +Downloaded DOI KS9E-PSHJ +Downloaded DOI EXP9-BSEC +Downloaded DOI V7XV-WH35 +Downloaded DOI ZCKZ-49Y4 +Downloaded DOI Q8XH-AEST +Downloaded DOI S5E2-P96W +No data found, error 404 +Downloaded DOI SWJ8-F295 +Downloaded DOI UEB8-XKV9 +Downloaded DOI T3DW-C4CQ +Downloaded DOI T2YT-2YGB +Downloaded DOI A4DA-9B6U +Downloaded DOI ZZ88-VQXF +Downloaded DOI 54HJ-UUWF +Downloaded DOI NR3R-5U4H +Downloaded DOI PYA8-4GD4 +Downloaded DOI F8XA-85GN +Downloaded DOI WZKC-MNRF +Downloaded DOI 2YN8-KM7G +No data found, error 404 +Downloaded DOI AKYM-VUTN +Downloaded DOI TQBT-3WGJ +Downloaded DOI 4GAH-JM9N +Downloaded DOI E2AN-MPCC +Downloaded DOI A953-BQR7 +Downloaded DOI VD46-J7U7 +Downloaded DOI X2FM-363J +Downloaded DOI 62QT-A6C5 +Downloaded DOI RNNG-3JZ4 +Downloaded DOI 28EZ-NDBV +Downloaded DOI ZE82-J84H +Downloaded DOI 6Z2R-DEZP +No data found, error 404 +Downloaded DOI UTMV-PGGQ +Downloaded DOI 2TBK-TZDB +Downloaded DOI EJ4R-YUVC +Downloaded DOI 55N6-BMGW +Downloaded DOI Q5EW-FGH9 +Downloaded DOI HKDP-BBXH +Downloaded DOI AAP4-JGB3 +Downloaded DOI 8Y7Q-76KB +Downloaded DOI 39K6-E9C3 +Downloaded DOI QPDZ-EG6S +Downloaded DOI AAAH-ASNV +No data found, error 404 +No data found, error 404 +Downloaded DOI 4XN9-RDZU +Downloaded DOI FNN8-T9NJ +Downloaded DOI 72ZF-G7ER +Downloaded DOI F7N6-89NE +Downloaded DOI MK73-KZHF +Downloaded DOI YHXN-39MF +Downloaded DOI BMRE-8X5X +Downloaded DOI F82S-6N7D +Downloaded DOI Q3BW-GTAR +Downloaded DOI KY5T-FUCY +Downloaded DOI X6A6-DKQN +Downloaded DOI 6GYH-6C43 +Downloaded DOI VVSP-AXYY +Downloaded DOI X6HQ-ATMZ +Downloaded DOI Y2K4-6JHV +Downloaded DOI VJU9-SP2K +Downloaded DOI JNNV-JKQC +No data found, error 404 +Downloaded DOI ZBPJ-B966 +Downloaded DOI JSTN-YB38 +Downloaded DOI WJFV-MMVJ +Downloaded DOI 4UAS-7AQM +No data found, error 404 +No data found, error 404 +Downloaded DOI 8FXW-8CKQ +Downloaded DOI JKD3-TNDM +Downloaded DOI 73Z7-ZAXD +Downloaded DOI YN5P-BTJY +Downloaded DOI VE74-JTZ7 +Downloaded DOI CAY7-53NC +Downloaded DOI ZH27-Y6BJ +Downloaded DOI WU2K-YDQN +Downloaded DOI 72X8-GH7R +Downloaded DOI 2CEE-84YV +Downloaded DOI A3QU-KF3B +No data found, error 404 +Downloaded DOI RT95-38DJ +Downloaded DOI 8K6D-BCBM +Downloaded DOI TTS4-P9HV +Downloaded DOI M9XH-65GH +No data found, error 404 +No data found, error 404 +Downloaded DOI SJM9-M38F +Downloaded DOI NFAQ-YFQ3 +Downloaded DOI K7UG-XXRJ +Downloaded DOI D9MQ-U8XY +Downloaded DOI 6797-KQYV +Downloaded DOI 5U5P-KDTY +Downloaded DOI A4XC-YTJ5 +Downloaded DOI 4D83-RKB4 +Downloaded DOI 39MW-XHRZ +Downloaded DOI PTGT-FVXM +Downloaded DOI M937-9WZM +Downloaded DOI QF7N-H27M +Downloaded DOI 3C3U-52XG +Downloaded DOI D7CM-SUJM +Downloaded DOI CVDD-SBB7 +Downloaded DOI YTYY-RMEV +Downloaded DOI HAB8-CZNZ +Downloaded DOI Y5F5-B3S4 +Downloaded DOI F5KM-V99S +Downloaded DOI EKPU-8BDJ +Downloaded DOI 8P9U-3J4F +Downloaded DOI DXR5-V3AA +Downloaded DOI YK32-B8GY +Downloaded DOI EBC5-BVUH +No data found, error 404 +Downloaded DOI M7HY-UB78 +Downloaded DOI DTSK-G3SD +Downloaded DOI V845-2CTJ +Downloaded DOI VZH9-JE6R +Downloaded DOI XX9S-PK2D +Downloaded DOI 3ESG-5DVB +Downloaded DOI AHQ3-PYNK +Downloaded DOI KHC3-8ERH +Downloaded DOI 72D5-KSP9 +Downloaded DOI GBYD-7K59 +Downloaded DOI BMHB-NND8 +Downloaded DOI GHPX-KUX6 +Downloaded DOI XD56-QJJ8 +Downloaded DOI 4HNP-DQWC +Downloaded DOI 64J4-CFJ6 +Downloaded DOI RRSX-5JVT +Downloaded DOI 5EJX-F6S3 +Downloaded DOI 93M6-7BZB +Downloaded DOI 32UW-8T87 +No data found, error 404 +Downloaded DOI 9HX4-A8XJ +Downloaded DOI 7QCC-W6A2 +Downloaded DOI 8EBD-XHSU +No data found, error 404 +Downloaded DOI C7JD-CV5C +Downloaded DOI 6PUM-NBAD +Downloaded DOI ZGNX-JPVY +Downloaded DOI SYF2-5CGH +Downloaded DOI Q3UU-RZJ6 +Downloaded DOI 9D3Z-95E6 +Downloaded DOI 6REY-WP3B +Downloaded DOI ZV3C-VEGY +Downloaded DOI P9K9-S5QA +Downloaded DOI BNNR-TFB8 +Downloaded DOI BT5V-CZ7N +Downloaded DOI YWNN-4RKS +No data found, error 404 +Downloaded DOI 8NYU-WHZQ +Downloaded DOI 3W5W-25RD +Downloaded DOI C46Q-9QEC +Downloaded DOI GS5F-8J7Y +Downloaded DOI RPMS-2G7Z +Downloaded DOI FPET-WFKS +Downloaded DOI H8JA-F8GU +Downloaded DOI 4W44-Y4GJ +No data found, error 404 +Downloaded DOI GZVY-QZG3 +Downloaded DOI YYDY-2VR6 +Downloaded DOI 6WW4-7RSV +Downloaded DOI NM89-4EHY +Downloaded DOI W9ST-X8HM +Downloaded DOI B92A-6B5V +No data found, error 404 +Downloaded DOI 4Z43-D4D3 +Downloaded DOI PFMY-6M7C +Downloaded DOI JSZX-7F5Y +No data found, error 404 +Downloaded DOI HQMX-24SS +Downloaded DOI AQB7-HWCH +Downloaded DOI 9WFE-JVQ6 +Downloaded DOI 39YT-SJ8G +Downloaded DOI RBQC-4KEC +Downloaded DOI XA3E-QVFH +Downloaded DOI CQM2-QGPN +Downloaded DOI 3S6A-Z5P4 +Downloaded DOI EHV6-M85C +Downloaded DOI 337E-ANVE +Downloaded DOI ANGX-BNGV +Downloaded DOI 7KPE-C9DZ +Downloaded DOI N7KJ-AVUT +Downloaded DOI KGTF-4XUJ +No data found, error 404 +Downloaded DOI BB4E-Z6UK +Downloaded DOI 7344-A97N +Downloaded DOI S44A-NYFN +Downloaded DOI X5RY-MYHM +Downloaded DOI Q8C7-6EDR +Downloaded DOI UM8J-K9GZ +Downloaded DOI 6U8T-SW9P +Downloaded DOI X8WZ-9Q6P +Downloaded DOI 2T8N-43EX +Downloaded DOI PJSM-DP43 +Downloaded DOI QAD9-28FH +Downloaded DOI 6S2D-UEMZ +Downloaded DOI FZHV-68JK +Downloaded DOI 7XDZ-XKK9 +Downloaded DOI JXXT-J8Q9 +Downloaded DOI N8Y7-GW7V +Downloaded DOI 7XNV-HH64 +Downloaded DOI WAN7-5EVV +Downloaded DOI 3RAY-NEXX +Downloaded DOI 7ETD-8X35 +Downloaded DOI B4TK-QH23 +Downloaded DOI 75WB-44N4 +Downloaded DOI QS9D-35UC +Downloaded DOI WWNP-GUJF +Downloaded DOI NN7C-HBKH +Downloaded DOI TEQV-MXN3 +Downloaded DOI GKAB-5SAU +Downloaded DOI DZ9S-MY9C +Downloaded DOI RC2V-MQ93 +Downloaded DOI RQ8R-F2M4 +Downloaded DOI FJWX-88GT +Downloaded DOI E5PN-4RGU +Downloaded DOI VBEN-WEPN +Downloaded DOI CP4C-RFRZ +Downloaded DOI SB8E-4JSC +Downloaded DOI 4VTR-ECFA +Downloaded DOI 79A3-M4QP +Downloaded DOI RZ7E-4XAZ +Downloaded DOI WSWE-ZN75 +Downloaded DOI TKWX-YKN8 +Downloaded DOI B8T6-7RPZ +No data found, error 404 +Downloaded DOI VCQK-26VD +Downloaded DOI WRW5-BS4S +Downloaded DOI KTC7-U32M +Downloaded DOI 38BV-HZQH +Downloaded DOI NJJS-FQW9 +Downloaded DOI 9RY8-48GZ +Downloaded DOI PAZS-FCMM +Downloaded DOI FNVY-B2Y6 +Downloaded DOI XWK6-A3A4 +Downloaded DOI 7RE8-8845 +Downloaded DOI HQ9K-V2X6 +Downloaded DOI PHAC-72CU +Downloaded DOI EVBT-MBXW +Downloaded DOI V6KE-UPQD +Downloaded DOI KP46-Y4GJ +Downloaded DOI Y5VY-MDXF +Downloaded DOI KBDE-WCJB +Downloaded DOI SCXF-69RE +No data found, error 404 +Downloaded DOI ZFTC-V352 +No data found, error 404 +Downloaded DOI RFX3-4CKK +Downloaded DOI R7Q6-AYNY +Downloaded DOI NNNP-7MGD +Downloaded DOI QMD3-6TJV +Downloaded DOI Z93K-WUTE +Downloaded DOI ZBCB-VJZE +Downloaded DOI KEB7-KMF8 +No data found, error 404 +No data found, error 404 +Downloaded DOI EHMF-NTF3 +Downloaded DOI 4BFT-SQQ6 +Downloaded DOI 3GPF-SEJR +Downloaded DOI SUHW-7F8W +Downloaded DOI HQNX-3FNS +Downloaded DOI BVM7-QBYD +Downloaded DOI KUYW-84SP +Downloaded DOI TN7C-GPPT +Downloaded DOI VWYV-TBQ9 +Downloaded DOI KGGY-4DZA +Downloaded DOI Q3CT-D65A +Downloaded DOI KYR7-C4AC +Downloaded DOI F6BH-GQUV +Downloaded DOI KQ6R-EV8Y +Downloaded DOI 34T3-YKJ8 +Downloaded DOI BNXS-VYDA +Downloaded DOI BSFA-XMKX +Downloaded DOI 2XSJ-FFC2 +Downloaded DOI 34QW-P7CZ +Downloaded DOI A9AM-AQCK +Downloaded DOI FYMY-GGN3 +Downloaded DOI AUYG-45V7 +Downloaded DOI YZM4-EAHA +Downloaded DOI USW7-45ND +Downloaded DOI HFF3-J7AJ +Downloaded DOI NTBE-CRJD +Downloaded DOI ZJYN-4A7B +Downloaded DOI YMRM-44YC +Downloaded DOI X3P9-TFQ3 +No data found, error 404 +No data found, error 404 +Downloaded DOI F64H-JQVR +Downloaded DOI MH75-K5Q2 +No data found, error 404 +Downloaded DOI U9YR-W48U +Downloaded DOI KRWP-47QR +Downloaded DOI PB37-RBVG +No data found, error 404 +Downloaded DOI GFQ2-MEMR +Downloaded DOI B6UC-VQGT +Downloaded DOI 8K69-V8AC +Downloaded DOI E8T8-CA3G +No data found, error 404 +No data found, error 404 +Downloaded DOI 8PV6-WX97 +Downloaded DOI A8M5-5K6M +Downloaded DOI AWBN-GV54 +Downloaded DOI ZFS2-QH36 +Downloaded DOI UD67-NKPE +Downloaded DOI S389-JQAJ +Downloaded DOI MFBU-C4MP +Downloaded DOI QBG3-2HK5 +No data found, error 404 +Downloaded DOI 49A3-ZDQU +Downloaded DOI 3UFX-WN9J +Downloaded DOI QUPM-JJCW +Downloaded DOI QJTA-286H +Downloaded DOI 35YJ-AHJ3 +Downloaded DOI YVE9-TA68 +No data found, error 404 +Downloaded DOI Z697-N576 +Downloaded DOI QRU5-V5AB +Downloaded DOI 2DW3-ZFCM +Downloaded DOI TPAJ-7DMC +Downloaded DOI S2RK-3H5Q +Downloaded DOI VYJB-TZ6V +Downloaded DOI MFXD-BSKW +Downloaded DOI 8XAJ-CYE9 +Downloaded DOI BMYT-K93K +Downloaded DOI MRFM-WVDN +Downloaded DOI X2F5-SNQW +Downloaded DOI TCSD-BGX5 +Downloaded DOI VCRD-73GB +Downloaded DOI QGPE-UHAD +Downloaded DOI SNTJ-G864 +Downloaded DOI C6N7-8FT3 +Downloaded DOI Z22A-CY3X +Downloaded DOI VX67-PCSJ +Downloaded DOI ASAC-NDWA +Downloaded DOI 6BMP-PJRF +Downloaded DOI QJMR-NKY6 +No data found, error 404 +Downloaded DOI SUUK-JF8M +Downloaded DOI 23F2-Q6G3 +Downloaded DOI USGF-3SAA +Downloaded DOI DFH3-7R4K +Downloaded DOI NUA6-3BDY +Downloaded DOI AW5Q-X9G3 +Downloaded DOI NESH-NDJ7 +Downloaded DOI 72QH-ZV2T +Downloaded DOI 8Y6S-WNCE +Downloaded DOI 8KYS-ZZ5Z +Downloaded DOI WP3B-SHEB +Downloaded DOI 5WVX-24FW +Downloaded DOI 4BUG-EY9J +Downloaded DOI 784A-UYMT +Downloaded DOI 7QWN-FETA +Downloaded DOI SYEU-RR7D +Downloaded DOI WJA6-W345 +Downloaded DOI XC59-JKXR +Downloaded DOI MPSZ-ATZR +Downloaded DOI FGEF-4SAZ +Downloaded DOI PFKP-JJWC +Downloaded DOI FNA7-4ZHG +Downloaded DOI J4FP-R3EA +Downloaded DOI YYBT-BM2E +Downloaded DOI M53D-94XB +Downloaded DOI 2K86-PEUV +No data found, error 404 +Downloaded DOI 395M-N9PH +Downloaded DOI CZMA-PZY4 +Downloaded DOI 69R2-QD9H +Downloaded DOI ZJ4J-SQQM +Downloaded DOI YH2A-V9H7 +Downloaded DOI 4JS5-QY26 +Downloaded DOI YUZ5-PNDG +Downloaded DOI DUSG-S43V +Downloaded DOI XZ9X-E4W8 +Downloaded DOI RFQ4-6EVZ +Downloaded DOI RM6P-GQFF +Downloaded DOI A8ZB-4DF9 +Downloaded DOI FWPZ-DY5V +Downloaded DOI YR6B-A3R6 +Downloaded DOI ZZGR-PQMR +Downloaded DOI G99D-7C9T +Downloaded DOI 5UCN-RJYW +Downloaded DOI HQ8U-ZJQC +Downloaded DOI XHA3-SS4S +Downloaded DOI RM38-556M +Downloaded DOI 2AB5-ED7Z +Downloaded DOI PKNV-SJUJ +Downloaded DOI 3CXP-P3CX +Downloaded DOI A3P6-4UWS +Downloaded DOI 4YZV-VJG8 +Downloaded DOI 4ET4-6G9X +Downloaded DOI Z4UU-J67G +Downloaded DOI 6ZUH-59WY +Downloaded DOI CB3G-2H56 +Downloaded DOI PHQ2-4QQK +No data found, error 404 +Downloaded DOI YQBF-89U8 +Downloaded DOI 9YF3-3CG2 +Downloaded DOI 82AD-Z2VC +Downloaded DOI AY48-PUC5 +Downloaded DOI 7NND-RDCT +Downloaded DOI 6CKH-QJ4E +No data found, error 404 +Downloaded DOI 37R2-JDE8 +Downloaded DOI HFG5-72VH +Downloaded DOI VT2H-5U26 +Downloaded DOI B9TJ-U97Y +Downloaded DOI MCWR-TF8T +Downloaded DOI P456-XX2Y +Downloaded DOI ZM7D-62HK +Downloaded DOI 9H5A-X6HC +Downloaded DOI P43T-3WNG +Downloaded DOI 9T4X-9XZ9 +Downloaded DOI 5KYH-7AVX +Downloaded DOI HZXC-8D7Q +Downloaded DOI SDTM-YDQ2 +Downloaded DOI MP5B-TM88 +Downloaded DOI SWXT-UWKK +No data found, error 404 +Downloaded DOI DMNH-AGZS +Downloaded DOI D6CP-5QCG +Downloaded DOI 6SGM-KXGA +Downloaded DOI SBY5-CVG6 +Downloaded DOI SCKS-4JMQ +Downloaded DOI EC56-HY6A +Downloaded DOI CU6Q-6XD5 +Downloaded DOI XDBR-FQ3W +Downloaded DOI FBHF-ZYRJ +Downloaded DOI 7GJM-PBV6 +Downloaded DOI VX2A-JV5G +Downloaded DOI YWVV-NQ4N +Downloaded DOI KBQT-STN5 +Downloaded DOI EF8W-P47G +Downloaded DOI 6SH4-6FEU +Downloaded DOI REDU-8K2H +Downloaded DOI BAY9-2PXJ +Downloaded DOI 6ZTY-VH3Y +No data found, error 404 +Downloaded DOI JBNR-Z8VJ +Downloaded DOI NEPQ-ZM6B +Downloaded DOI 4BWS-3RCJ +Downloaded DOI KJBC-H59D +Downloaded DOI K84H-HAA7 +Downloaded DOI VP6N-QCYC +Downloaded DOI 56FA-Q45P +No data found, error 404 +Downloaded DOI 46GB-SX8F +Downloaded DOI 4TRV-X9JR +Downloaded DOI Y3FG-DFZE +Downloaded DOI QQ38-XP7C +Downloaded DOI KWK8-CGTS +Downloaded DOI H27M-XYY3 +Downloaded DOI TVAQ-YP3H +Downloaded DOI A2Z2-76HA +No data found, error 404 +Downloaded DOI YBVP-XX28 +Downloaded DOI JT3X-RTPA +Downloaded DOI QJYK-E88Z +Downloaded DOI XWK8-XZDU +No data found, error 404 +Downloaded DOI 5HMR-WRFQ +Downloaded DOI ZAC2-JT63 +Downloaded DOI WYDM-5NC3 +Downloaded DOI BAJG-QBWD +Downloaded DOI BZ4U-WY5G +No data found, error 404 +Downloaded DOI BD2P-F89J +Downloaded DOI HRGA-X7U3 +Downloaded DOI 3YAF-RYEA +Downloaded DOI 73FE-EWSM +Downloaded DOI G963-KHMY +Downloaded DOI W4P4-BHQC +Downloaded DOI SR2R-KFSK +Downloaded DOI MTSV-FZ4K +Downloaded DOI FWCM-VWJ4 +No data found, error 404 +Downloaded DOI GFHM-GQFV +Downloaded DOI 8WHH-BXQF +Downloaded DOI 9ZHU-P6Z3 +Downloaded DOI FUV5-CC4C +Downloaded DOI 5F86-CVHA +Downloaded DOI P7QX-KNA7 +Downloaded DOI YW4U-DKHJ +Downloaded DOI EAYJ-AK5P +Downloaded DOI 5NSB-GG8K +Downloaded DOI CKBA-D29N +Downloaded DOI DJB3-C493 +Downloaded DOI 6DUA-DUWF +Downloaded DOI 4RKV-TCBB +Downloaded DOI EPE2-93KM +Downloaded DOI KC4R-8B92 +Downloaded DOI N997-TWR5 +Downloaded DOI 4SDR-74Z5 +Downloaded DOI YSK8-V95X +Downloaded DOI 3HRA-BV6X +Downloaded DOI 73KB-9DJH +Downloaded DOI JBR4-Y8XR +Downloaded DOI KJ5E-832P +Downloaded DOI G37K-SB98 +Downloaded DOI 9CB3-JKSH +Downloaded DOI 75KC-5QSV +Downloaded DOI URN7-8FHZ +Downloaded DOI HKRH-ZBHN +Downloaded DOI RHXP-ZX7V +Downloaded DOI G8DZ-7CKZ +Downloaded DOI ZCUX-JRUX +Downloaded DOI BW3D-5NGE +Downloaded DOI ZDFH-FC9J +Downloaded DOI YSSA-8VR5 +Downloaded DOI XZ2X-6MCR +Downloaded DOI BX79-CFN3 +Downloaded DOI TFNA-RQ38 +Downloaded DOI 2F2T-9RKH +Downloaded DOI Z3R2-PCN2 +Downloaded DOI PAXM-TM3N +Downloaded DOI QQ5P-8CZW +Downloaded DOI JMXU-DMTG +Downloaded DOI DDT5-XZGS +No data found, error 404 +Downloaded DOI 7CZG-22T9 +Downloaded DOI B4F5-S264 +Downloaded DOI 7RGU-9KMN +Downloaded DOI 6AJM-8HC6 +Downloaded DOI YH7Z-QBHH +No data found, error 404 +Downloaded DOI BE9B-GNWR +Downloaded DOI PS9Q-XGDS +Downloaded DOI S58R-QCNN +Downloaded DOI 5V5Z-A7YB +Downloaded DOI ND9P-YY6R +Downloaded DOI VC4P-M5G6 +No data found, error 404 +Downloaded DOI CVBC-HG3Z +Downloaded DOI 8C5B-PGQU +Downloaded DOI N5JG-XJ7E +No data found, error 404 +No data found, error 404 +Downloaded DOI CQSH-3A9M +Downloaded DOI JZUW-7ZYV +Downloaded DOI H6NS-HDT3 +Downloaded DOI 92MR-ZGJT +Downloaded DOI 7MQX-B7SU +Downloaded DOI SCDJ-N2Z8 +Downloaded DOI TFK4-YR72 +Downloaded DOI 7MAP-HTZW +Downloaded DOI AY9D-CMYD +Downloaded DOI 8AR2-ZTMK +Downloaded DOI 9P98-NU44 +Downloaded DOI 4CA5-4HTW +Downloaded DOI HTGG-QK3Z +Downloaded DOI JENQ-PKN9 +Downloaded DOI 2V92-8WSB +Downloaded DOI 4K4U-PYWJ +Downloaded DOI FY3M-HA7F +Downloaded DOI 7MGC-FKT7 +Downloaded DOI UCUE-UQ9U +Downloaded DOI J5YP-B8N7 +Downloaded DOI 4AXJ-JCTK +Downloaded DOI P4JE-MWF6 +No data found, error 404 +Downloaded DOI EWUP-FXWS +Downloaded DOI 57Z8-9SH4 +Downloaded DOI 3WX5-V462 +Downloaded DOI BXFE-HX2T +Downloaded DOI THQB-2GNS +Downloaded DOI 8STC-4PRW +Downloaded DOI 6PSP-88Q8 +Downloaded DOI 2XDM-3HZA +Downloaded DOI 2V4W-VZKH +Downloaded DOI MA67-SMQ6 +Downloaded DOI 9BAV-QT3X +Downloaded DOI FTQW-8U5S +Downloaded DOI H52K-FUS2 +Downloaded DOI 9SG7-ZQN2 +Downloaded DOI KPWB-KDTN +Downloaded DOI ZR8C-RDDE +Downloaded DOI BPPN-MZBH +Downloaded DOI SH4Y-RBE3 +Downloaded DOI XCAN-MSNE +Downloaded DOI 634B-BSVJ +Downloaded DOI GRJB-2MVK +Downloaded DOI QVTS-YZ67 +Downloaded DOI YZPQ-8JEP +Downloaded DOI CMAC-FE3X +Downloaded DOI QYXX-J7WZ +Downloaded DOI GEAQ-EXXX +Downloaded DOI YRQG-46CW +Downloaded DOI DC45-E66M +Downloaded DOI W9XH-7CYZ +Downloaded DOI YQS9-QWWK +Downloaded DOI B7GR-5PCR +Downloaded DOI CQ5W-Z4JS +Downloaded DOI VSWG-2AXZ +Downloaded DOI 6ZJ3-2GRR +Downloaded DOI CQ2M-USKQ +Downloaded DOI 5KXU-V274 +Downloaded DOI Q5YU-MR34 +Downloaded DOI 3T5K-SPG9 +Downloaded DOI SPEM-W8FQ +Downloaded DOI 2HYE-PT7Q +Downloaded DOI 3RTS-ANFQ +Downloaded DOI XN6N-EJG5 +Downloaded DOI D424-AKRD +Downloaded DOI XAB8-WHD9 +Downloaded DOI P4AC-37QA +Downloaded DOI YM3Q-AGZC +Downloaded DOI MTYU-4E8Q +Downloaded DOI 2RB7-AQDK +Downloaded DOI SZ42-YAXC +Downloaded DOI AQSX-VWTZ +Downloaded DOI XRUX-W6YS +Downloaded DOI 5ZQ2-599Q +Downloaded DOI HAXJ-FWF7 +Downloaded DOI CVNN-QAJA +Downloaded DOI DCGT-JNP5 +Downloaded DOI EG6N-DX3U +Downloaded DOI 9QNN-WEB3 +Downloaded DOI Z9D2-D83Z +Downloaded DOI 28RR-B588 +Downloaded DOI HS9F-JAGY +Downloaded DOI BBCT-JUUK +No data found, error 404 +Downloaded DOI MXBR-9WTC +Downloaded DOI B3UT-V4SB +Downloaded DOI SJ4E-ZTNF +No data found, error 404 +Downloaded DOI W9M7-AVYC +Downloaded DOI S9S9-TYWB +Downloaded DOI GDX2-EA9U +Downloaded DOI HYR2-TYK6 +Downloaded DOI 4C3Z-465J +Downloaded DOI UVS6-67JM +Downloaded DOI JECK-5JT4 +Downloaded DOI YKPG-SFDY +Downloaded DOI 59E9-84U3 +Downloaded DOI XZJH-5XYJ +Downloaded DOI T573-6KCF +Downloaded DOI HM6F-DK4Q +Downloaded DOI RJMW-MUEV +Downloaded DOI M2WW-RDFA +Downloaded DOI 9EYN-9QEU +Downloaded DOI CWN4-YPF3 +Downloaded DOI 7H3K-FN3M +Downloaded DOI ZPAE-34G2 +Downloaded DOI RJKJ-N8XG +Downloaded DOI 84GQ-RXJU +Downloaded DOI GXM6-6CRY +Downloaded DOI APPA-9GU2 +Downloaded DOI 6BBM-VP93 +Downloaded DOI RJ4F-QNAD +Downloaded DOI 5V24-RWFK +Downloaded DOI BQ5K-3236 +Downloaded DOI HYU2-ZMC6 +No data found, error 404 +No data found, error 404 +Downloaded DOI GUX2-8CQN +Downloaded DOI ZVM6-9C2P +Downloaded DOI P3WW-ZNUV +Downloaded DOI HG2H-NVP4 +Downloaded DOI B2FP-KCX4 +Downloaded DOI CBR2-2VXC +Downloaded DOI 7K4B-ESMY +Downloaded DOI 5883-KQVE +Downloaded DOI GMJ9-JCC8 +No data found, error 404 +Downloaded DOI QJY5-897H +Downloaded DOI SPGR-6HJD +Downloaded DOI D7TX-3J63 +Downloaded DOI GQM6-KV7Q +Downloaded DOI W45Q-D6A8 +Downloaded DOI SX5S-X3PF +No data found, error 404 +Downloaded DOI TWZU-WC9V +Downloaded DOI DFWQ-EC95 +Downloaded DOI DBUX-DE7F +Downloaded DOI JHMR-9W3K +Downloaded DOI H6WT-H33Q +Downloaded DOI N2GX-PMRW +Downloaded DOI T398-WBXC +Downloaded DOI QDGA-Y7KY +Downloaded DOI BGCB-2PPF +Downloaded DOI GEXT-F53M +Downloaded DOI 69A7-GBJE +Downloaded DOI XYD6-P5XB +No data found, error 404 +Downloaded DOI AVTP-HWCX +No data found, error 404 +Downloaded DOI R9PP-YMM9 +No data found, error 404 +Downloaded DOI WE5W-NWNM +Downloaded DOI AGBG-3WKG +Downloaded DOI XAZN-PN65 +Downloaded DOI FF9H-TG5M +Downloaded DOI WNE2-SSRT +Downloaded DOI M7UM-T4CX +Downloaded DOI FSZ5-JB6F +Downloaded DOI TM8E-N857 +Downloaded DOI MQFH-WGG7 +Downloaded DOI JFMY-WQEG +Downloaded DOI MWEE-2TJM +No data found, error 404 +Downloaded DOI JAN4-RJGU +Downloaded DOI 8NFX-9UD7 +Downloaded DOI S3Y5-EQYF +Downloaded DOI 5F87-5Y53 +No data found, error 404 +Downloaded DOI FWC3-FRSS +Downloaded DOI 9S6M-T48H +Downloaded DOI 6BFN-B4MC +Downloaded DOI ECT4-Y5M6 +Downloaded DOI YD3Q-EFJ9 +Downloaded DOI RUDG-SH34 +Downloaded DOI DYMP-ACKG +Downloaded DOI X2KJ-6SXA +Downloaded DOI 5T5B-FRTR +Downloaded DOI 4ABJ-VD6R +Downloaded DOI DP6G-WM9N +Downloaded DOI 2GJD-ZFZ6 +Downloaded DOI 2FWB-E39R +Downloaded DOI QCUF-WVZ4 +Downloaded DOI 4JXP-WJ62 +Downloaded DOI 975E-7RHS +Downloaded DOI UZAV-GQXW +Downloaded DOI EK28-AZKC +Downloaded DOI 38DC-WYVG +Downloaded DOI C35X-P8GX +Downloaded DOI PWRA-ZE62 +Downloaded DOI Z9SR-MKMC +Downloaded DOI 2VSV-S8KP +Downloaded DOI 6WNZ-DMAN +Downloaded DOI ST7P-9GUK +Downloaded DOI MMSD-VWP9 +Downloaded DOI ZFZA-PMDR +Downloaded DOI U4GS-UNT5 +Downloaded DOI UK8F-H5D3 +Downloaded DOI P6NC-FQMP +Downloaded DOI BCK2-HHUK +Downloaded DOI 5FJD-QHTV +No data found, error 404 +No data found, error 404 +Downloaded DOI H4WZ-MDKP +Downloaded DOI NCHF-8P4J +Downloaded DOI 9937-FTHP +Downloaded DOI CQD8-6JKJ +Downloaded DOI VGHB-JE9G +Downloaded DOI KD4J-PC6Z +Downloaded DOI 9PRU-3NMS +No data found, error 404 +Downloaded DOI XRX9-TNY7 +No data found, error 404 +Downloaded DOI H62Z-4HZA +Downloaded DOI M9AE-GVJ7 +Downloaded DOI 5G72-PXKJ +No data found, error 404 +Downloaded DOI ZT64-QH8Y +No data found, error 404 +Downloaded DOI JJRQ-QD7R +Downloaded DOI 3VCB-8S27 +Downloaded DOI KQC7-U4JX +Downloaded DOI HZFF-WERU +Downloaded DOI TFTJ-AWT2 +Downloaded DOI TJAA-Y5EZ +Downloaded DOI 5YK3-5NXE +Downloaded DOI MS8P-XRBA +Downloaded DOI MUWD-NT3X +Downloaded DOI MEAE-PHZ9 +Downloaded DOI URVS-QP8U +Downloaded DOI 8ZSQ-9E5D +Downloaded DOI 8B2D-FPHZ +Downloaded DOI 6GND-YYSP +Downloaded DOI YUEZ-8UMV +Downloaded DOI EK6K-JR2G +Downloaded DOI 8F87-4K5Y +Downloaded DOI 8YBZ-KZYM +Downloaded DOI PCXC-JTER +No data found, error 404 +Downloaded DOI BAUV-X4UB +Downloaded DOI T9CH-SFCK +Downloaded DOI 7R6H-6KD2 +Downloaded DOI JZTP-CZBP +Downloaded DOI NTX4-B8DA +Downloaded DOI UY3Y-7YFV +Downloaded DOI 2M4K-JFJS +No data found, error 404 +Downloaded DOI H25T-2RPQ +Downloaded DOI J3TE-D436 +Downloaded DOI WTND-GR5K +Downloaded DOI UH99-UZSN +No data found, error 404 +Downloaded DOI QJTT-QZB8 +Downloaded DOI MVYV-26FD +Downloaded DOI Y5BV-DYKS +Downloaded DOI HXGV-32Y6 +Downloaded DOI 6BJX-72XB +Downloaded DOI NQCK-GMME +Downloaded DOI BK34-CSB2 +Downloaded DOI GVHQ-S3ZB +Downloaded DOI 3C6E-R94S +No data found, error 404 +No data found, error 404 +Downloaded DOI 7U52-25HG +Downloaded DOI BDNP-DQ9J +Downloaded DOI PAD7-F554 +Downloaded DOI CB2M-3GQ2 +Downloaded DOI H53Z-5X8R +Downloaded DOI EPDT-4DPT +Downloaded DOI V78G-YJR4 +Downloaded DOI J3A4-TF47 +Downloaded DOI J3PB-PS55 +Downloaded DOI C5HP-ZST2 +Downloaded DOI JWT3-GNX8 +Downloaded DOI R9CM-T7RF +Downloaded DOI Z54G-323S +Downloaded DOI 2UD8-F23U +Downloaded DOI 5WR2-HFZ6 +Downloaded DOI BQ53-UVWR +Downloaded DOI EQPA-CN99 +Downloaded DOI VHKE-6RRZ +Downloaded DOI Q7M2-RVKJ +Downloaded DOI H6FV-FRNZ +Downloaded DOI 5HUU-4JAP +Downloaded DOI T4XZ-65BH +Downloaded DOI FQQK-22ZS +Downloaded DOI YESC-MYZ7 +Downloaded DOI KQ58-8KRU +Downloaded DOI 99X5-8TYK +Downloaded DOI YPPT-4TX6 +Downloaded DOI M7R3-RKFP +No data found, error 404 +Downloaded DOI 5U3F-KEZH +Downloaded DOI DUGH-SMX4 +Downloaded DOI GKX8-94BB +Downloaded DOI 9A5N-6ZSR +Downloaded DOI 587G-MWDS +Downloaded DOI S7AT-RXSZ +No data found, error 404 +Downloaded DOI MDXX-TN4Y +No data found, error 404 +Downloaded DOI MSYZ-WW7B +No data found, error 404 +Downloaded DOI 626Y-PV6D +Downloaded DOI Y7KE-P7U4 +Downloaded DOI VDU3-W7UZ +Downloaded DOI P825-XGZS +Downloaded DOI 8GSM-UM4P +Downloaded DOI FGC4-MH9K +Downloaded DOI CBZS-25H7 +No data found, error 404 +Downloaded DOI EP54-G7N7 +Downloaded DOI 9TZY-PGMX +Downloaded DOI 6KAG-BGVW +Downloaded DOI VB6S-8JD7 +Downloaded DOI 6NSR-H6H8 +Downloaded DOI 42B3-ZKAC +Downloaded DOI 65QU-CMSC +Downloaded DOI 5CBN-WWC2 +Downloaded DOI 57FZ-B62M +Downloaded DOI Y2HR-ZP4J +Downloaded DOI MYPJ-29MV +Downloaded DOI PV2K-K6RG +Downloaded DOI 5JGH-NM4Z +Downloaded DOI 2788-5AX3 +Downloaded DOI AGQA-AZX6 +No data found, error 404 +Downloaded DOI CZZD-XFCS +Downloaded DOI A2BF-M9UW +Downloaded DOI WM7W-445S +Downloaded DOI SP7G-XQW2 +Downloaded DOI 3BWU-46CZ +Downloaded DOI HYXD-HVQY +Downloaded DOI AXCJ-VG89 +Downloaded DOI YFMA-8GPS +Downloaded DOI QQT2-RF9Q +Downloaded DOI NTWN-BN3U +Downloaded DOI BGHH-J3RX +Downloaded DOI 8YEW-TUPV +Downloaded DOI W6RN-WR93 +Downloaded DOI NEMW-CD5G +Downloaded DOI CT6A-9S44 +Downloaded DOI QE8N-AQTY +Downloaded DOI 64CE-FYRS +Downloaded DOI P6V3-RSDA +Downloaded DOI SQZ3-PZJX +Downloaded DOI KJ6E-BX8M +Downloaded DOI AZ4R-QXND +Downloaded DOI W5VC-W2VQ +Downloaded DOI QAAB-H7ZJ +Downloaded DOI UEFP-BY5J +Downloaded DOI 4NWN-U693 +Downloaded DOI XZUF-YE2Z +Downloaded DOI WSXD-WNKC +Downloaded DOI H6Q8-JZP8 +No data found, error 404 +Downloaded DOI VBBQ-6K4W +Downloaded DOI NJKT-X74H +Downloaded DOI BP8K-EP5H +Downloaded DOI YJWZ-KXH2 +No data found, error 404 +Downloaded DOI SQ7T-J68D +Downloaded DOI F8PW-JPVK +Downloaded DOI 7B2P-EMPS +Downloaded DOI EJGU-YBTE +Downloaded DOI UZRX-K3MD +Downloaded DOI MZ8T-USEF +Downloaded DOI VQSZ-R2DM +Downloaded DOI DP9X-WQPT +Downloaded DOI 5367-89XM +Downloaded DOI QXP5-PBD8 +Downloaded DOI JJY8-UDT9 +Downloaded DOI B5C5-5BCH +Downloaded DOI DXDG-KMEG +Downloaded DOI 2HC8-HVCQ +Downloaded DOI S7YZ-B4TC +Downloaded DOI J7DQ-68Y3 +Downloaded DOI BXJA-M7ES +Downloaded DOI AU9N-7BWP +Downloaded DOI FZPZ-TBK4 +Downloaded DOI PBZT-J9JJ +Downloaded DOI T62A-B2EN +Downloaded DOI XD72-67MC +Downloaded DOI 3EUP-BHQD +Downloaded DOI TASJ-6368 +Downloaded DOI 97MS-V67X +Downloaded DOI RJMN-PGH7 +Downloaded DOI 9Q25-H98X +Downloaded DOI 59DH-E38A +Downloaded DOI AFFF-S4QU +Downloaded DOI 6VZ5-S4NG +Downloaded DOI R87C-R27B +Downloaded DOI VKMR-P2B6 +Downloaded DOI EES2-EDVM +Downloaded DOI 3DJD-E279 +Downloaded DOI T28F-KVY9 +No data found, error 404 +Downloaded DOI J8CC-3JVU +Downloaded DOI KJ9U-TWSW +Downloaded DOI VWW4-M59N +No data found, error 404 +Downloaded DOI HC35-H52K +Downloaded DOI AUYA-SPXZ +Downloaded DOI ZEG2-9STU +Downloaded DOI 3HBP-4ECA +Downloaded DOI RB23-WYT6 +No data found, error 404 +Downloaded DOI 2FGN-NP9C +Downloaded DOI MRNY-CH3Y +No data found, error 404 +Downloaded DOI QFKA-Q6JV +Downloaded DOI VYDJ-X54U +No data found, error 404 +Downloaded DOI RAB3-5TR2 +Downloaded DOI HXEP-B3TQ +No data found, error 404 +Downloaded DOI VGBG-S5GC +No data found, error 404 +Downloaded DOI SHBF-6GZ8 +Downloaded DOI XJJ2-29BY +Downloaded DOI YRK8-N2A4 +No data found, error 404 +Downloaded DOI 6G55-YHU4 +Downloaded DOI 2DXK-ENA5 +Downloaded DOI PB49-7PV8 +Downloaded DOI 5EVP-YTNX +Downloaded DOI X5AS-PYKQ +Downloaded DOI XCB4-JJHX +Downloaded DOI NVTP-RRBZ +Downloaded DOI QDS8-3SAM +Downloaded DOI ECME-9VKE +Downloaded DOI 2VB7-8TB5 +Downloaded DOI AVD4-6RUE +Downloaded DOI ZJ7M-HMVH +Downloaded DOI Z6XA-BXWX +Downloaded DOI FCER-TU47 +Downloaded DOI R7DN-JBKC +Downloaded DOI WW5D-7XEX +Downloaded DOI GUXM-E64D +Downloaded DOI JJ9R-27DA +Downloaded DOI V8E9-KQTV +Downloaded DOI 5UU5-WY2B +Downloaded DOI 29G8-T65Z +Downloaded DOI T9MJ-DVYE +No data found, error 404 +Downloaded DOI PRBY-NQH2 +No data found, error 404 +Downloaded DOI JX4R-WSAT +No data found, error 404 +Downloaded DOI ZVPW-H8GA +Downloaded DOI 8AJK-QVAM +Downloaded DOI NE4C-C7J6 +Downloaded DOI NVM5-EF3Q +Downloaded DOI N34S-8CTY +Downloaded DOI EJWQ-ZG6B +Downloaded DOI G8MB-TEU9 +Downloaded DOI 9JN9-5VXM +Downloaded DOI K6FS-ET3C +Downloaded DOI 4GNA-GDYA +Downloaded DOI XNF3-R6XA +Downloaded DOI KKZJ-A6R4 +Downloaded DOI QY54-BVP9 +Downloaded DOI J5VB-KS6F +No data found, error 404 +No data found, error 404 +Downloaded DOI 7A6Q-VDSS +Downloaded DOI 8X8Z-EWJJ +Downloaded DOI N9QS-DGGD +Downloaded DOI SCVM-BAW9 +Downloaded DOI 88RH-BF3J +Downloaded DOI RH2Y-4FKV +Downloaded DOI NVCE-2GED +Downloaded DOI XJY5-8CD8 +Downloaded DOI 72UT-NFHP +Downloaded DOI ZUWV-VA9N +Downloaded DOI VQN4-VCVC +Downloaded DOI 7UCT-KSMM +Downloaded DOI C79R-5GSD +Downloaded DOI EQY6-ZF32 +Downloaded DOI XRXK-62PD +Downloaded DOI 3JNM-7X4W +Downloaded DOI AE7B-3M7E +Downloaded DOI MT5F-9V55 +Downloaded DOI T6MK-4AJS +Downloaded DOI 8JY6-R22T +Downloaded DOI GFZY-KGXB +Downloaded DOI JJKV-E2XF +Downloaded DOI 8PCH-WRMH +Downloaded DOI TGQ4-PBM5 +Downloaded DOI 8722-DC55 +No data found, error 404 +Downloaded DOI TW6N-EJS3 +Downloaded DOI QGCA-QWFV +No data found, error 404 +Downloaded DOI B7TU-K9U2 +Downloaded DOI G5XZ-WS6T +Downloaded DOI A48A-9M2E +Downloaded DOI GKCQ-FEJK +Downloaded DOI 7WDA-BGBV +No data found, error 404 +Downloaded DOI BA4X-Z7S3 +Downloaded DOI 962Y-2ZU6 +Downloaded DOI AEB6-7GK7 +Downloaded DOI WJUZ-BFNB +No data found, error 404 +Downloaded DOI DT57-ZWRK +Downloaded DOI UP6K-YEBX +Downloaded DOI DW8V-XF6Z +Downloaded DOI T76Z-4PBM +Downloaded DOI RBZA-TCKN +Downloaded DOI BCKB-B2CB +Downloaded DOI E3RV-M2NX +Downloaded DOI 3CQV-4QNX +Downloaded DOI 8J2U-ASSE +Downloaded DOI G6TX-9YHV +Downloaded DOI R4SS-CWE8 +Downloaded DOI RBYW-M7Z7 +Downloaded DOI 63VQ-JD4S +Downloaded DOI D479-UFCT +Downloaded DOI 6FWB-KQTH +Downloaded DOI Q22A-3TGA +Downloaded DOI URTH-RV5H +Downloaded DOI CSFZ-E5Q9 +Downloaded DOI A3MS-8AUY +Downloaded DOI 9HYP-3TTQ +Downloaded DOI 49JK-EG2P +Downloaded DOI DGSU-82QS +Downloaded DOI V9X3-G3DF +Downloaded DOI VA7Y-UFH6 +Downloaded DOI WGH6-4DJS +Downloaded DOI YGVQ-8PZA +Downloaded DOI EZMV-PC88 +Downloaded DOI RU2H-2XHT +No data found, error 404 +Downloaded DOI 45YD-GYN9 +Downloaded DOI ENF6-Y6T6 +Downloaded DOI WRGD-FTKU +No data found, error 404 +Downloaded DOI S8VP-BEFZ +No data found, error 404 +Downloaded DOI AWZH-349S +Downloaded DOI TXPY-EJ62 +Downloaded DOI EFP5-9W9P +Downloaded DOI QQ3S-H5A2 +No data found, error 404 +Downloaded DOI 29C8-3K3B +No data found, error 404 +No data found, error 404 +Downloaded DOI 3DNX-228N +Downloaded DOI 68HC-MM7P +Downloaded DOI 8NTK-65JE +Downloaded DOI RPK5-48BF +Downloaded DOI 5UBA-V7ZW +Downloaded DOI 2HRY-BBQU +Downloaded DOI P6H9-DWZ6 +Downloaded DOI WQZ9-GEDJ +Downloaded DOI 99MV-4AMF +Downloaded DOI FE3P-2CN6 +Downloaded DOI KCCE-ZNC6 +Downloaded DOI W734-YK27 +No data found, error 404 +Downloaded DOI RHY7-GYQJ +Downloaded DOI BY89-A2MU +Downloaded DOI 2AY5-4Q8B +Downloaded DOI E3BN-76GN +Downloaded DOI ZNCD-PT7C +Downloaded DOI J98G-Q4UF +Downloaded DOI 4SZG-AR66 +Downloaded DOI K54N-TKCH +Downloaded DOI TVKU-DQ7U +Downloaded DOI CARJ-92DY +No data found, error 404 +Downloaded DOI BQX7-4FJK +Downloaded DOI 7PJW-B652 +No data found, error 404 +Downloaded DOI WSUD-US88 +Downloaded DOI JPKT-7S6V +No data found, error 404 +Downloaded DOI RSRJ-WJF3 +Downloaded DOI DXDY-MQXS +No data found, error 404 +Downloaded DOI QMPZ-Q3MC +Downloaded DOI 3CTX-N6GY +Downloaded DOI QJYA-2PD9 +Downloaded DOI QZ7Q-SU75 +Downloaded DOI ZCF4-WCCR +No data found, error 404 +Downloaded DOI 8CCD-YHHF +No data found, error 404 +Downloaded DOI H7HD-BDRM +Downloaded DOI CXWV-MG3E +No data found, error 404 +Downloaded DOI ZKAS-VJXE +Downloaded DOI S4AK-SKRY +Downloaded DOI 3AJK-6DX4 +Downloaded DOI 8PX8-RM46 +Downloaded DOI SJ2B-TYND +Downloaded DOI P224-HD5H +Downloaded DOI S457-VH2U +Downloaded DOI 9VTQ-WTTJ +Downloaded DOI YTZC-N64A +Downloaded DOI PDNP-Q87Q +Downloaded DOI RZNU-B7R6 +Downloaded DOI CQ5N-Z7RG +Downloaded DOI EB54-TGNB +Downloaded DOI SPKK-A2Z5 +Downloaded DOI ZSJH-R4VX +Downloaded DOI HYAM-C97G +Downloaded DOI B3VA-RSVT +Downloaded DOI GE5T-58D4 +Downloaded DOI J7DG-9MH7 +Downloaded DOI 8YZC-7A84 +Downloaded DOI TQ5F-D4H8 +No data found, error 404 +Downloaded DOI 9W32-GWXV +Downloaded DOI NQWD-FCSR +Downloaded DOI 63GE-2K4K +Downloaded DOI RZP6-PV6Y +Downloaded DOI 5ZFR-X27N +Downloaded DOI UW6E-5ZB2 +Downloaded DOI XX9R-RYXE +Downloaded DOI M8VV-V5YM +Downloaded DOI 9PUW-ASAC +Downloaded DOI 89E9-2VT9 +Downloaded DOI MR52-B6XE +Downloaded DOI 8Y35-FZ3Q +Downloaded DOI KBE9-DY7U +Downloaded DOI 5DCJ-PZQA +Downloaded DOI JRT5-3VMV +Downloaded DOI JFQ4-QT5S +Downloaded DOI 89DN-YTJV +Downloaded DOI YWJY-X9M3 +Downloaded DOI NF88-4VKT +Downloaded DOI JKHW-7XX3 +Downloaded DOI 3J7P-3SGE +Downloaded DOI HMTS-K6GN +Downloaded DOI JV67-CBSM +Downloaded DOI ZG2P-DVUY +Downloaded DOI 6N83-TZB9 +Downloaded DOI GRPV-KW4Z +Downloaded DOI B8V4-2C4Y +Downloaded DOI 9J5V-UF2G +Downloaded DOI WAWT-U4GB +Downloaded DOI RBWM-535H +Downloaded DOI G99C-5PR4 +Downloaded DOI SBUM-GV59 +Downloaded DOI B93S-G2UH +Downloaded DOI HJRS-UY6R +Downloaded DOI XV4P-VKYV +Downloaded DOI VJQH-KH6P +Downloaded DOI KUX7-36XQ +Downloaded DOI 932Y-DSNC +Downloaded DOI RPH4-WEFT +Downloaded DOI E6T3-7XK4 +No data found, error 404 +Downloaded DOI 2EY3-W9E6 +Downloaded DOI WMKP-PHHQ +Downloaded DOI QT3X-ZKFT +Downloaded DOI XCX9-WZ3A +Downloaded DOI Y5GU-2GAR +Downloaded DOI 2JM3-NNF5 +No data found, error 404 +Downloaded DOI QMM5-ASUM +Downloaded DOI 9EJ3-ZH7M +Downloaded DOI 64CS-939F +Downloaded DOI VXWV-WZE5 +No data found, error 404 +Downloaded DOI MQ4P-AG9G +Downloaded DOI 62JE-CJMA +Downloaded DOI 8XV9-UJHA +Downloaded DOI HT5D-VAUE +Downloaded DOI C4PV-JYAA +Downloaded DOI QJTF-Z9DA +No data found, error 404 +Downloaded DOI NWW8-H6H3 +No data found, error 404 +Downloaded DOI XNFZ-9TK7 +Downloaded DOI WF4J-ZCVJ +Downloaded DOI JQ5Z-NFS7 +Downloaded DOI XNYM-KAA2 +Downloaded DOI SCYV-NGQU +Downloaded DOI 83DA-WYX2 +Downloaded DOI AF9C-48YB +Downloaded DOI T2WA-CA9S +Downloaded DOI 4MR5-8TT5 +Downloaded DOI SYVG-AQMN +Downloaded DOI XHXH-N3S7 +Downloaded DOI FW9D-4N5C +No data found, error 404 +Downloaded DOI KMRP-JRSC +Downloaded DOI 3NWK-K6S4 +Downloaded DOI HMKP-TVKK +Downloaded DOI GDRE-YS9T +No data found, error 404 +Downloaded DOI FNA2-MJWJ +Downloaded DOI X7E6-X3PU +Downloaded DOI VQM2-GR23 +No data found, error 404 +Downloaded DOI D2D9-F3KG +Downloaded DOI EDJA-R694 +No data found, error 404 +Downloaded DOI Y88V-UDX2 +Downloaded DOI 2ZM9-WXZR +Downloaded DOI JSWW-TXH8 +Downloaded DOI ZB5S-NHDM +Downloaded DOI 6TDQ-7YJC +Downloaded DOI V78A-TVJ5 +Downloaded DOI HKAG-6HER +Downloaded DOI QVFE-JPCK +Downloaded DOI 8H65-HX6E +Downloaded DOI VV3E-DXE2 +No data found, error 404 +Downloaded DOI XW83-9Y94 +Downloaded DOI CWRD-KMSS +Downloaded DOI EUMV-6NXT +No data found, error 404 +Downloaded DOI HWK7-2FMZ +Downloaded DOI 5V5R-FET8 +Downloaded DOI 7R9N-5EAW +Downloaded DOI VZWJ-8JXU +Downloaded DOI 6HRM-UYXK +Downloaded DOI G6R6-7USA +Downloaded DOI H4QA-GG53 +Downloaded DOI KZ7G-X78K +No data found, error 404 +Downloaded DOI 8RBT-43BE +Downloaded DOI M96R-R3W8 +Downloaded DOI TVN4-EWWZ +No data found, error 404 +Downloaded DOI DXX5-SV6P +Downloaded DOI N65V-5VJS +Downloaded DOI MXXJ-FGSA +Downloaded DOI TYJV-H4R2 +Downloaded DOI M4AA-XWBN +Downloaded DOI XDNX-UD8D +Downloaded DOI U68X-33RY +Downloaded DOI T6F9-25YH +Downloaded DOI 6DPF-437F +Downloaded DOI S9GV-2M6A +Downloaded DOI SAVK-DEUC +Downloaded DOI J5RT-ZD3X +Downloaded DOI 2YD4-QKD3 +Downloaded DOI B2X2-YX2V +Downloaded DOI XC8E-FYR7 +Downloaded DOI HQWK-KQJ6 +No data found, error 404 +Downloaded DOI FKGR-5F88 +Downloaded DOI FJUT-BWWW +Downloaded DOI MHKT-48G2 +Downloaded DOI 4ZWN-EHK4 +Downloaded DOI 924Y-REYX +Downloaded DOI X47A-TG8D +Downloaded DOI 64NK-Y43S +No data found, error 404 +Downloaded DOI ZUP7-YC3G +Downloaded DOI UFNM-GP7Z +Downloaded DOI XWUY-WAJB +Downloaded DOI JC87-9PU6 +Downloaded DOI 5CMN-EMPA +Downloaded DOI PEBE-N63B +Downloaded DOI 683H-KEEB +Downloaded DOI TDE3-9G63 +Downloaded DOI AA7Y-YMWK +Downloaded DOI NNNH-TY36 +Downloaded DOI 6XP6-D87Z +Downloaded DOI C6XJ-6E4J +Downloaded DOI F73V-9QH8 +Downloaded DOI RP59-7EPE +Downloaded DOI ZKDC-3E26 +Downloaded DOI 7PY2-ZVQ8 +Downloaded DOI FPWP-ZN98 +Downloaded DOI 5MG2-NNZR +Downloaded DOI H5H3-WMBA +Downloaded DOI WMQ6-J9NH +Downloaded DOI MBC7-UUS9 +Downloaded DOI RRYY-T9AB +Downloaded DOI NJFV-P6MR +Downloaded DOI T3R9-TENU +Downloaded DOI ZNFW-BBRR +Downloaded DOI 6A4B-XTKN +Downloaded DOI G5WD-NC2A +No data found, error 404 +Downloaded DOI QJKC-AGW9 +Downloaded DOI XPUG-R5VV +Downloaded DOI MM8A-XGJ4 +Downloaded DOI 8JG4-42CT +Downloaded DOI KDSJ-8VG4 +No data found, error 404 +No data found, error 404 +Downloaded DOI 69DG-ZZU8 +Downloaded DOI HE9C-5FPV +Downloaded DOI ZZ45-77JE +Downloaded DOI T358-UAKQ +Downloaded DOI 54D2-D9ZP +Downloaded DOI 2GA2-WNV7 +Downloaded DOI 63FR-9E5A +Downloaded DOI QWNA-5JJV +Downloaded DOI PEP8-CP6F +Downloaded DOI AU89-DJR7 +Downloaded DOI 5G7M-HXJ4 +Downloaded DOI MFPM-8FXM +No data found, error 404 +Downloaded DOI JNQH-UWDA +Downloaded DOI FTFV-CJXG +Downloaded DOI AAXJ-W9EF +Downloaded DOI 9YH3-JTAR +Downloaded DOI ARA8-2KEA +Downloaded DOI VJJC-55Y8 +Downloaded DOI HVGQ-Q2KR +Downloaded DOI 3BYV-BV38 +No data found, error 404 +Downloaded DOI G7YU-5MBF +Downloaded DOI YPT8-JHKS +Downloaded DOI U6VB-PEZQ +Downloaded DOI SQMS-BSPS +Downloaded DOI TWHC-A5FU +Downloaded DOI U9R6-8ABV +No data found, error 404 +Downloaded DOI 9FM8-C2NM +Downloaded DOI U86A-9XY7 +Downloaded DOI 5M4B-AC33 +No data found, error 404 +Downloaded DOI FJUH-A6VR +Downloaded DOI RXHN-ZN4N +Downloaded DOI RQ9A-SXCJ +Downloaded DOI Y95Z-F6XC +Downloaded DOI KAVE-DPZM +Downloaded DOI 47JJ-2FGC +Downloaded DOI A536-3A8Z +Downloaded DOI JUQH-98HD +Downloaded DOI A55E-QZET +Downloaded DOI CE5T-XS45 +Downloaded DOI JG4X-E64H +Downloaded DOI 64HD-GFSC +Downloaded DOI XFQM-H4RZ +Downloaded DOI 259Q-FZWS +Downloaded DOI HYGT-4GWD +Downloaded DOI P3WH-KGRQ +Downloaded DOI YG2E-NME8 +Downloaded DOI V68C-NXC3 +Downloaded DOI KR6G-U6W9 +Downloaded DOI H35F-55DQ +No data found, error 404 +No data found, error 404 +Downloaded DOI 45VK-HCV6 +Downloaded DOI 264P-VQ8G +Downloaded DOI T7HT-BDN3 +Downloaded DOI ZEQR-24JP +Downloaded DOI 6KX6-JQTE +Downloaded DOI FQGJ-AQYQ +Downloaded DOI 4R9A-CHQP +Downloaded DOI TZPA-XNKE +Downloaded DOI A33P-TCEG +Downloaded DOI GGV2-QSH3 +Downloaded DOI 5B8Y-NHDE +Downloaded DOI 56ZR-94BB +Downloaded DOI RD4W-FKCV +Downloaded DOI RBFA-7GHT +Downloaded DOI 45ZR-S4FU +Downloaded DOI CAFG-639C +Downloaded DOI AFZS-MBV2 +Downloaded DOI 2ABD-DFG8 +Downloaded DOI N6YW-4RA2 +No data found, error 404 +Downloaded DOI S39K-VKGP +Downloaded DOI QEQK-5KQM +Downloaded DOI UTSE-8MYX +Downloaded DOI 37FB-GUVJ +No data found, error 404 +Downloaded DOI 2PJ5-7MG5 +Downloaded DOI FNUC-VPHB +Downloaded DOI ZWR7-C225 +Downloaded DOI YA64-ZQVW +Downloaded DOI 7V2M-SJF6 +Downloaded DOI PXUZ-CZKV +Downloaded DOI TH9X-W6FV +Downloaded DOI BDUS-ZXDF +Downloaded DOI 5C9J-UZRA +Downloaded DOI 9FBP-JRP2 +Downloaded DOI JJZY-4XH5 +Downloaded DOI VVWQ-ACYF +Downloaded DOI KFSF-HHWN +Downloaded DOI QAT7-SYS2 +Downloaded DOI TRVH-HC8V +Downloaded DOI 4XHP-CUVT +No data found, error 404 +No data found, error 404 +Downloaded DOI YKNC-2NTT +Downloaded DOI 8EEM-93YS +No data found, error 404 +Downloaded DOI E8X6-KQ6Z +No data found, error 404 +Downloaded DOI D7VN-7QYP +Downloaded DOI MXPP-N98D +Downloaded DOI Z82G-42SR +Downloaded DOI KGQQ-PU4S +Downloaded DOI Z92N-AKFU +Downloaded DOI 8WM5-A8DW +No data found, error 404 +Downloaded DOI F7KZ-AGVU +Downloaded DOI WK2A-7VJH +Downloaded DOI ZG79-TSBG +Downloaded DOI 33BH-882P +Downloaded DOI Q43K-YDWF +Downloaded DOI MFFC-4QT5 +No data found, error 404 +Downloaded DOI 27N6-PBGG +Downloaded DOI BSD3-4X7X +Downloaded DOI M439-G2SQ +Downloaded DOI FJJ9-G5FC +Downloaded DOI C7JA-5Q3A +Downloaded DOI Z4QU-2MNN +Downloaded DOI B4RZ-XXH8 +Downloaded DOI AVK8-A93W +No data found, error 404 +Downloaded DOI T2SQ-ZU2Y +Downloaded DOI BARY-VCXB +Downloaded DOI 5QQH-QDEE +Downloaded DOI 82A5-B7P7 +Downloaded DOI P3S4-WE6V +Downloaded DOI KCTT-8B2Q +Downloaded DOI 7DBU-XJZD +Downloaded DOI Q6ME-7HKZ +Downloaded DOI 2XP4-VEFZ +Downloaded DOI 73SA-42E9 +Downloaded DOI 9Y29-YSJE +Downloaded DOI CKFQ-X59V +Downloaded DOI VK4N-EF89 +Downloaded DOI XCZJ-2URJ +Downloaded DOI 2BZ6-U7GZ +Downloaded DOI YM2Q-V5D8 +No data found, error 404 +Downloaded DOI CTJQ-83BT +Downloaded DOI 8U8D-AQTY +Downloaded DOI RE33-ZJJ3 +Downloaded DOI MQBP-D9WS +Downloaded DOI 43U9-JVRE +Downloaded DOI KBZ2-YBRX +Downloaded DOI KP5N-QSFS +Downloaded DOI THTZ-YJMZ +Downloaded DOI TKTY-2A2T +No data found, error 404 +Downloaded DOI CFU2-DKFU +Downloaded DOI E6BD-XVBV +Downloaded DOI 4YEF-9NUE +Downloaded DOI RTWU-KHMX +Downloaded DOI V64X-VYPB +No data found, error 404 +Downloaded DOI C4Y3-46VV +Downloaded DOI YAAR-42CH +Downloaded DOI EAKT-SMVD +Downloaded DOI EUY4-VDMF +Downloaded DOI M6X9-MBRR +Downloaded DOI KRFB-7AEB +Downloaded DOI W8KF-UWTG +Downloaded DOI KGHV-ZSTW +Downloaded DOI VA4N-KE7E +Downloaded DOI EQ57-YZGB +Downloaded DOI 9RDP-PSXF +Downloaded DOI SWBK-GHGP +Downloaded DOI RNV3-T9PM +Downloaded DOI V427-8ATA +Downloaded DOI 7X4H-BFCA +Downloaded DOI 6GXP-5RP8 +Downloaded DOI 4UN2-5H7U +Downloaded DOI B5PW-WMYE +No data found, error 404 +Downloaded DOI WYVR-CR36 +Downloaded DOI 4J2J-5KWT +Downloaded DOI 8HFH-UECU +Downloaded DOI 3UVC-XHG4 +Downloaded DOI ZGJ3-KJKM +Downloaded DOI N67N-8WPG +Downloaded DOI VXHS-3CZ9 +Downloaded DOI SNEF-XJ9X +Downloaded DOI 7YJE-5SJH +Downloaded DOI B9AU-VH97 +Downloaded DOI 3ZQ5-HM8C +Downloaded DOI PWEV-KN6Q +No data found, error 404 +Downloaded DOI KNZZ-B5UP +No data found, error 404 +Downloaded DOI PVHB-G7T9 +Downloaded DOI 7BEP-GZD4 +Downloaded DOI H9SW-NGXE +Downloaded DOI R92V-WB2P +Downloaded DOI T6RF-Y3QV +Downloaded DOI 6ZB6-TM4B +Downloaded DOI SQMU-GMZY +No data found, error 404 +Downloaded DOI G8JT-9JAX +Downloaded DOI HE8B-UEZP +Downloaded DOI Z8P4-WSR8 +Downloaded DOI HSDY-WRWS +Downloaded DOI FVZP-57U9 +Downloaded DOI PPW4-RS3N +Downloaded DOI QZBG-PBXP +Downloaded DOI 8VSW-WW5P +Downloaded DOI P6QT-V76H +No data found, error 404 +Downloaded DOI DGVB-45WP +Downloaded DOI TK6J-MUDG +Downloaded DOI R5FX-ZBBA +Downloaded DOI MC88-AFTN +Downloaded DOI VXZR-Y654 +Downloaded DOI 3FV9-E3S3 +Downloaded DOI G56B-UM5E +Downloaded DOI KXXW-KSWF +Downloaded DOI SY2D-DHZE +Downloaded DOI P5MT-KQFV +Downloaded DOI MGC4-DY7T +Downloaded DOI 2ZPB-3FD4 +Downloaded DOI ZN5H-X8A5 +No data found, error 404 +Downloaded DOI JWDT-99SG +Downloaded DOI KE6Y-NZ38 +Downloaded DOI YSAK-YXC3 +Downloaded DOI AF52-Q23C +Downloaded DOI 68DU-RE8K +Downloaded DOI MEDX-7KBX +Downloaded DOI YQY6-6KGJ +No data found, error 404 +Downloaded DOI GNJ5-GVVX +Downloaded DOI 9XRB-7V4A +Downloaded DOI 44AU-ZG3B +Downloaded DOI Q26T-74WD +Downloaded DOI VWWT-MN24 +Downloaded DOI TRWM-57Z4 +Downloaded DOI PGTJ-YQR2 +Downloaded DOI QVQM-FD47 +Downloaded DOI KKUS-85H8 +Downloaded DOI 2N3T-2FUA +Downloaded DOI N5Y4-TF8A +Downloaded DOI QTXM-V3AV +Downloaded DOI 4E5Y-7UVK +Downloaded DOI QMXT-Y6QP +Downloaded DOI 97JE-24BW +Downloaded DOI RG29-RKQT +Downloaded DOI 2VGT-23GV +Downloaded DOI NZ7P-SHA4 +Downloaded DOI Z42P-356K +Downloaded DOI BRGJ-NY94 +Downloaded DOI 59G8-BEJT +Downloaded DOI SNHD-E9DK +Downloaded DOI VD9P-DBAK +Downloaded DOI JHZ8-BH4C +Downloaded DOI RED6-37JP +Downloaded DOI R966-6W7U +Downloaded DOI RSV6-PDMG +No data found, error 404 +Downloaded DOI PUCA-DEXM +Downloaded DOI QFMU-WBAY +Downloaded DOI PV8X-FNZB +Downloaded DOI VTTP-D5TB +Downloaded DOI 68SH-8VBX +Downloaded DOI EFDJ-DH8K +Downloaded DOI AA5T-FZC5 +No data found, error 404 +Downloaded DOI NTB3-UQDJ +Downloaded DOI DJ8G-W72U +Downloaded DOI U9GJ-SA55 +Downloaded DOI 7WZY-UK77 +Downloaded DOI K9NU-D46Y +Downloaded DOI HQA5-WHU8 +Downloaded DOI T22B-Q6YP +Downloaded DOI T3F3-USS7 +No data found, error 404 +No data found, error 404 +Downloaded DOI UQZU-NZB3 +Downloaded DOI JPZA-VBRN +Downloaded DOI NBWG-XFPJ +Downloaded DOI S935-8FX5 +Downloaded DOI U478-WAZD +Downloaded DOI KUZD-FJED +Downloaded DOI 7M33-B42J +Downloaded DOI 6KHP-2PQU +Downloaded DOI 6ZDQ-3W57 +Downloaded DOI 9NT9-U5DZ +Downloaded DOI ATPJ-C5R5 +No data found, error 404 +Downloaded DOI 2CE9-CQGV +Downloaded DOI MT3H-4A5C +No data found, error 404 +No data found, error 404 +Downloaded DOI 3QXD-AEWC +Downloaded DOI 9KAB-KWRW +Downloaded DOI YEQQ-K39Q +Downloaded DOI RCNR-BN4N +Downloaded DOI DGAR-ZAVQ +Downloaded DOI DP4J-XXFY +Downloaded DOI 3Q36-VKSR +Downloaded DOI ZT9C-M92S +Downloaded DOI R3V7-KSPK +Downloaded DOI CABK-FJMM +Downloaded DOI ZJ6R-T87B +Downloaded DOI YU8D-CCB8 +Downloaded DOI 2EXP-83T4 +Downloaded DOI MH48-AP4Y +No data found, error 404 +Downloaded DOI 3ZZA-38Y9 +Downloaded DOI NQCM-9AZQ +Downloaded DOI J65P-N5ZU +Downloaded DOI CPXN-R9MZ +Downloaded DOI YQNU-2XE5 +Downloaded DOI T7QZ-SFXS +Downloaded DOI K39S-5QAH +Downloaded DOI 6D2A-KKRW +Downloaded DOI 3ZTP-SMY4 +Downloaded DOI SYTM-WMTG +Downloaded DOI EYGE-YRD9 +Downloaded DOI PAJG-HDUP +Downloaded DOI TJ92-9VV6 +Downloaded DOI 2FR5-2EYD +Downloaded DOI 33P7-CBM3 +Downloaded DOI ZNKY-2GXF +Downloaded DOI EU4X-HE29 +Downloaded DOI R5AY-X9SE +Downloaded DOI ASAD-WKJV +Downloaded DOI ABNY-XAAH +Downloaded DOI QYQS-HXN8 +Downloaded DOI BTDQ-EDXD +Downloaded DOI FP8E-TEZN +No data found, error 404 +Downloaded DOI SB6B-SDFV +Downloaded DOI 5EEA-5DG3 +No data found, error 404 +Downloaded DOI 4Y2N-C7UC +Downloaded DOI X9BV-TXA6 +Downloaded DOI YJPR-VQNS +Downloaded DOI JVNP-UH94 +No data found, error 404 +Downloaded DOI 7DC7-2JF2 +Downloaded DOI MKYC-CB4E +Downloaded DOI Y99M-J8K9 +Downloaded DOI DZSV-8P5S +Downloaded DOI 7FKU-9QD2 +Downloaded DOI 8M32-T7T2 +No data found, error 404 +Downloaded DOI HJWE-ZUQ6 +Downloaded DOI GXM9-SXUQ +Downloaded DOI EN6M-WVN5 +Downloaded DOI C6YE-AGYD +No data found, error 404 +Downloaded DOI MJP9-3ENA +Downloaded DOI UPWD-QNKS +Downloaded DOI BHKX-8BVX +No data found, error 404 +Downloaded DOI HUQ9-T7P7 +No data found, error 404 +Downloaded DOI XXWP-JT8G +Downloaded DOI 5KRH-ZN3S +Downloaded DOI V8FD-FBV3 +Downloaded DOI SGKC-4FDB +Downloaded DOI W538-C8G6 +Downloaded DOI 8MXD-5MKB +Downloaded DOI 534Z-SK2K +Downloaded DOI DDS5-RYQP +Downloaded DOI PEV3-DQGM +Downloaded DOI 47Y3-YNU7 +No data found, error 404 +Downloaded DOI VZEQ-TPWS +No data found, error 404 +Downloaded DOI FRNW-4NXM +Downloaded DOI BWSX-YBZ6 +Downloaded DOI FK7Z-274Q +Downloaded DOI 7FQG-WA7A +Downloaded DOI Y3PB-PSGW +Downloaded DOI MHMN-P5P3 +Downloaded DOI 6ZNH-JFD9 +Downloaded DOI TT9F-Z2RA +Downloaded DOI CW7T-MUAQ +Downloaded DOI WPEY-UZB2 +Downloaded DOI RJT8-73EA +Downloaded DOI W4UC-PA6E +No data found, error 404 +Downloaded DOI 7C7J-Q8WZ +Downloaded DOI UZCD-NHW3 +Downloaded DOI MT4M-W35T +Downloaded DOI JY3R-FV5J +Downloaded DOI KVF7-Y8DV +Downloaded DOI F5BE-XSPY +Downloaded DOI VSC4-G9J9 +Downloaded DOI 4DUV-EJJX +Downloaded DOI 4VKV-MWD8 +Downloaded DOI ACRB-QWNR +Downloaded DOI 4JUY-439N +Downloaded DOI MEPG-VSYS +Downloaded DOI TPVG-RVQU +Downloaded DOI SXRR-P9SD +Downloaded DOI 98US-3Z2T +Downloaded DOI FR9V-P78N +No data found, error 404 +Downloaded DOI Y2Q9-Z69W +Downloaded DOI GQ6S-T725 +Downloaded DOI HMPH-67WU +Downloaded DOI Q9UH-AVWA +Downloaded DOI KFMD-MGR5 +Downloaded DOI AYA9-S5Z2 +Downloaded DOI 9QEM-SGFX +Downloaded DOI 6U44-9CZZ +Downloaded DOI J6WJ-5A8E +Downloaded DOI NZ9A-RT2K +Downloaded DOI VYZK-USKV +Downloaded DOI X4NW-KU8H +Downloaded DOI CM2J-8AYJ +Downloaded DOI 2EZY-U9WB +Downloaded DOI 2H7S-VXET +Downloaded DOI 63GZ-SR5K +Downloaded DOI WC7K-4C4S +Downloaded DOI S2CF-FSMK +No data found, error 404 +Downloaded DOI GHBJ-SU85 +Downloaded DOI JFF9-GMTV +Downloaded DOI TZEA-6H3G +Downloaded DOI TWK8-8VCK +Downloaded DOI NJPQ-37FT +Downloaded DOI KDPE-2C6J +Downloaded DOI NNTA-6B88 +Downloaded DOI X35Y-PSXQ +Downloaded DOI M3J7-SERB +Downloaded DOI 6U4K-FRGA +Downloaded DOI 45UQ-RQ2Y +Downloaded DOI 4HRF-9U6A +Downloaded DOI XH5Q-PRDN +Downloaded DOI MKKH-YGN6 +Downloaded DOI K8PF-28SD +Downloaded DOI NSXP-SAFN +Downloaded DOI HS5Y-AE78 +Downloaded DOI 9F9W-BE6X +Downloaded DOI TXEQ-3AUJ +Downloaded DOI XUZ4-24QD +Downloaded DOI SJE2-BN5X +No data found, error 404 +Downloaded DOI AKPZ-PMVQ +Downloaded DOI DPHA-UHRJ +Downloaded DOI DHNY-WEY8 +Downloaded DOI FHFR-WMYZ +Downloaded DOI E7PG-J4QA +Downloaded DOI DVPA-DUTV +No data found, error 404 +Downloaded DOI 7NED-CPKA +Downloaded DOI KG5M-VTPK +No data found, error 404 +Downloaded DOI NXER-T3KA +Downloaded DOI RTXS-U8P8 +Downloaded DOI NKPK-S65T +Downloaded DOI WNZ7-8TNB +Downloaded DOI 489M-ZM8J +Downloaded DOI 2MAT-XN68 +Downloaded DOI GAWG-MM5W +Downloaded DOI A9HC-J7GV +Downloaded DOI QFNC-E3HH +Downloaded DOI 68T3-EXSF +Downloaded DOI SDKX-M7KQ +Downloaded DOI D7UG-97B2 +Downloaded DOI JM8T-3X3K +No data found, error 404 +Downloaded DOI YHDY-R8HC +Downloaded DOI R4KQ-7GJJ +Downloaded DOI C56K-DGKP +Downloaded DOI BKJ9-8AKP +Downloaded DOI W384-MKP9 +Downloaded DOI E5TP-PNQK +Downloaded DOI 9RRP-RW4E +Downloaded DOI U5WX-232T +Downloaded DOI ZHBJ-9M29 +Downloaded DOI 8D4U-54MN +Downloaded DOI RW9M-NJ9Q +Downloaded DOI 3RX2-GKEK +Downloaded DOI TUHM-JYSH +Downloaded DOI S77F-TWVW +Downloaded DOI 9J2A-R4R7 +No data found, error 404 +Downloaded DOI C5D5-HMS9 +Downloaded DOI N3PY-TPA6 +No data found, error 404 +Downloaded DOI U5ES-2W9K +Downloaded DOI 8JNK-JBS6 +No data found, error 404 +Downloaded DOI YWT3-9ED7 +Downloaded DOI YKB5-E6JG +Downloaded DOI 88NT-Z29X +Downloaded DOI 3QTN-BTAK +Downloaded DOI 6C9J-BMFC +Downloaded DOI 9VWU-4ZYY +Downloaded DOI FAQK-6GPP +Downloaded DOI MBGJ-545V +Downloaded DOI J6F4-X48U +Downloaded DOI HWUV-4YJU +Downloaded DOI E4GC-7HQB +Downloaded DOI SZ2G-R6CF +No data found, error 404 +Downloaded DOI 5DBB-VJ4T +Downloaded DOI 2F2J-5B92 +Downloaded DOI KCQB-TGGP +Downloaded DOI 6F7D-48MV +Downloaded DOI K5KX-63Q2 +Downloaded DOI 7MNR-2E5X +Downloaded DOI YFPR-3W3P +Downloaded DOI 3XU8-7MMN +Downloaded DOI 2A9Z-SZEY +Downloaded DOI 9GCP-RB6K +No data found, error 404 +Downloaded DOI CZP9-T35J +No data found, error 404 +Downloaded DOI 3PTD-TN3G +Downloaded DOI G9N8-7HZX +Downloaded DOI GY94-B4QV +Downloaded DOI VG63-MN6Z +Downloaded DOI 9XTS-MHCB +Downloaded DOI 9Y5Z-MKY8 +Downloaded DOI NEFF-FCSM +Downloaded DOI NC5U-N5ZZ +Downloaded DOI VF58-6PJD +Downloaded DOI NYWK-8YZX +Downloaded DOI 3ANR-3BBS +Downloaded DOI E9MC-P3HV +Downloaded DOI U6EY-CQG8 +No data found, error 404 +Downloaded DOI 4UG9-BK2K +Downloaded DOI DHFP-RBC4 +Downloaded DOI MGEH-PW9A +Downloaded DOI ND9G-K6SY +Downloaded DOI Z3FP-X7NF +Downloaded DOI 6RSS-9S4S +Downloaded DOI GXPC-C7N8 +No data found, error 404 +Downloaded DOI PJXM-6427 +Downloaded DOI NWEF-2MSD +Downloaded DOI JKN3-X6FM +Downloaded DOI A3VK-GBX4 +Downloaded DOI 6DNZ-U6RN +Downloaded DOI 68CN-ANKJ +Downloaded DOI DD47-BBY4 +Downloaded DOI TXDV-7CS9 +Downloaded DOI QDTB-6XFP +Downloaded DOI AKB8-NVEB +Downloaded DOI DBWG-2VQP +No data found, error 404 +Downloaded DOI FGCD-4PDJ +Downloaded DOI W73M-FVVX +Downloaded DOI SUEC-2CR8 +Downloaded DOI ANKB-MR29 +Downloaded DOI EGPK-54V7 +No data found, error 404 +Downloaded DOI VF5P-RRGF +Downloaded DOI CB68-KCN3 +No data found, error 404 +Downloaded DOI XSGH-2X2S +Downloaded DOI AVPQ-XCR3 +Downloaded DOI R5ZM-P47R +Downloaded DOI JANZ-DDRY +Downloaded DOI W5YE-7QHY +Downloaded DOI ZRQ3-RW8E +Downloaded DOI RMPJ-YMBN +Downloaded DOI ZWKK-BE7E +Downloaded DOI YXYN-7VDG +Downloaded DOI MFUG-C7WQ +Downloaded DOI ZPAV-PXZ2 +Downloaded DOI U255-8RYG +Downloaded DOI CZ25-K9D5 +Downloaded DOI 9C9G-E65P +Downloaded DOI M52Y-WV8A +Downloaded DOI Y4SQ-7JZM +Downloaded DOI R6SJ-9MZC +Downloaded DOI Z7JF-V39E +Downloaded DOI TBSA-WA4W +Downloaded DOI XUMZ-RJJM +Downloaded DOI BW8T-EDHD +Downloaded DOI YGAB-N3CG +Downloaded DOI 8U7D-SRH8 +Downloaded DOI DYUR-WPDA +Downloaded DOI 8WZR-GQQ4 +Downloaded DOI 2A5U-KVS5 +Downloaded DOI ADFN-6WX9 +Downloaded DOI G9AZ-837S +Downloaded DOI GBQ4-MYEZ +Downloaded DOI SY4S-UNZG +Downloaded DOI C2FX-RSR5 +Downloaded DOI AAV4-CZR2 +Downloaded DOI WE5E-C33S +Downloaded DOI BTJ8-6JXB +Downloaded DOI SGKZ-SK42 +No data found, error 404 +No data found, error 404 +Downloaded DOI 4YBA-XHPY +Downloaded DOI 9X3C-NNGV +Downloaded DOI MNQD-ASD2 +Downloaded DOI HQM6-SR3E +Downloaded DOI 4Z67-DUBP +Downloaded DOI EP79-Q283 +Downloaded DOI HF8U-VASR +Downloaded DOI 4X3B-ZBEX +Downloaded DOI 8XY2-7UU9 +Downloaded DOI WD4M-YKMX +Downloaded DOI GN2K-EYFK +Downloaded DOI QV5N-3Q9F +No data found, error 404 +Downloaded DOI VU5Y-4R5G +Downloaded DOI BF87-DN9P +Downloaded DOI EYWV-KE8H +No data found, error 404 +Downloaded DOI 6JPJ-BXVR +Downloaded DOI CJJQ-PARK +Downloaded DOI CAXJ-24F7 +Downloaded DOI FEV6-4A3Q +Downloaded DOI 73WU-VU4W +No data found, error 404 +Downloaded DOI YC8V-K5GX +Downloaded DOI 9GU8-5QVY +No data found, error 404 +Downloaded DOI JBX4-PXC7 +Downloaded DOI BWHF-TU94 +Downloaded DOI JCST-7T9A +Downloaded DOI NRKT-8JKX +Downloaded DOI B245-R2V8 +Downloaded DOI DD3N-EJ3A +Downloaded DOI GVWN-2NP7 +Downloaded DOI GFA7-Q6N6 +Downloaded DOI XHMT-HFWW +Downloaded DOI 2M74-SR87 +Downloaded DOI 5SND-CJQK +Downloaded DOI F7FA-DHUR +Downloaded DOI SCP7-6DWX +Downloaded DOI HRSN-PV3E +Downloaded DOI NQN4-84E9 +Downloaded DOI 9C8E-5TCB +Downloaded DOI EU67-S4U7 +Downloaded DOI 2QMD-RDVB +Downloaded DOI V2Z2-C7ZM +Downloaded DOI Z67B-W6NA +Downloaded DOI BMS8-RFFS +Downloaded DOI 2YXE-XYP9 +Downloaded DOI CYEF-T5E9 +Downloaded DOI 8M2F-R8BT +Downloaded DOI 7935-SYE5 +Downloaded DOI B2BJ-9HVP +Downloaded DOI PNMA-XCWM +Downloaded DOI V72G-UN5F +Downloaded DOI 5WMJ-RW6B +Downloaded DOI VSYC-AKD9 +Downloaded DOI 7ARR-B7K5 +Downloaded DOI HDS8-37KY +Downloaded DOI WC4R-7YMM +Downloaded DOI WA37-ZSCQ +Downloaded DOI 72P8-6QAU +Downloaded DOI N8B7-DT9W +Downloaded DOI G3H7-6HUX +Downloaded DOI 8P6H-DYVR +Downloaded DOI 4D8C-4PFR +Downloaded DOI AUQF-4ZQA +Downloaded DOI 7AMW-ZDZ6 +Downloaded DOI KVWP-TVKR +Downloaded DOI 438E-R6N9 +Downloaded DOI 45QG-BMR6 +No data found, error 404 +Downloaded DOI CGC8-98AP +Downloaded DOI NV43-TJN9 +Downloaded DOI 95DK-26ZW +Downloaded DOI VSQ2-FVF5 +Downloaded DOI FXJ2-X3ZN +Downloaded DOI MPHZ-WUSY +Downloaded DOI RN74-CV7X +Downloaded DOI 6BG3-UGD4 +Downloaded DOI W7MZ-R4B3 +Downloaded DOI 6DBE-WU75 +Downloaded DOI F88P-MTZ2 +Downloaded DOI QH4U-FGR5 +Downloaded DOI 34E6-Q4SN +Downloaded DOI JK4E-M4W3 +Downloaded DOI JU9K-BYEB +No data found, error 404 +No data found, error 404 +Downloaded DOI 66W5-MVRH +Downloaded DOI 82SS-VMKB +Downloaded DOI Y4JU-89NK +No data found, error 404 +Downloaded DOI VCBK-YH26 +Downloaded DOI CEU4-C7EQ +Downloaded DOI 4MDY-38N8 +Downloaded DOI ZTX7-ND8K +Downloaded DOI EQ4T-TX5E +Downloaded DOI FV4C-58QC +Downloaded DOI 2R4F-TKGC +Downloaded DOI Q8Q7-KPGD +Downloaded DOI YCRP-JDHN +Downloaded DOI F443-8Y4V +Downloaded DOI FJ2G-49JM +Downloaded DOI BCQ5-DZK3 +Downloaded DOI 5D7U-QAQW +Downloaded DOI CDVG-UVTQ +Downloaded DOI BGX9-DJ8C +Downloaded DOI ETME-XJSP +Downloaded DOI JFUC-G3NR +Downloaded DOI EXSZ-C5U7 +Downloaded DOI 4J2Y-2YT2 +Downloaded DOI J72R-WRRV +Downloaded DOI R4TU-76NA +Downloaded DOI WJFW-4VWX +Downloaded DOI WH5Q-4G95 +No data found, error 404 +Downloaded DOI ASYX-JUMP +Downloaded DOI TB9Q-HSVG +No data found, error 404 +Downloaded DOI MSWF-W2WQ +Downloaded DOI JKRD-85R6 +Downloaded DOI Y3PZ-U6B4 +No data found, error 404 +Downloaded DOI MWP4-MTCA +Downloaded DOI GA5X-N6FG +Downloaded DOI GW5P-GZHY +No data found, error 404 +Downloaded DOI EKAK-3N5X +Downloaded DOI YM4V-M4FG +Downloaded DOI 2JNR-W9UP +Downloaded DOI DKSV-A6VS +Downloaded DOI 63UY-GT9V +Downloaded DOI 3QPW-HRWU +Downloaded DOI KJMR-B9NE +Downloaded DOI JGFT-75WY +Downloaded DOI CMN7-BFJ9 +Downloaded DOI FWP7-9BQY +No data found, error 404 +Downloaded DOI KTJ6-UF5Y +Downloaded DOI NAB8-32W7 +Downloaded DOI RFM4-CYKF +Downloaded DOI WJME-QPXQ +Downloaded DOI F27F-A39F +Downloaded DOI X9VD-QCGM +Downloaded DOI YQ7S-E3MF +Downloaded DOI HGEK-AU3M +Downloaded DOI R6WD-MSRK +Downloaded DOI V2RC-WTNC +Downloaded DOI MGVV-YQDN +No data found, error 404 +No data found, error 404 +Downloaded DOI GHY5-SRAA +Downloaded DOI XAFN-SN5N +Downloaded DOI M78Y-X9ZN +Downloaded DOI 6B3G-ECMC +Downloaded DOI EM8Z-9H3Y +Downloaded DOI MNGD-A9YU +Downloaded DOI TRVK-Z3EV +No data found, error 404 +Downloaded DOI 5BGR-BGNU +Downloaded DOI JAQU-HYSF +Downloaded DOI 795Y-97CT +Downloaded DOI YE6P-FYP3 +Downloaded DOI SC3E-NETG +Downloaded DOI PUB2-5Y7F +Downloaded DOI FRNJ-6ZKB +Downloaded DOI XDN6-P6SS +No data found, error 404 +Downloaded DOI 5XZH-VD9D +Downloaded DOI HQPT-FA2Q +Downloaded DOI R64W-9H4J +Downloaded DOI 6XXC-V723 +Downloaded DOI 78E2-R87M +Downloaded DOI E7ZV-92G3 +Downloaded DOI WAEV-NACA +Downloaded DOI 93QJ-8BWH +Downloaded DOI AC8J-JM8F +Downloaded DOI PPMA-NJPS +Downloaded DOI 6GVS-DWDW +Downloaded DOI K6SW-2SDW +Downloaded DOI YXPT-33G8 +Downloaded DOI HF4S-A47P +Downloaded DOI TN4A-EWAR +Downloaded DOI YDKR-YVRV +Downloaded DOI 8K8H-RHZN +Downloaded DOI Y5S7-H2RP +Downloaded DOI YHGD-YGMT +No data found, error 404 +Downloaded DOI P3SQ-RK2W +Downloaded DOI ZXR7-CA76 +No data found, error 404 +Downloaded DOI 4BWS-WXRC +Downloaded DOI 8YZD-S5QS +Downloaded DOI HZ8E-EVSE +Downloaded DOI Q97V-2PBA +Downloaded DOI 82ZU-2GNK +Downloaded DOI M974-Z53X +Downloaded DOI X9P4-7N5J +Downloaded DOI EUKJ-T9DR +Downloaded DOI K9V7-U5J7 +Downloaded DOI SQ72-96TC +Downloaded DOI CTMU-XEE5 +Downloaded DOI 87CQ-RWDR +Downloaded DOI JDEA-MRVB +Downloaded DOI PKSQ-R99Q +Downloaded DOI C9A3-FJDQ +Downloaded DOI V9GN-4538 +Downloaded DOI 29ZM-MG7H +Downloaded DOI MJFX-D8CJ +Downloaded DOI FYM5-AT3R +Downloaded DOI 8ZVU-KDTS +Downloaded DOI MJK2-Q9GH +Downloaded DOI CXZZ-WYF2 +No data found, error 404 +Downloaded DOI PQH8-X3ZR +Downloaded DOI YHF9-SCBH +Downloaded DOI A697-S2SV +Downloaded DOI FA99-FPEV +No data found, error 404 +Downloaded DOI P7JJ-9SYM +Downloaded DOI JY23-QZNN +Downloaded DOI P45H-SFWA +Downloaded DOI 8MHT-WT75 +Downloaded DOI 6CRU-UVDX +Downloaded DOI MPU8-UYUC +Downloaded DOI 6QKP-VAW6 +Downloaded DOI GYHN-3U45 +Downloaded DOI 4ERE-XDTV +Downloaded DOI PZKP-VVGV +Downloaded DOI SXAX-J57E +Downloaded DOI A5UT-TYX7 +Downloaded DOI NK9G-E8UN +Downloaded DOI 255F-PKJG +Downloaded DOI ARA4-A6P6 +Downloaded DOI W2MF-ARAD +No data found, error 404 +Downloaded DOI T723-W42F +No data found, error 404 +Downloaded DOI 5GWZ-TG7J +No data found, error 404 +Downloaded DOI BFFP-MCFW +Downloaded DOI 4JXX-D3RE +Downloaded DOI 3FWF-GQVS +Downloaded DOI D2JZ-6GV5 +Downloaded DOI MWVT-XT9U +Downloaded DOI XJ8V-6CBK +Downloaded DOI 3XYT-MQ4Q +Downloaded DOI HVPC-EJ7R +Downloaded DOI YCCW-F9CA +Downloaded DOI QC2T-UT7A +Downloaded DOI 8327-66ZA +Downloaded DOI YKFQ-ZBEA +Downloaded DOI MH87-ZZVF +No data found, error 404 +Downloaded DOI V6MB-526X +No data found, error 404 +Downloaded DOI 7N9K-VGFH +Downloaded DOI JTMT-FZEG +Downloaded DOI 2FD9-GBE2 +Downloaded DOI VESQ-WRJB +Downloaded DOI GVAY-ZR37 +Downloaded DOI 52Q8-UAFD +Downloaded DOI PQ9P-JRS9 +Downloaded DOI KME4-Q4ND +No data found, error 404 +Downloaded DOI SUWK-ESU5 +Downloaded DOI QUEF-43FC +Downloaded DOI KZHK-G8J6 +Downloaded DOI V6R7-UUZN +Downloaded DOI B27G-M5NB +Downloaded DOI PDF5-JWK5 +Downloaded DOI 8BDN-H5JK +Downloaded DOI NUJ4-94W3 +Downloaded DOI ZW38-D89D +No data found, error 404 +Downloaded DOI TQUZ-DV6J +Downloaded DOI PZNG-P53H +No data found, error 404 +Downloaded DOI JDAE-QNN6 +Downloaded DOI UXFC-646D +Downloaded DOI MCJM-8D9B +Downloaded DOI QYRV-WZVC +Downloaded DOI NK5C-S7VE +Downloaded DOI NYEN-XW49 +Downloaded DOI HGDD-KZPD +Downloaded DOI JZCB-KCBF +No data found, error 404 +Downloaded DOI AMMS-EHPB +Downloaded DOI UARC-YNVW +Downloaded DOI XCTZ-DMH6 +Downloaded DOI FNFP-3N3J +Downloaded DOI 9NXQ-HSJ9 +Downloaded DOI 65BH-CMNV +Downloaded DOI PZ9V-HKP4 +Downloaded DOI UWCS-W3KH +Downloaded DOI 2RRG-58TP +No data found, error 404 +Downloaded DOI 9XVX-W7A5 +Downloaded DOI 9G9Q-T3NC +No data found, error 404 +Downloaded DOI ZSHW-2ABD +No data found, error 404 +Downloaded DOI SFS3-BWZR +No data found, error 404 +Downloaded DOI 7U8Y-CPB6 +Downloaded DOI JTNH-9W9Z +Downloaded DOI M87Q-SVF3 +Downloaded DOI TT34-S6WC +Downloaded DOI 84DJ-W35D +Downloaded DOI 4ZSD-BGDT +Downloaded DOI 42TM-7GMQ +Downloaded DOI 3QVP-SXJU +Downloaded DOI 8RYK-GN6C +No data found, error 404 +Downloaded DOI W2T4-MK24 +Downloaded DOI DJCH-VNXA +Downloaded DOI 7S6P-G344 +Downloaded DOI JJDR-URVC +Downloaded DOI 58H9-EYBC +Downloaded DOI 9Q5F-EJYH +Downloaded DOI 5B8Z-QE4Z +Downloaded DOI CF4X-E4B9 +Downloaded DOI 92ZU-Y9EN +Downloaded DOI A379-4E8N +Downloaded DOI DCJR-ZZZU +Downloaded DOI 7EX5-EEMP +Downloaded DOI JATD-87F9 +Downloaded DOI MDYD-QPPX +Downloaded DOI ZYPH-BGQ8 +Downloaded DOI B6TW-J9S2 +Downloaded DOI 4BMR-Z699 +Downloaded DOI ETF5-HC73 +Downloaded DOI YQ74-QDZ3 +Downloaded DOI XR6C-9PS3 +Downloaded DOI 3K7H-2VYS +Downloaded DOI 9FKB-GRFX +Downloaded DOI F85P-YJ6P +Downloaded DOI SATS-E2QM +Downloaded DOI 3D84-FSAE +Downloaded DOI 7EUT-DG5A +Downloaded DOI KH5F-4UFA +Downloaded DOI HXEF-59E2 +Downloaded DOI K58S-B9SZ +Downloaded DOI RY9D-9HN5 +Downloaded DOI FBEV-7NEM +No data found, error 404 +No data found, error 404 +Downloaded DOI WSPY-2YCQ +Downloaded DOI 4MZZ-2SDA +Downloaded DOI CW9B-6WPF +Downloaded DOI A3UC-GJW2 +Downloaded DOI P53J-2CR8 +Downloaded DOI KSKS-E242 +Downloaded DOI PJXA-7JN8 +Downloaded DOI FBCK-8B3D +Downloaded DOI SXZA-26F2 +Downloaded DOI ERGJ-WVYV +Downloaded DOI 3ABW-4568 +Downloaded DOI AV5Y-EWE4 +Downloaded DOI A3V5-A8AM +Downloaded DOI XUBN-HQ98 +Downloaded DOI ZDN3-5MCX +Downloaded DOI KXX2-FQ4Q +No data found, error 404 +Downloaded DOI G35P-QJVP +Downloaded DOI JB7H-24QW +No data found, error 404 +Downloaded DOI Z9D6-YEK3 +Downloaded DOI QTUC-CHFZ +Downloaded DOI UZ7W-MK6V +Downloaded DOI YZJ2-82RA +Downloaded DOI NVCW-3FP2 +Downloaded DOI 9Q8V-W4TU +Downloaded DOI TFHG-BPWZ +Downloaded DOI 2XMH-GMYW +Downloaded DOI CMRX-6688 +Downloaded DOI 2K5C-BSCK +Downloaded DOI 5YH9-7KYU +Downloaded DOI NS6H-3MDK +Downloaded DOI NDGX-8SGR +Downloaded DOI NRGU-AZNE +Downloaded DOI XS2X-UTUT +Downloaded DOI EG2F-FXKQ +Downloaded DOI CK8K-R5RJ +Downloaded DOI BBUT-QKBX +Downloaded DOI GYGX-4JTU +Downloaded DOI CA2S-3DVA +Downloaded DOI KTXV-XZY3 +Downloaded DOI FD4W-65XH +Downloaded DOI BEUB-JC9V +Downloaded DOI TH3S-HCA8 +Downloaded DOI MEJT-9STU +Downloaded DOI N3PU-7ASG +Downloaded DOI UCHS-QKZT +No data found, error 404 +Downloaded DOI PZKN-HV53 +Downloaded DOI EA79-XE79 +Downloaded DOI FJZ5-DPDW +Downloaded DOI RSPZ-QFJY +Downloaded DOI BSVG-S7RP +Downloaded DOI ZHT3-QNGA +Downloaded DOI HA6C-UWQG +Downloaded DOI W6JW-DQKC +Downloaded DOI 8UJD-KBBX +Downloaded DOI U3DM-Y83K +Downloaded DOI S4HZ-8TVQ +Downloaded DOI KBY8-7MXS +No data found, error 404 +Downloaded DOI XX6T-4YEC +Downloaded DOI QN2J-CX36 +Downloaded DOI 4RG4-97YH +Downloaded DOI NE9A-FP37 +Downloaded DOI 95N2-T3UU +Downloaded DOI PPGB-3ERU +Downloaded DOI DTQD-RM5Z +Downloaded DOI X7SV-PSCV +Downloaded DOI 2RFD-UJFE +Downloaded DOI Q5U6-C9JQ +Downloaded DOI GTPN-AQYH +No data found, error 404 +Downloaded DOI X7K5-5RCT +No data found, error 404 +Downloaded DOI KAX6-3FZW +Downloaded DOI N35S-DCP2 +Downloaded DOI UPC7-HV8S +Downloaded DOI F33V-MFQM +Downloaded DOI Q72N-FF2Q +Downloaded DOI QNVN-RZ5X +Downloaded DOI 7W23-Q4ZR +Downloaded DOI G5Y4-EZKR +No data found, error 404 +Downloaded DOI 532B-8S4K +No data found, error 404 +Downloaded DOI PKN4-85VF +Downloaded DOI PEAN-489T +Downloaded DOI QSS6-6CRV +No data found, error 404 +Downloaded DOI 325P-F7JH +Downloaded DOI BY5R-C5US +Downloaded DOI A7Q9-DJSS +Downloaded DOI C8HG-8SBG +Downloaded DOI JJDJ-KP6M +Downloaded DOI Y573-JAG9 +Downloaded DOI NK8Q-SBNR +Downloaded DOI GC4Y-KHR2 +Downloaded DOI M7HZ-HVWC +Downloaded DOI WQ6E-3E7K +Downloaded DOI BTTN-99CG +No data found, error 404 +No data found, error 404 +Downloaded DOI APP5-JNBT +Downloaded DOI QZA4-GX9F +Downloaded DOI FVDN-QNG5 +Downloaded DOI KDZG-4SCK +Downloaded DOI 22XM-NV7Y +Downloaded DOI GTVJ-HEXR +Downloaded DOI Y5CW-F779 +Downloaded DOI FM4Q-XKPG +Downloaded DOI U88Y-G2HC +Downloaded DOI WNTV-6G7P +Downloaded DOI 75B9-E2TM +Downloaded DOI 89NW-X9RE +No data found, error 404 +Downloaded DOI DGMP-YAHF +Downloaded DOI 3CGV-K7NN +Downloaded DOI HZQ7-FRHM +No data found, error 404 +Downloaded DOI 28JV-JZRS +No data found, error 404 +Downloaded DOI NK8F-3FKK +Downloaded DOI EQ6T-FKB9 +Downloaded DOI TAK5-9MKX +Downloaded DOI QENJ-TMWE +Downloaded DOI APDS-UJX3 +Downloaded DOI N2SD-8699 +Downloaded DOI 98UY-Q7K6 +Downloaded DOI G9CT-4KWD +Downloaded DOI KMHZ-ZWKU +No data found, error 404 +Downloaded DOI 57MU-PCDK +Downloaded DOI 44SM-2Z3Q +Downloaded DOI J8KU-ZJVF +Downloaded DOI MVAS-YR2P +Downloaded DOI FSCN-NJ87 +Downloaded DOI PPS9-KDQB +Downloaded DOI 656E-CJ6R +Downloaded DOI F3AX-VUF7 +Downloaded DOI 8AXT-VFY9 +Downloaded DOI Z73V-APRX +Downloaded DOI PA6W-4N68 +Downloaded DOI 36NX-WJ49 +Downloaded DOI B9MV-PJJT +Downloaded DOI 3R6X-2KRD +Downloaded DOI XT9F-PHZT +Downloaded DOI U9A5-ZM5V +Downloaded DOI UX4V-C4UF +Downloaded DOI GJE9-K9CN +Downloaded DOI RKYA-RXAS +Downloaded DOI GCHB-7C52 +Downloaded DOI 84YZ-P49B +Downloaded DOI 8P32-SHW9 +Downloaded DOI P9TY-WAYH +Downloaded DOI DEGX-2JDM +Downloaded DOI YPZ5-6V4V +Downloaded DOI W9H9-GZ9B +Downloaded DOI N4UU-KYWA +Downloaded DOI K7GX-5ZRX +Downloaded DOI 4WHN-R5UU +Downloaded DOI ZNPT-XCZN +Downloaded DOI KR9Z-K6A2 +Downloaded DOI XFEE-U6PK +Downloaded DOI VUJ6-E8CG +Downloaded DOI SU9A-PZXN +Downloaded DOI YECT-3MM5 +Downloaded DOI CA3T-CX2H +Downloaded DOI Z352-6VKD +Downloaded DOI 3V8A-NWQF +Downloaded DOI 32TT-Z48H +Downloaded DOI AVBV-B7S5 +Downloaded DOI J5JS-9H6D +Downloaded DOI URR9-5YZ8 +Downloaded DOI WY36-5PPT +Downloaded DOI D4V8-EFK7 +No data found, error 404 +Downloaded DOI S3U4-8ZB9 +Downloaded DOI 8VF2-4D8G +Downloaded DOI Y9U3-HRY4 +Downloaded DOI YH3B-QTHT +Downloaded DOI XBDH-YGRM +Downloaded DOI WAZ5-EHRG +Downloaded DOI MV6J-F6P9 +Downloaded DOI QMVA-D7NH +Downloaded DOI C9HM-CUFE +Downloaded DOI R4B9-FXDD +Downloaded DOI 6HHN-Y2YT +Downloaded DOI 9EEJ-SKKA +Downloaded DOI DVKM-G4VP +Downloaded DOI 5KSU-RU67 +No data found, error 404 +Downloaded DOI QHXS-H4JG +Downloaded DOI EYYA-5GJW +Downloaded DOI GEZR-U3K7 +Downloaded DOI BRMS-9TE7 +Downloaded DOI FMU5-QYZR +No data found, error 404 +Downloaded DOI 9ZRW-NZHG +Downloaded DOI RGHD-ZJ7B +Downloaded DOI K3U2-Z2GW +No data found, error 404 +Downloaded DOI 6HW8-Z55E +No data found, error 404 +Downloaded DOI 5JUB-Q4TZ +Downloaded DOI BD5B-8HTS +Downloaded DOI 5ZAW-3Z7Z +Downloaded DOI H2N8-G4T5 +No data found, error 404 +Downloaded DOI PZQ3-VW5W +Downloaded DOI 4B46-F7JU +Downloaded DOI 9K2K-TBV2 +Downloaded DOI ZKKK-7QCC +Downloaded DOI GA5V-GJKE +Downloaded DOI CWJX-ARUD +Downloaded DOI 5DJK-7CWC +Downloaded DOI BP7A-TZZU +Downloaded DOI Y6JF-QBH6 +Downloaded DOI YETD-WS9A +Downloaded DOI 9WH8-98RF +Downloaded DOI MC4W-3M66 +Downloaded DOI XMUD-3D8U +No data found, error 404 +Downloaded DOI C6FG-E8S8 +No data found, error 404 +Downloaded DOI KHYE-NSZX +Downloaded DOI W52Z-GYHU +Downloaded DOI REYM-E4VZ +Downloaded DOI X3T6-6CGR +Downloaded DOI PC99-GAMC +Downloaded DOI 6MVX-2XBF +Downloaded DOI AW5B-33KJ +Downloaded DOI GTEW-MPZA +Downloaded DOI QUJH-SDNH +Downloaded DOI DAZP-QKDR +Downloaded DOI X6J2-PZAN +Downloaded DOI XR74-YX67 +Downloaded DOI KGD4-8Y9Q +Downloaded DOI NSDG-ZDUE +Downloaded DOI AZHJ-6NKR +Downloaded DOI JDPK-AUG2 +No data found, error 404 +Downloaded DOI Z2BG-JQKR +Downloaded DOI PRHD-ARG7 +Downloaded DOI VZK9-296T +Downloaded DOI 6B5Y-7UXE +Downloaded DOI WABC-2Y4T +Downloaded DOI MX5E-E73G +Downloaded DOI MS2Z-WAXA +Downloaded DOI NGEY-VVTB +Downloaded DOI 7R53-Y5XN +Downloaded DOI XHKZ-3X4N +Downloaded DOI AFUD-4C5J +Downloaded DOI DZVG-E96P +Downloaded DOI WWD6-4G4R +Downloaded DOI YHDZ-GTP4 +No data found, error 404 +Downloaded DOI B292-J9TH +Downloaded DOI DTGH-YNP2 +Downloaded DOI F9Z6-S38H +Downloaded DOI QVN6-98RR +Downloaded DOI 4SAB-KBD8 +Downloaded DOI 5NU7-RXWJ +Downloaded DOI MQUT-RPN2 +Downloaded DOI K4JY-WD66 +Downloaded DOI BM7K-W9S6 +No data found, error 404 +Downloaded DOI GF2G-7F6N +Downloaded DOI P3NZ-JR85 +Downloaded DOI B8ZN-5CH9 +Downloaded DOI 4BUN-7XAR +Downloaded DOI RN94-TZUG +Downloaded DOI GMA7-7FCQ +Downloaded DOI V2NS-RRDW +Downloaded DOI D6ST-JSVE +Downloaded DOI 9MTT-2V5Q +Downloaded DOI H98S-JUAT +Downloaded DOI 7S99-GA9S +Downloaded DOI CSEK-GUBS +No data found, error 404 +Downloaded DOI SEBZ-EAMV +Downloaded DOI NFUQ-FGHZ +Downloaded DOI 5SRD-PHPV +Downloaded DOI ED9V-3B69 +Downloaded DOI R6UQ-FG2R +Downloaded DOI UJJ2-AWSH +Downloaded DOI B7NC-9EJA +Downloaded DOI SBJP-RX5M +No data found, error 404 +Downloaded DOI 7MTV-YRX7 +Downloaded DOI VRKP-7BJ2 +Downloaded DOI RPZH-P22R +Downloaded DOI XYVX-A6WT +No data found, error 404 +No data found, error 404 +Downloaded DOI YK86-XM93 +Downloaded DOI MN4A-A8DG +Downloaded DOI 9J46-65E3 +Downloaded DOI A4J8-YK9D +Downloaded DOI GU67-4T84 +Downloaded DOI KUAW-2T38 +No data found, error 404 +No data found, error 404 +Downloaded DOI XT4T-HAC8 +Downloaded DOI K4U2-UE7Q +Downloaded DOI CVPJ-DQN3 +Downloaded DOI 3HT5-N8SH +Downloaded DOI G3MG-P35C +Downloaded DOI GTKX-73MW +Downloaded DOI V9UK-28UD +Downloaded DOI 7SGM-6GDF +Downloaded DOI YD4N-8EPX +No data found, error 404 +Downloaded DOI E2H3-BSBT +Downloaded DOI AEDE-DCAJ +Downloaded DOI 7DCY-K3JJ +Downloaded DOI 9BE3-Z3ZN +No data found, error 404 +Downloaded DOI 7NE7-9BHG +Downloaded DOI HZ59-EB6K +Downloaded DOI TENY-KP5Y +No data found, error 404 +Downloaded DOI 7HW5-TQVF +Downloaded DOI F6MJ-9DRY +Downloaded DOI J3QK-SMT8 +Downloaded DOI Z2EW-8DY7 +Downloaded DOI SZDE-XD7B +Downloaded DOI Y5HE-9CGJ +Downloaded DOI UVQU-TQEN +Downloaded DOI NSY6-WTT6 +Downloaded DOI RJA9-9HXT +Downloaded DOI 6V8R-8YDC +Downloaded DOI H55U-5N8F +Downloaded DOI EUMC-N3RT +Downloaded DOI X4UY-BP53 +Downloaded DOI BFXS-Z8U3 +Downloaded DOI QXR3-W3JQ +Downloaded DOI MWXP-SZ3R +Downloaded DOI DKSM-23N8 +Downloaded DOI JWJ8-KYCX +Downloaded DOI GRMX-U69B +Downloaded DOI 74RG-YCU6 +Downloaded DOI 883K-WKKJ +No data found, error 404 +No data found, error 404 +Downloaded DOI K4BD-7SR8 +Downloaded DOI NTTZ-HVVG +Downloaded DOI GAF3-CRJR +No data found, error 404 +Downloaded DOI WAT8-WPRJ +Downloaded DOI GJZ2-ENRX +No data found, error 404 +Downloaded DOI BKZK-3BQ6 +No data found, error 404 +Downloaded DOI 8AE3-A84D +Downloaded DOI H8YC-FSSD +Downloaded DOI KNE3-FABD +Downloaded DOI 5E2C-M2KD +Downloaded DOI CVJC-3TK9 +Downloaded DOI 7FY8-3RAD +Downloaded DOI M9BT-99SJ +Downloaded DOI MT3Q-RFB9 +Downloaded DOI TT86-3S2Y +Downloaded DOI 3GFP-6FNS +Downloaded DOI WE4D-3WME +Downloaded DOI 8V36-FEXN +Downloaded DOI PWTG-B2BZ +Downloaded DOI AEGW-X98A +Downloaded DOI QQVP-9XBR +No data found, error 404 +Downloaded DOI 8F8E-DR9J +Downloaded DOI VUTF-Y8QH +Downloaded DOI 5G5T-ZZF7 +Downloaded DOI 2CN3-TW35 +Downloaded DOI VGJ3-PBU6 +Downloaded DOI JGFV-WV28 +Downloaded DOI CPHG-6UUG +Downloaded DOI A7JX-SX7M +Downloaded DOI FJU2-ES4G +Downloaded DOI 5VYX-S79R +No data found, error 404 +Downloaded DOI FMXP-6ZFG +Downloaded DOI APBR-V8BC +Downloaded DOI YKFB-Z78J +Downloaded DOI G7V6-DHQP +Downloaded DOI PJ2M-GKWX +Downloaded DOI HT8C-ZRTV +Downloaded DOI MQX7-ARN2 +Downloaded DOI HZUA-CJMF +Downloaded DOI UZQJ-RXXA +Downloaded DOI T24S-62U2 +Downloaded DOI BBMN-X8RT +Downloaded DOI NU4T-7RUJ +Downloaded DOI 64DX-D4GE +Downloaded DOI R3M7-HSXH +Downloaded DOI 38TC-93QD +Downloaded DOI MCZB-5VDD +Downloaded DOI 9THC-WARD +Downloaded DOI 2MS5-JKJG +Downloaded DOI WHZY-RA9U +Downloaded DOI USXV-3CM3 +Downloaded DOI 2SP2-XU7D +Downloaded DOI HQXB-895A +Downloaded DOI EYKR-5XQD +Downloaded DOI M2SH-KA9C +Downloaded DOI 59ZW-HJ6J +Downloaded DOI AFH9-GQ7C +Downloaded DOI ZJFD-EH72 +Downloaded DOI R4YT-RTGP +Downloaded DOI WS62-TKH6 +Downloaded DOI FQZG-9TCP +Downloaded DOI XH5G-E6J5 +Downloaded DOI T24H-B26R +Downloaded DOI W6PJ-SFBS +Downloaded DOI DH4N-NZKT +Downloaded DOI QM6D-PYGJ +Downloaded DOI U57J-JDDS +Downloaded DOI VVZA-82X8 +Downloaded DOI 34MH-6DT9 +Downloaded DOI EN6P-83F2 +Downloaded DOI 9R35-TDN6 +Downloaded DOI 2X7A-HWD5 +Downloaded DOI ZV7Y-FAUG +Downloaded DOI DNQM-XA9J +Downloaded DOI GZZQ-A8JR +No data found, error 404 +Downloaded DOI 4PDE-UHHA +Downloaded DOI R3BR-WS4E +Downloaded DOI WEQT-5ZST +Downloaded DOI SXZW-BKCB +Downloaded DOI HGGU-6EEE +Downloaded DOI YWY6-BG3K +Downloaded DOI 77ZH-6XDA +Downloaded DOI 499U-M7AR +Downloaded DOI SB58-YRR4 +Downloaded DOI 7PCV-V3KF +Downloaded DOI B2VT-PDGN +Downloaded DOI 7EMW-HGS5 +Downloaded DOI UMMM-7J4P +Downloaded DOI ADXR-4RK5 +Downloaded DOI EPVK-SVKN +Downloaded DOI T3QN-9DBZ +Downloaded DOI AKD5-R82V +Downloaded DOI 4XU6-SRPH +Downloaded DOI XDCE-ZJTS +Downloaded DOI 3XRV-JHCA +Downloaded DOI YUG7-RN5Y +Downloaded DOI MGCR-MSEM +No data found, error 404 +Downloaded DOI QUU6-89MS +Downloaded DOI N47K-SDR6 +Downloaded DOI AVKY-EM6E +Downloaded DOI 6CNH-23PX +Downloaded DOI MZS2-3WFB +Downloaded DOI 8SPY-A5VA +Downloaded DOI FK2Y-8CQR +Downloaded DOI VTPE-RWY9 +Downloaded DOI GNP2-FXSU +Downloaded DOI MNCF-S2KB +Downloaded DOI BM4B-RQJ9 +Downloaded DOI BBAK-8Z7C +No data found, error 404 +Downloaded DOI ESXV-RZ7U +No data found, error 404 +Downloaded DOI 5UH4-NBUH +Downloaded DOI E5YH-WEBE +Downloaded DOI S8T2-AZCM +Downloaded DOI U8FQ-VNP7 +Downloaded DOI UJ7P-6B6M +Downloaded DOI R64M-B8MD +Downloaded DOI TTDP-7Z4J +Downloaded DOI HRTP-NVEV +Downloaded DOI 2W58-K5KQ +Downloaded DOI EMTA-M39M +Downloaded DOI JVGZ-K49D +No data found, error 404 +No data found, error 404 +Downloaded DOI DW9W-6AC3 +Downloaded DOI 77BY-Y6JM +Downloaded DOI X5W2-TUGR +Downloaded DOI 68M6-DY3W +No data found, error 404 +Downloaded DOI 7UUS-H3DK +Downloaded DOI APKU-2YDC +Downloaded DOI 7JGZ-WS7C +Downloaded DOI EWFE-6HGN +Downloaded DOI SFEF-DMKB +No data found, error 404 +Downloaded DOI WESG-QZSG +Downloaded DOI HM65-BBRJ +Downloaded DOI WQQZ-ZQCU +Downloaded DOI 7FG3-RSA7 +Downloaded DOI QPHY-KBR3 +Downloaded DOI FAAJ-Z6W9 +Downloaded DOI FJFV-HYRX +Downloaded DOI PRBG-3DQ8 +Downloaded DOI 7GKQ-H9GR +Downloaded DOI KGXX-FC74 +Downloaded DOI HQTJ-6U9N +Downloaded DOI 3G4T-3GMS +Downloaded DOI 6MUR-U7VY +Downloaded DOI 69ZR-T92D +Downloaded DOI YTWF-FAM7 +Downloaded DOI 9E5M-QCEA +Downloaded DOI JCKU-VHTJ +Downloaded DOI 7PXR-C2N4 +Downloaded DOI DBD2-7ZAX +Downloaded DOI VQFQ-EVAH +Downloaded DOI Z36F-ME7D +Downloaded DOI 8ZHJ-3Q6C +Downloaded DOI E2YD-PANF +Downloaded DOI HU24-BB2A +Downloaded DOI UM5Q-4A3K +Downloaded DOI 7WFS-PQ9C +Downloaded DOI WVC7-YFS6 +Downloaded DOI KG3X-F4PX +Downloaded DOI UR7T-AGST +Downloaded DOI SVF8-H9BR +Downloaded DOI 83W2-V99X +Downloaded DOI RDUF-2P4V +Downloaded DOI PGAW-NFJA +Downloaded DOI TQZS-84AP +Downloaded DOI TC7S-XTES +Downloaded DOI Y7A2-56UZ +No data found, error 404 +Downloaded DOI 2PZZ-4JKZ +Downloaded DOI 2MDE-KMM6 +Downloaded DOI 8QFG-AR9N +Downloaded DOI 4Z9D-XR7G +Downloaded DOI TVXJ-AWPA +Downloaded DOI P38D-3ZJG +Downloaded DOI EDMK-HTQ7 +Downloaded DOI W8A2-ZBEY +Downloaded DOI GF2N-99M3 +Downloaded DOI ZZCW-8UZE +Downloaded DOI X4CZ-8CQ7 +Downloaded DOI TBBY-66GR +Downloaded DOI 42BE-5BDV +Downloaded DOI JQCN-4NN9 +Downloaded DOI Q7DQ-K6DV +Downloaded DOI DM2K-U8VZ +Downloaded DOI 5J7Y-XJ8A +Downloaded DOI Y5YG-JWM9 +Downloaded DOI PXSJ-U6GB +Downloaded DOI BQ62-YJ3Z +Downloaded DOI 7UYK-4TP8 +Downloaded DOI GJAM-6ARN +Downloaded DOI P8KS-FV53 +Downloaded DOI XWD3-DM24 +Downloaded DOI PMGD-ZNF6 +Downloaded DOI 285B-AKYE +Downloaded DOI 4YW4-P3C2 +Downloaded DOI 9JAE-CW59 +Downloaded DOI B88G-TW7Z +Downloaded DOI E2DJ-EYBT +Downloaded DOI TTWP-4ZPJ +Downloaded DOI YQER-FKXG +Downloaded DOI 9XYJ-MZ96 +Downloaded DOI HP5K-T8WE +Downloaded DOI YJ74-FNJN +Downloaded DOI PA63-DHBS +Downloaded DOI AJQR-X7PP +No data found, error 404 +Downloaded DOI WV7B-VRBQ +Downloaded DOI 4VWV-KCHZ +Downloaded DOI 2VG2-J47V +Downloaded DOI GP5N-B3D4 +Downloaded DOI QM2A-2PHN +Downloaded DOI TKZX-2TDT +Downloaded DOI HJSG-488Z +No data found, error 404 +Downloaded DOI ZB83-RKCU +Downloaded DOI PWB2-Q7TH +Downloaded DOI U8YC-AD3P +No data found, error 404 +Downloaded DOI F8UA-RGPB +Downloaded DOI JJNR-K7JD +Downloaded DOI 62N9-BSSQ +Downloaded DOI 3K6Y-KFCS +Downloaded DOI YRJP-E9G3 +Downloaded DOI NFV8-QFW5 +Downloaded DOI JA26-324T +Downloaded DOI 4H6X-P6S6 +Downloaded DOI ZDBZ-B3BX +Downloaded DOI 4RWB-FPV6 +Downloaded DOI 6HM2-2RS3 +Downloaded DOI E4M7-8Z3T +Downloaded DOI QHQH-26YM +Downloaded DOI G69Z-DPRZ +Downloaded DOI NTK6-ERFU +Downloaded DOI P72C-CGZS +Downloaded DOI 8NG6-PF2T +Downloaded DOI 8STT-DJ9P +Downloaded DOI SUSW-U3YD +Downloaded DOI F24D-GY93 +Downloaded DOI 4ZKY-F69D +Downloaded DOI RGJ9-6TG7 +Downloaded DOI JWW2-K8HN +Downloaded DOI JRUZ-HNTG +Downloaded DOI NK7P-X6NA +Downloaded DOI VJWX-8ER3 +Downloaded DOI XSA9-MY5K +Downloaded DOI GCAR-FNGJ +Downloaded DOI 7RVM-QKNU +Downloaded DOI 786F-MX8N +Downloaded DOI RD6H-WQNW +Downloaded DOI 6DJN-JJZM +Downloaded DOI PQAF-DAKW +Downloaded DOI GT4X-H93S +Downloaded DOI 6FDK-GNRE +Downloaded DOI XFJ3-7BKD +No data found, error 404 +Downloaded DOI YP29-VKTU +Downloaded DOI CQXA-VDRP +Downloaded DOI XXQ3-ZWFE +Downloaded DOI WJKR-YWCZ +No data found, error 404 +Downloaded DOI UDCW-EM2Y +Downloaded DOI YKVB-343K +Downloaded DOI MU76-P9YU +Downloaded DOI GX34-EN4Q +Downloaded DOI GJ52-D9DH +Downloaded DOI EFYT-BSR6 +Downloaded DOI RP2Q-2CD2 +Downloaded DOI GY8V-RAVB +Downloaded DOI XP27-YDGT +Downloaded DOI PPNB-JP9S +Downloaded DOI 7NKA-A2UE +Downloaded DOI JDH3-XW6U +Downloaded DOI EHWV-RPJE +Downloaded DOI ABKR-3D74 +Downloaded DOI MERY-J8MY +Downloaded DOI KMEZ-FFHS +Downloaded DOI AVSN-DGAC +Downloaded DOI 7XKM-NRNJ +Downloaded DOI C57V-2QHU +Downloaded DOI F3AA-3EC4 +Downloaded DOI C9ZX-RZQZ +Downloaded DOI WY6H-ZCX5 +Downloaded DOI Y2HZ-ZNSW +Downloaded DOI RX4R-7J4E +Downloaded DOI K8GP-VZDN +Downloaded DOI GC42-9VCK +Downloaded DOI FCR2-BC6H +Downloaded DOI JAGP-4Y6Q +Downloaded DOI HGH9-Q6CE +No data found, error 404 +Downloaded DOI DDZC-TT9Q +Downloaded DOI VRAV-NDFV +Downloaded DOI EZPX-EE5B +Downloaded DOI DH6W-PAZY +Downloaded DOI 8Y2G-TBEE +Downloaded DOI BQPH-WRKZ +Downloaded DOI DMMF-576P +Downloaded DOI GAYS-7XCM +Downloaded DOI 9Q88-T6FN +No data found, error 404 +Downloaded DOI 5JQA-Y65J +Downloaded DOI V5F5-N5YQ +No data found, error 404 +Downloaded DOI R3WB-PTQ8 +Downloaded DOI HNXH-65GK +Downloaded DOI FAXJ-9W3J +Downloaded DOI JC4A-D3ZS +Downloaded DOI 7T9Y-SWQK +Downloaded DOI 2PE8-8FAN +Downloaded DOI VSFS-F27B +Downloaded DOI HVSC-5TJP +Downloaded DOI 8HME-Q327 +Downloaded DOI AZPV-BBFX +Downloaded DOI DM2C-45XC +Downloaded DOI TC3S-4N4Z +Downloaded DOI TURT-BGVR +Downloaded DOI KWND-4F9E +Downloaded DOI 5CAG-8B4U +No data found, error 404 +Downloaded DOI EWJA-BD7U +Downloaded DOI 25Y8-NUQJ +Downloaded DOI RQSD-XM7D +Downloaded DOI TTFF-TGVS +Downloaded DOI 58AP-TK4D +Downloaded DOI YUFR-2H2D +No data found, error 404 +No data found, error 404 +Downloaded DOI 2Q85-SVQG +Downloaded DOI G44J-7W34 +Downloaded DOI FU23-BP8D +Downloaded DOI 7YHQ-ZN5E +Downloaded DOI 7RHU-2CHP +Downloaded DOI S5BR-YT6V +Downloaded DOI W3KS-RBX9 +Downloaded DOI XFRW-SDR2 +No data found, error 404 +Downloaded DOI EEX6-M3AT +Downloaded DOI GN49-8RXA +Downloaded DOI GZ2V-EU8W +Downloaded DOI 82BZ-656Y +Downloaded DOI U8EZ-PDBQ +Downloaded DOI 2MQS-M3W8 +Downloaded DOI 4GVJ-VXT6 +Downloaded DOI RVNJ-CZH5 +Downloaded DOI ZW9V-AK9G +No data found, error 404 +Downloaded DOI NZQV-MVNF +No data found, error 404 +Downloaded DOI S4J2-JN4W +Downloaded DOI JDSA-KRYR +Downloaded DOI UPAD-YW6S +No data found, error 404 +Downloaded DOI 9KV6-VVBS +Downloaded DOI 6Z43-CS5V +Downloaded DOI Z2F4-XTA4 +No data found, error 404 +Downloaded DOI YYHE-S85U +Downloaded DOI Q4K9-U4HM +Downloaded DOI YM3Y-B2B5 +Downloaded DOI Q783-TV5V +Downloaded DOI RZ8P-H4T8 +Downloaded DOI Q4N5-V4PG +Downloaded DOI 5KVT-9WA2 +Downloaded DOI PKA6-PEG8 +Downloaded DOI U6AF-VRD3 +Downloaded DOI VEVD-J5KA +No data found, error 404 +Downloaded DOI 8SJB-WQG7 +Downloaded DOI 7T3Z-R92U +Downloaded DOI 9VDR-J7AH +Downloaded DOI KY9Z-QA86 +Downloaded DOI VY9P-HXGG +Downloaded DOI G59N-6PVR +Downloaded DOI WQ78-MHNB +Downloaded DOI NBXD-K3EH +No data found, error 404 +Downloaded DOI P52N-YTTU +No data found, error 404 +Downloaded DOI HP34-XVWY +No data found, error 404 +Downloaded DOI 6ZAM-SY8T +Downloaded DOI Y7SQ-VEAG +Downloaded DOI FMP6-GVKR +Downloaded DOI NXBD-GHDY +Downloaded DOI 5V2D-JC38 +No data found, error 404 +Downloaded DOI NE9R-T296 +Downloaded DOI 7M6B-UHZ6 +Downloaded DOI BDMF-VXE6 +Downloaded DOI DTG9-WTPP +Downloaded DOI 75TA-UPUK +Downloaded DOI 228G-HA82 +Downloaded DOI FQVZ-PU5D +Downloaded DOI F6X8-KV7J +Downloaded DOI DTQX-PZK7 +Downloaded DOI BFUE-YEF3 +Downloaded DOI NN5G-VCPD +Downloaded DOI QWED-C3Z6 +Downloaded DOI Y6WC-Y38E +Downloaded DOI V7GJ-S86T +No data found, error 404 +Downloaded DOI ENGU-VJK3 +Downloaded DOI 76WX-98RP +Downloaded DOI Z38K-GRCU +Downloaded DOI KCF7-7SJC +Downloaded DOI F2ZJ-S4GC +Downloaded DOI NB2R-NNVX +Downloaded DOI MPF7-MHFW +Downloaded DOI S4YG-BMV5 +Downloaded DOI WFZ6-HREH +Downloaded DOI MDTD-PX2V +Downloaded DOI N6CP-B5VQ +Downloaded DOI 96GW-AS8D +Downloaded DOI 9YF2-KPGE +Downloaded DOI RW4R-FU2D +Downloaded DOI D8R4-XD2U +Downloaded DOI ZQYW-TQDR +Downloaded DOI A2AQ-JN4Z +Downloaded DOI D63N-BH3E +Downloaded DOI 5KVY-Z3YE +Downloaded DOI 3KKJ-8S39 +Downloaded DOI TZ58-4Z5F +Downloaded DOI XUTT-G9SB +Downloaded DOI 3S9M-VKRF +Downloaded DOI 657Y-U2X5 +Downloaded DOI JVB2-QCZY +Downloaded DOI A8ZV-DGTU +Downloaded DOI Z3B6-9FGQ +Downloaded DOI R4EA-ACJU +Downloaded DOI SQ9X-XX6G +No data found, error 404 +Downloaded DOI 86BZ-9BXT +Downloaded DOI VF5Y-PJAG +Downloaded DOI XH48-85AS +Downloaded DOI NNC8-RK9Y +Downloaded DOI JHSZ-NUCZ +Downloaded DOI BDGP-V643 +Downloaded DOI GGY5-8JTK +Downloaded DOI 7B2J-KRHS +Downloaded DOI PWYG-MHVF +Downloaded DOI M8GE-DJVJ +Downloaded DOI Y8TE-QN98 +Downloaded DOI MJN6-TQWU +Downloaded DOI 9R4H-J8HG +Downloaded DOI W2YB-CH7N +Downloaded DOI CCUU-C434 +Downloaded DOI N6TV-995B +Downloaded DOI EASX-P25D +Downloaded DOI AC93-FV2H +Downloaded DOI 7CHV-56F3 +Downloaded DOI HW7P-W2CE +Downloaded DOI E9Q6-JHKP +No data found, error 404 +Downloaded DOI GYVH-2ENC +Downloaded DOI UEUW-JKM6 +Downloaded DOI EX3P-7Y23 +Downloaded DOI BN2K-AMHA +Downloaded DOI HMGH-QXK4 +Downloaded DOI Z97J-H98R +No data found, error 404 +No data found, error 404 +Downloaded DOI 9PGM-VJZR +Downloaded DOI RWK8-HU7J +Downloaded DOI AG74-P53Y +Downloaded DOI 2KMD-T268 +No data found, error 404 +Downloaded DOI 493W-X3BQ +Downloaded DOI YNS9-RGNW +Downloaded DOI DU5H-A849 +Downloaded DOI FNM2-MM7C +Downloaded DOI 6Y7S-SJDZ +Downloaded DOI EZQX-8JXC +Downloaded DOI FAV7-UQAN +Downloaded DOI JSR2-S7RE +Downloaded DOI 36GN-4ZUH +Downloaded DOI S6WW-MVJ9 +Downloaded DOI TV44-J57J +Downloaded DOI Q32V-A8FK +Downloaded DOI K659-KPGP +No data found, error 404 +Downloaded DOI BHR8-5Z67 +Downloaded DOI 2SFT-CMAB +Downloaded DOI D83C-2G9J +Downloaded DOI 7FKJ-EFW3 +No data found, error 404 +Downloaded DOI R9KT-JKQ5 +Downloaded DOI H6R9-8889 +No data found, error 404 +Downloaded DOI UCGJ-ZK2E +Downloaded DOI HE5W-RZRQ +Downloaded DOI 8GGA-9CDC +Downloaded DOI 2FHS-84T6 +Downloaded DOI B76D-7E5E +Downloaded DOI 8F2T-P97A +Downloaded DOI PBEE-WVS8 +Downloaded DOI 33AV-95EU +Downloaded DOI DWP3-77MY +Downloaded DOI D685-89FJ +Downloaded DOI MUM6-NJQU +Downloaded DOI Y3F5-YGXY +Downloaded DOI QSDH-UKTY +Downloaded DOI KWQP-BVM7 +Downloaded DOI PFKU-XT47 +Downloaded DOI CNYU-5Y5J +Downloaded DOI 7SN8-MW92 +Downloaded DOI 6E66-9VEY +No data found, error 404 +Downloaded DOI M6PB-ZD6P +Downloaded DOI X9SX-XXXK +Downloaded DOI 75B5-9X65 +Downloaded DOI VYE5-CRKC +Downloaded DOI 23XA-2M3K +Downloaded DOI A6KY-WCJD +Downloaded DOI QBFZ-QTB7 +No data found, error 404 +Downloaded DOI 3WDE-583W +No data found, error 404 +No data found, error 404 +Downloaded DOI CX8Q-AUCA +Downloaded DOI UQB6-YSE4 +No data found, error 404 +Downloaded DOI AUCQ-QT34 +Downloaded DOI UGN5-HUDC +Downloaded DOI 7G2J-PZUF +Downloaded DOI U5X3-TJKZ +Downloaded DOI 99UY-S3XA +Downloaded DOI EKMY-79GR +Downloaded DOI D6Q2-95A8 +Downloaded DOI TE8D-ZHZM +Downloaded DOI 6BKG-DRBQ +Downloaded DOI HG26-DSUN +Downloaded DOI FUXF-Y7FV +Downloaded DOI ES58-RVJ3 +Downloaded DOI P326-V82K +Downloaded DOI XP48-HBNG +Downloaded DOI W67R-GBKF +Downloaded DOI 49D8-7TX4 +No data found, error 404 +Downloaded DOI 2BR2-XRRC +Downloaded DOI RJA4-M3JX +No data found, error 404 +Downloaded DOI WHUW-YXV9 +Downloaded DOI U632-CZ2G +No data found, error 404 +Downloaded DOI 8G8X-CT25 +Downloaded DOI MZBN-F9VK +Downloaded DOI AUBU-86CB +Downloaded DOI RTFD-5QBY +Downloaded DOI ZBE4-JTT3 +Downloaded DOI XU3H-UKNW +Downloaded DOI RYFG-4PAK +Downloaded DOI ANZ2-SBF5 +Downloaded DOI NBKT-7ESF +Downloaded DOI SXC7-U7DX +Downloaded DOI ZWSG-33A4 +Downloaded DOI 29JA-32BB +No data found, error 404 +Downloaded DOI K347-DB9P +Downloaded DOI VQQK-5GH6 +Downloaded DOI WFMS-8N87 +Downloaded DOI M64U-QT3H +Downloaded DOI F5JA-5DGN +Downloaded DOI FWYH-Y934 +Downloaded DOI P84U-45EG +Downloaded DOI RR9W-K3R3 +Downloaded DOI 8FPN-VAG2 +Downloaded DOI C2A5-GDS6 +Downloaded DOI X3M4-7H7K +Downloaded DOI F48D-46KW +Downloaded DOI VQ6E-AMSX +Downloaded DOI MWY3-S3VX +Downloaded DOI F277-YNC7 +Downloaded DOI T5MF-YWM3 +Downloaded DOI YEC4-NGBW +Downloaded DOI NAMH-TVRF +Downloaded DOI PBR3-6MX5 +Downloaded DOI DGFU-EWM6 +Downloaded DOI HTVP-5GFG +Downloaded DOI 7EJC-9VH3 +Downloaded DOI AZJT-QGAB +Downloaded DOI 63Q6-Z46M +Downloaded DOI EWC9-ZRFJ +Downloaded DOI DZXW-SVJK +Downloaded DOI 9U3P-Z3SF +No data found, error 404 +Downloaded DOI PBCA-ZBYE +Downloaded DOI HMHB-JJVH +Downloaded DOI 39T8-ETSJ +Downloaded DOI 2ETM-DCZZ +Downloaded DOI QCDR-TX7T +Downloaded DOI QX39-AFBX +Downloaded DOI ZSMW-GWHY +Downloaded DOI 8XGC-TK6W +Downloaded DOI QWF7-8J64 +Downloaded DOI AMUP-V676 +Downloaded DOI EQF3-KNMX +Downloaded DOI SX2Y-2SVC +Downloaded DOI GR6F-C6ZP +Downloaded DOI M79U-J38J +Downloaded DOI 7DJ8-7A5D +Downloaded DOI ZRNV-FAHX +Downloaded DOI 5XY9-7QDZ +Downloaded DOI KJW6-HNQD +No data found, error 404 +Downloaded DOI BUMD-RZ98 +Downloaded DOI 6A5Y-PZES +Downloaded DOI HBRG-Z5QD +Downloaded DOI FZ97-934F +No data found, error 404 +Downloaded DOI C27T-NZ9K +Downloaded DOI JSGN-BZV4 +Downloaded DOI MBSF-W3YD +Downloaded DOI D9P5-2JYG +No data found, error 404 +Downloaded DOI JVRS-4VVE +Downloaded DOI 92AZ-9NZF +Downloaded DOI 893U-A2M7 +Downloaded DOI EWYA-Y3H9 +Downloaded DOI EBFB-24C4 +Downloaded DOI 87TG-K6ND +Downloaded DOI DKCS-X8UV +Downloaded DOI F77P-VN6U +Downloaded DOI JM36-2U7A +Downloaded DOI HZUY-KJVY +Downloaded DOI 3T74-EPGH +Downloaded DOI 5RQ7-EDB6 +Downloaded DOI 8KTW-EFHD +Downloaded DOI KA4S-56QT +Downloaded DOI ZSW8-AAQD +Downloaded DOI GDE9-G4HR +Downloaded DOI GU4H-ZKBB +No data found, error 404 +Downloaded DOI V74F-UJXX +No data found, error 404 +Downloaded DOI KFXZ-JDDK +Downloaded DOI BR3J-DWWV +Downloaded DOI YZPS-4HZ8 +Downloaded DOI QGDT-K5M6 +Downloaded DOI WZCH-AKCT +Downloaded DOI S7C5-MPZC +Downloaded DOI E45Q-986P +Downloaded DOI YNJ2-JM6Q +Downloaded DOI 9F5B-8KFR +Downloaded DOI D8NY-PR6A +Downloaded DOI KECS-DEWP +No data found, error 404 +Downloaded DOI 3PXG-RZE9 +Downloaded DOI F3KA-QJZ3 +Downloaded DOI TV54-7K2E +Downloaded DOI DUNJ-NUVU +Downloaded DOI 6HPN-44ZB +Downloaded DOI UYDQ-26Q4 +Downloaded DOI HYST-YAWY +Downloaded DOI C7P5-GHXK +Downloaded DOI PJ62-5HXT +Downloaded DOI MJYY-D7D4 +No data found, error 404 +Downloaded DOI 3FKA-4EB6 +Downloaded DOI 4JV8-UQA6 +Downloaded DOI T89M-K5NT +Downloaded DOI QG7F-63VJ +Downloaded DOI H3JY-P34R +Downloaded DOI H8NM-4WPS +Downloaded DOI EY6K-N92A +Downloaded DOI SNRZ-CPHY +Downloaded DOI EBPR-SCD5 +Downloaded DOI 8CPJ-CRYS +No data found, error 404 +Downloaded DOI MNHT-VKRF +Downloaded DOI TH5T-TE8T +Downloaded DOI NYDF-CZNW +Downloaded DOI AGUK-QZQC +Downloaded DOI E5E7-UEYG +Downloaded DOI FTTT-QBJX +Downloaded DOI 6R23-C9ES +Downloaded DOI UK7J-3MJG +Downloaded DOI MSUS-GX77 +Downloaded DOI QUBU-83SV +Downloaded DOI 9RYY-E4MA +Downloaded DOI WQCH-FMTN +Downloaded DOI 47Y8-Q7GQ +Downloaded DOI NZSQ-QMJ9 +Downloaded DOI 6UGY-7Y2T +No data found, error 404 +Downloaded DOI Z575-9UCQ +Downloaded DOI PYDR-4QKM +Downloaded DOI A459-2TP8 +Downloaded DOI CRHM-3F32 +Downloaded DOI 6HMM-K37R +Downloaded DOI X9AJ-4Z4F +Downloaded DOI XW6K-AVTV +No data found, error 404 +Downloaded DOI WERZ-XGYV +Downloaded DOI VPJW-8HBV +Downloaded DOI JQUD-9689 +Downloaded DOI DRW4-85YZ +Downloaded DOI H67A-N38R +Downloaded DOI KASD-BMQV +Downloaded DOI PZM5-XCX8 +Downloaded DOI 3UR8-WDWK +Downloaded DOI RFXZ-6HFT +Downloaded DOI 6HS3-BS86 +Downloaded DOI 8FF6-7BX8 +Downloaded DOI XPBF-T5DU +Downloaded DOI WCFP-P4MN +Downloaded DOI 4EK7-S3QT +Downloaded DOI 3ZVF-2UFW +Downloaded DOI AZMB-FD36 +Downloaded DOI APT8-DMWJ +Downloaded DOI M62T-W5FW +Downloaded DOI G8SD-NJGG +No data found, error 404 +Downloaded DOI CJEH-X9AK +Downloaded DOI DQ8F-GAJM +Downloaded DOI GP7H-MQE2 +Downloaded DOI 86RR-VGN9 +Downloaded DOI YBGG-SZKU +Downloaded DOI 9RGV-Q2KK +Downloaded DOI QECZ-59QJ +Downloaded DOI JYEC-WJDG +Downloaded DOI XC3K-HKWK +Downloaded DOI 3KFW-ABQJ +Downloaded DOI UKW5-BTW5 +Downloaded DOI CXAQ-EWYA +Downloaded DOI 2WRM-UA7U +Downloaded DOI TFJK-W7J4 +Downloaded DOI UK54-EMFB +Downloaded DOI U9ZK-7J7Z +Downloaded DOI TU7H-5UT5 +Downloaded DOI B36Y-UCDG +Downloaded DOI GHV3-HUD5 +No data found, error 404 +Downloaded DOI SC5P-6QWT +Downloaded DOI GM9M-SX4Q +Downloaded DOI BY5X-KYGR +Downloaded DOI 3PPH-VBTK +Downloaded DOI GG7H-Z795 +Downloaded DOI U8V2-MWCS +Downloaded DOI DYHY-TY9A +Downloaded DOI 3GJ9-YWUY +Downloaded DOI YKYQ-5N2H +Downloaded DOI AQCY-Q9HA +Downloaded DOI TEGE-P9VR +Downloaded DOI WP7C-MHCB +Downloaded DOI TBFK-DC34 +Downloaded DOI WTB7-KU53 +Downloaded DOI H2SQ-QFSY +Downloaded DOI JN7S-67P2 +Downloaded DOI J4TE-JCAE +Downloaded DOI E7PN-J65D +Downloaded DOI MB5F-C4ER +Downloaded DOI 8FD3-E9WV +Downloaded DOI M7ZT-2D2F +Downloaded DOI 8E6C-Z7UR +Downloaded DOI EPHZ-ZN9S +Downloaded DOI V6AS-X7Z4 +Downloaded DOI AGRT-MA99 +Downloaded DOI 9Q2N-FBP3 +Downloaded DOI UNYN-547W +Downloaded DOI 9S6N-7PXF +Downloaded DOI CH8A-H6E2 +Downloaded DOI PRY4-J29P +No data found, error 404 +Downloaded DOI Z8DA-MX54 +Downloaded DOI ZDB6-QCXA +Downloaded DOI EXR9-RW7Z +Downloaded DOI UQPM-25GZ +Downloaded DOI SW4F-PZ29 +Downloaded DOI 758Z-GHN4 +Downloaded DOI T8T9-W94F +Downloaded DOI HFXJ-3XA8 +Downloaded DOI 9KH4-EZ2V +Downloaded DOI 8MHD-BTPS +Downloaded DOI Q2FE-QFJR +No data found, error 404 +Downloaded DOI Y5T7-4CK4 +Downloaded DOI QK24-TCKU +Downloaded DOI AS6Z-FPFB +Downloaded DOI SC55-A3YE +Downloaded DOI 7UMH-EFAJ +Downloaded DOI D5VM-XBMM +Downloaded DOI XGDG-D64T +Downloaded DOI 4XZ6-JP7S +Downloaded DOI BK7Q-E7TT +Downloaded DOI 9K2R-K56Z +Downloaded DOI ZSDS-C3Y6 +Downloaded DOI F5RY-YEQ2 +Downloaded DOI 282U-X252 +Downloaded DOI QMBY-8CRE +Downloaded DOI ERZC-MHTA +Downloaded DOI Q6ZT-GJU7 +Downloaded DOI KW5V-GFP6 +Downloaded DOI FZCX-J6NW +Downloaded DOI XH6P-N5FS +Downloaded DOI 7N3T-9M6G +Downloaded DOI UP9C-SG56 +Downloaded DOI CD8N-SXWS +Downloaded DOI NFU5-Q88F +Downloaded DOI NQSV-E9CB +No data found, error 404 +Downloaded DOI BCWE-4E6P +Downloaded DOI XKFC-A995 +Downloaded DOI 5BP4-676K +Downloaded DOI C459-CVSW +Downloaded DOI NXC3-CFV7 +Downloaded DOI YT57-XFFF +Downloaded DOI 6HZP-N6S9 +Downloaded DOI MHN6-PRME +Downloaded DOI N8PB-UQP8 +Downloaded DOI EH32-6GMY +Downloaded DOI AYHB-G4Z3 +Downloaded DOI 6XEB-2BDC +Downloaded DOI VV77-3VAU +Downloaded DOI 5XND-23QA +Downloaded DOI RUJ9-WCMS +Downloaded DOI RTEG-ZZH6 +Downloaded DOI KCH2-9BUX +Downloaded DOI GEDE-2HYJ +Downloaded DOI DNES-RPR7 +Downloaded DOI 57TY-X4Y8 +Downloaded DOI 4AQX-S4EK +Downloaded DOI 65QW-3QZS +Downloaded DOI TX9H-EAPZ +Downloaded DOI CZUB-NT83 +Downloaded DOI BGAQ-DK3Z +Downloaded DOI F6DH-6RYU +Downloaded DOI FTWY-TXFC +Downloaded DOI AR2E-CVQ4 +Downloaded DOI UYX8-GY9M +Downloaded DOI VFCF-2XN2 +Downloaded DOI SNV2-E2YS +Downloaded DOI GUT7-DKSW +Downloaded DOI 7EC6-DWFF +Downloaded DOI RZNG-7XM3 +No data found, error 404 +Downloaded DOI 46GM-K7QD +No data found, error 404 +Downloaded DOI RU2J-A8AT +Downloaded DOI GYV6-TFAT +Downloaded DOI J4MS-W8KJ +Downloaded DOI ZQS2-5D85 +Downloaded DOI P5VA-9ZD3 +Downloaded DOI FDSY-VBB3 +Downloaded DOI 85EE-NVQV +Downloaded DOI 4M45-RS58 +Downloaded DOI 23MY-ZH63 +Downloaded DOI K6HQ-DCKC +Downloaded DOI V965-S9DR +Downloaded DOI YRB5-V695 +Downloaded DOI B5NC-QCB5 +Downloaded DOI SXC6-AYFP +Downloaded DOI 899R-M4JJ +Downloaded DOI SZT2-HDZY +No data found, error 404 +Downloaded DOI 3M7T-3DW9 +Downloaded DOI JKY3-F633 +Downloaded DOI VHFZ-D5FQ +Downloaded DOI SVCV-6N46 +Downloaded DOI 3ES8-M4MW +No data found, error 404 +Downloaded DOI CU6N-GCSW +Downloaded DOI 6KZF-8BWY +Downloaded DOI BM23-HYKZ +Downloaded DOI S48G-97SY +Downloaded DOI HP8Q-U7US +Downloaded DOI 7E3U-BCUV +Downloaded DOI VAWC-SARQ +Downloaded DOI AYFW-PY6Q +Downloaded DOI KP42-PFYE +Downloaded DOI VPNZ-Q4JQ +No data found, error 404 +Downloaded DOI V9UT-N67U +Downloaded DOI GFU3-SUTK +Downloaded DOI HYGD-UUVW +Downloaded DOI GMC4-6D4Z +Downloaded DOI C7XN-Z57Z +Downloaded DOI 3AA7-6R82 +No data found, error 404 +Downloaded DOI M53U-22YA +Downloaded DOI XBK7-2YE2 +Downloaded DOI VXE3-C9GH +Downloaded DOI 3M8W-EE6A +Downloaded DOI V26A-433Y +No data found, error 404 +Downloaded DOI 6M9R-5FZK +Downloaded DOI 4HCZ-R2JZ +Downloaded DOI C5XF-6KK5 +Downloaded DOI NJJV-ZET5 +Downloaded DOI SHHB-S83X +Downloaded DOI CXHA-7TC5 +Downloaded DOI 9PMT-32BE +Downloaded DOI 9STY-VY4S +Downloaded DOI SXE6-SDQR +No data found, error 404 +Downloaded DOI DKBR-36YT +Downloaded DOI J8D7-9B45 +Downloaded DOI XXWS-C75N +No data found, error 404 +Downloaded DOI 7HNG-ZURQ +Downloaded DOI H95E-VD5F +Downloaded DOI W3FZ-Z3W9 +No data found, error 404 +Downloaded DOI 5XJX-RH8E +Downloaded DOI KC7C-2XT6 +Downloaded DOI SNAK-E66E +Downloaded DOI 23TG-52MX +Downloaded DOI N25F-APDJ +Downloaded DOI W93Q-KE8J +Downloaded DOI V2H9-KE9Y +Downloaded DOI QXPW-T6XR +Downloaded DOI P87M-AZ5E +No data found, error 404 +Downloaded DOI GKZA-4WJ3 +Downloaded DOI 2SCG-MF7X +Downloaded DOI 89MZ-JVCR +Downloaded DOI 2M8F-SEX2 +Downloaded DOI E8WP-TE2R +Downloaded DOI BVW6-S639 +Downloaded DOI TD8F-ZU6U +Downloaded DOI 5FBU-9VD7 +Downloaded DOI C56W-J5KR +Downloaded DOI 4GJR-FZ8M +Downloaded DOI K38M-B9UD +Downloaded DOI Y2JH-WYXH +Downloaded DOI REAR-HYM6 +No data found, error 404 +Downloaded DOI 8ZP8-UJD3 +Downloaded DOI SZJZ-33NU +Downloaded DOI TJ9B-WZ6C +Downloaded DOI 43WT-8VXZ +Downloaded DOI HV5A-AWC4 +Downloaded DOI 4Q9N-XREM +No data found, error 404 +Downloaded DOI Y6ZC-6QZE +Downloaded DOI Q3NR-BUPW +Downloaded DOI N7CJ-NZZG +Downloaded DOI Z2VF-7VYQ +Downloaded DOI 6A8N-2E36 +Downloaded DOI KU2T-U5JX +Downloaded DOI N5F8-QVAD +Downloaded DOI YSD6-SRE7 +Downloaded DOI 7GBT-XCCC +No data found, error 404 +Downloaded DOI MZXQ-EQ83 +Downloaded DOI B4BB-FDX3 +No data found, error 404 +Downloaded DOI PA8Y-RWF7 +Downloaded DOI V86J-E5F8 +Downloaded DOI Z8TH-8324 +Downloaded DOI GHMF-ZZBX +Downloaded DOI DY9P-WXXU +Downloaded DOI S3VF-YGRY +No data found, error 404 +Downloaded DOI RX6C-ME7F +Downloaded DOI DSQP-HXT7 +Downloaded DOI 44RB-ERCQ +Downloaded DOI VWGC-CJ2S +Downloaded DOI A4DG-S89R +Downloaded DOI WHGT-D9PT +Downloaded DOI RCKQ-S6ZD +Downloaded DOI Y9CQ-PTVT +Downloaded DOI QZAM-GYKE +Downloaded DOI QTKJ-Z93T +Downloaded DOI GJN5-D4FW +Downloaded DOI HGY7-QZ2V +Downloaded DOI 28PN-CTC3 +Downloaded DOI BWF3-Q47G +Downloaded DOI EXMM-KS4A +Downloaded DOI QXWC-T8P9 +Downloaded DOI QX5X-99KP +Downloaded DOI C6KB-U6Q2 +Downloaded DOI 9RA8-R5CJ +Downloaded DOI YTKF-XG2C +Downloaded DOI 7QAQ-VFH4 +Downloaded DOI 3B8Q-ZHWF +Downloaded DOI ASFB-SSXP +No data found, error 404 +Downloaded DOI 4CZH-92MA +Downloaded DOI 2H7E-29R7 +Downloaded DOI CG6J-9YN2 +No data found, error 404 +Downloaded DOI NJ5A-KSKD +Downloaded DOI X8KP-5CQR +Downloaded DOI YQEB-QQSQ +Downloaded DOI WSZU-GQTS +Downloaded DOI 2WJ2-3PRU +Downloaded DOI T893-4S65 +Downloaded DOI R9DZ-U5YQ +Downloaded DOI 8SUY-A4J2 +Downloaded DOI X4TF-ZKRG +Downloaded DOI GRDM-Z9AM +Downloaded DOI HAGE-MA4B +Downloaded DOI K5DR-7M8F +Downloaded DOI STWT-5KFF +Downloaded DOI QZXQ-GZ73 +Downloaded DOI M9DX-MBJB +Downloaded DOI M57Y-AD6B +Downloaded DOI 8S52-HC32 +No data found, error 404 +Downloaded DOI U2KK-4APH +Downloaded DOI NFY9-57TV +Downloaded DOI FTPY-8GB3 +Downloaded DOI AKXQ-DZ7A +No data found, error 404 +Downloaded DOI SKGX-239W +Downloaded DOI 7N6Z-GDYH +Downloaded DOI XZZX-64E8 +Downloaded DOI XZD7-6VJU +No data found, error 404 +Downloaded DOI ZSNS-MBAS +Downloaded DOI WQVT-AMGJ +Downloaded DOI FMJ6-55BS +Downloaded DOI NMGE-J6QK +Downloaded DOI RVNZ-DQMR +Downloaded DOI WF3K-557D +No data found, error 404 +No data found, error 404 +Downloaded DOI M26X-79QY +Downloaded DOI XT4T-JF6J +Downloaded DOI PPNC-4NWY +Downloaded DOI TC8C-G5AX +Downloaded DOI THTY-KECV +Downloaded DOI 7JSN-GVGR +Downloaded DOI T2UV-2SGT +Downloaded DOI 8B69-U7BG +Downloaded DOI H7KE-WJ47 +No data found, error 404 +Downloaded DOI 5SBR-79VF +Downloaded DOI SNV7-5FAJ +Downloaded DOI AA5F-E3GC +No data found, error 404 +Downloaded DOI KD28-SM6U +No data found, error 404 +Downloaded DOI WPEX-PM7G +No data found, error 404 +Downloaded DOI S2VF-M3YG +Downloaded DOI 95GT-5RP7 +Downloaded DOI 7T3U-KX39 +Downloaded DOI NNCS-9P38 +Downloaded DOI MZ4Z-X9WX +Downloaded DOI 7QRZ-ZV8H +Downloaded DOI KT9W-C54E +Downloaded DOI KS2C-394J +Downloaded DOI M5XP-52XR +Downloaded DOI KQTU-EG9S +Downloaded DOI HZ2K-SDB6 +Downloaded DOI ZZHS-PGH4 +No data found, error 404 +Downloaded DOI UE7Z-ZB2W +Downloaded DOI S3SU-2XAZ +Downloaded DOI SAN6-WCBP +Downloaded DOI UQA9-HQHT +Downloaded DOI PEH7-ZVKU +Downloaded DOI 6W6S-GZVB +No data found, error 404 +Downloaded DOI JV3A-E952 +Downloaded DOI 3F6M-U8UD +Downloaded DOI B5QX-RDZR +Downloaded DOI 73C3-RB5D +Downloaded DOI 9ZPB-HNZY +Downloaded DOI S4UN-E9K8 +No data found, error 404 +Downloaded DOI 7FDG-7NUY +Downloaded DOI DFVK-AGUJ +Downloaded DOI TZPK-W2VQ +Downloaded DOI R9GK-QA42 +Downloaded DOI THBC-A5CD +No data found, error 404 +Downloaded DOI EU5A-7TEK +Downloaded DOI UVH9-38HM +Downloaded DOI UMV5-M34F +Downloaded DOI PB5G-HQ7P +Downloaded DOI CDYX-A82W +Downloaded DOI RU3S-8EF7 +Downloaded DOI GW9B-HSNH +No data found, error 404 +Downloaded DOI H6CV-N7ME +Downloaded DOI 32HJ-FQ3K +No data found, error 404 +Downloaded DOI QSJK-R6UZ +Downloaded DOI 9QJV-ECJ7 +Downloaded DOI T9G7-TUDY +Downloaded DOI 9U2A-67XY +Downloaded DOI GWJD-BKDY +No data found, error 404 +Downloaded DOI 2J3W-FZVD +Downloaded DOI CMF5-Z99P +Downloaded DOI ESYU-JGRK +Downloaded DOI ADCJ-6AJN +Downloaded DOI JGYE-KF8Z +Downloaded DOI XDSQ-NKDD +Downloaded DOI ZJ4V-44V8 +Downloaded DOI RVM6-9Y9G +Downloaded DOI 8UEU-3QM4 +Downloaded DOI CUQK-SDGC +Downloaded DOI YQ5R-BBYB +Downloaded DOI UUQ6-AKAG +Downloaded DOI GRAV-7H2Z +Downloaded DOI CRPG-HTCM +Downloaded DOI DU5X-89GX +Downloaded DOI ADE7-668X +Downloaded DOI PH2R-BNFT +Downloaded DOI 22S8-STKY +Downloaded DOI FVSM-ER97 +Downloaded DOI RK8F-KV95 +No data found, error 404 +Downloaded DOI QYYD-SK2W +Downloaded DOI Y86E-RUMJ +Downloaded DOI XMQG-SDDV +Downloaded DOI E7CF-DEJH +No data found, error 404 +Downloaded DOI 8KM6-E37G +Downloaded DOI 5V25-WYTD +Downloaded DOI J86J-B8NA +Downloaded DOI H8ZH-KUEV +Downloaded DOI BCVP-ZJBV +Downloaded DOI F2N6-92WJ +Downloaded DOI 65BU-ZPST +Downloaded DOI 9QFN-AWQ4 +Downloaded DOI 46MP-X424 +Downloaded DOI TSXD-3VDW +Downloaded DOI JSW4-G7A2 +Downloaded DOI 9UXU-54JT +Downloaded DOI CHGD-JETS +Downloaded DOI P3QG-TSRH +Downloaded DOI 8TRF-DDKG +Downloaded DOI JZQ6-3799 +Downloaded DOI 5C6C-2GM5 +Downloaded DOI KT55-BPHZ +Downloaded DOI E6F3-JRDB +Downloaded DOI 9BVT-6FPB +No data found, error 404 +Downloaded DOI Y7R9-F3Q2 +Downloaded DOI 7QP9-XESC +Downloaded DOI GC6D-ZJEJ +Downloaded DOI 63SA-85PW +Downloaded DOI FZYF-TEDU +Downloaded DOI PYAF-PMW9 +Downloaded DOI BH6H-624J +Downloaded DOI XPS3-M5SB +Downloaded DOI UQRZ-2MU2 +Downloaded DOI HTW6-MZQ9 +Downloaded DOI 84P7-J5W8 +Downloaded DOI 639T-WS62 +Downloaded DOI NYJ9-926Z +Downloaded DOI T7J5-ZTXA +Downloaded DOI UWKD-RHU2 +Downloaded DOI 6BN3-ZABS +Downloaded DOI C9DC-48MK +Downloaded DOI VUNB-9MB2 +Downloaded DOI 96HX-ETTB +Downloaded DOI FP38-7DZ7 +Downloaded DOI XXVX-7MHK +Downloaded DOI NNBY-5H58 +Downloaded DOI 3N4Z-Y58A +Downloaded DOI PYDE-5AQJ +Downloaded DOI QRRT-5KP9 +Downloaded DOI RCBR-Y5KW +Downloaded DOI 7KG8-5BJC +Downloaded DOI 66A5-K2BX +Downloaded DOI VHSS-QVQ6 +Downloaded DOI YX2Z-MXWR +Downloaded DOI HHBQ-M8YD +Downloaded DOI HQSB-6MJJ +Downloaded DOI EPG4-TG25 +Downloaded DOI BWY5-QBC2 +Downloaded DOI K45G-WHEX +No data found, error 404 +Downloaded DOI N69M-CGXK +Downloaded DOI 7MGT-ACMH +Downloaded DOI WE2X-QUGB +No data found, error 404 +Downloaded DOI JZH5-P4Z2 +Downloaded DOI Y42K-EVF5 +Downloaded DOI 8FSV-7KFY +No data found, error 404 +No data found, error 404 +Downloaded DOI FU4K-6F3Z +Downloaded DOI 2C86-9384 +Downloaded DOI PV75-Q38M +Downloaded DOI KBZD-A2MB +Downloaded DOI 4765-36FU +Downloaded DOI 5N97-2DB2 +Downloaded DOI YDX8-8XP3 +Downloaded DOI Q3PU-JGVK +Downloaded DOI TVZD-HRTR +Downloaded DOI 7W59-VVKG +Downloaded DOI J3ND-UCY2 +Downloaded DOI Z98C-8TER +Downloaded DOI FB6G-2JCP +Downloaded DOI A9X5-RFEH +Downloaded DOI RTXH-S3BJ +Downloaded DOI NCJK-VHPQ +Downloaded DOI 4ES3-P496 +Downloaded DOI PU25-F82D +Downloaded DOI RBW7-6UR8 +Downloaded DOI DBGJ-EBN5 +Downloaded DOI JS9U-YZPW +Downloaded DOI CUVC-Y3ZK +Downloaded DOI CGZD-CYVQ +Downloaded DOI SZT3-A7AJ +Downloaded DOI 7QBY-2QQ2 +Downloaded DOI ERA8-YQ2C +Downloaded DOI 7WPY-7RGZ +Downloaded DOI 6C97-RMAJ +No data found, error 404 +Downloaded DOI E5ZJ-RBUM +Downloaded DOI TTQT-ZZED +Downloaded DOI 8XDF-GT8H +Downloaded DOI R6CU-RJ47 +Downloaded DOI QCN2-AETG +Downloaded DOI BRZ5-RPX9 +Downloaded DOI KHZN-VJU2 +Downloaded DOI WHSY-YZMB +Downloaded DOI 8C8H-TSSK +Downloaded DOI QYDQ-7XTJ +No data found, error 404 +Downloaded DOI BCFR-NDYF +Downloaded DOI ZQM7-QBDZ +No data found, error 404 +Downloaded DOI WR6U-6MFV +Downloaded DOI J45V-UQ9E +No data found, error 404 +Downloaded DOI UHJ4-DYCG +Downloaded DOI TGSY-296H +No data found, error 404 +Downloaded DOI GD53-QEBV +Downloaded DOI 647Q-ARPK +Downloaded DOI 9RPD-CJNK +Downloaded DOI HH3M-EPMN +Downloaded DOI VG92-YK88 +Downloaded DOI QJUU-ARD8 +Downloaded DOI ZJHG-YEHY +Downloaded DOI 38XE-MWD9 +Downloaded DOI UHU8-HKMD +No data found, error 404 +Downloaded DOI 28ZP-XVUR +Downloaded DOI YJMC-Q533 +Downloaded DOI VTAS-RYEK +Downloaded DOI HFRB-PDEF +Downloaded DOI 5BHQ-KFX8 +Downloaded DOI ZAEJ-95V3 +Downloaded DOI PGGF-A2DC +Downloaded DOI 4G8Z-38NS +Downloaded DOI GZ8T-A69S +Downloaded DOI EKQM-BWJW +Downloaded DOI WSJG-9WZT +No data found, error 404 +Downloaded DOI MHPY-AXR7 +Downloaded DOI VPZ9-5V23 +No data found, error 404 +Downloaded DOI E7KJ-385Q +Downloaded DOI VR8G-8U26 +Downloaded DOI ZQZH-EFFH +Downloaded DOI YFYB-3TP2 +Downloaded DOI XCTZ-HYRK +Downloaded DOI D5KB-WKM7 +Downloaded DOI RD6X-RUE6 +Downloaded DOI YTR7-XPY9 +Downloaded DOI A9FF-UW9A +Downloaded DOI JRWZ-5F4V +Downloaded DOI M64H-GYWN +Downloaded DOI 6CTM-GFV7 +Downloaded DOI N29S-ZW8V +Downloaded DOI JZ8A-5ZU8 +Downloaded DOI RFJG-67P5 +Downloaded DOI 2RPY-TGWM +Downloaded DOI DS4V-CUDA +Downloaded DOI A8V6-T4VW +Downloaded DOI BR5C-RJ9Z +Downloaded DOI Q427-EU5A +Downloaded DOI RQBQ-4H3N +No data found, error 404 +Downloaded DOI 9BAY-UPJF +Downloaded DOI NT6F-9653 +Downloaded DOI 36TR-DXV9 +Downloaded DOI CPZ9-C36G +Downloaded DOI PPHD-ZDTY +Downloaded DOI HNFN-TVJE +Downloaded DOI ZYSX-3Y68 +Downloaded DOI UPNF-8U4B +Downloaded DOI TC68-EPWP +Downloaded DOI B2S3-57F6 +Downloaded DOI WSMT-6UDX +Downloaded DOI 42CY-5MWX +Downloaded DOI M5XB-4C8W +Downloaded DOI QZYH-QPVF +Downloaded DOI CVGK-9JMB +Downloaded DOI JTT9-62N3 +Downloaded DOI ZTZS-QZFH +Downloaded DOI 34Q7-T4P2 +Downloaded DOI KAT3-TQ88 +Downloaded DOI BQGT-4GZH +Downloaded DOI 6GFM-6YEZ +Downloaded DOI 64QW-TJSQ +Downloaded DOI 9DN7-ZM8B +Downloaded DOI 2XB7-RAKJ +Downloaded DOI 3B34-TAAY +Downloaded DOI USYK-S69Z +Downloaded DOI XBVR-ZJ6E +Downloaded DOI F52E-GNUZ +Downloaded DOI UD85-HR98 +Downloaded DOI JWZ3-967Z +Downloaded DOI FFSN-Y9D9 +Downloaded DOI KJVJ-KE7D +Downloaded DOI YR62-8JSQ +Downloaded DOI 8AKA-TZJH +No data found, error 404 +Downloaded DOI VR5W-GP9B +Downloaded DOI T98P-U946 +Downloaded DOI 5TX9-AVVN +Downloaded DOI BTYS-ZKR5 +Downloaded DOI 7RXM-9YXW +Downloaded DOI PZHA-PG2U +Downloaded DOI PVWU-4PEV +Downloaded DOI YK73-YMVD +Downloaded DOI ZZRR-DNXU +Downloaded DOI PY8T-FXPS +Downloaded DOI W5UZ-85U7 +Downloaded DOI PQCU-5ZQ5 +Downloaded DOI A3QF-87UT +Downloaded DOI ZTE8-HCC3 +Downloaded DOI UU4S-CS8A +Downloaded DOI QHZW-96ER +Downloaded DOI UZTY-R2MM +Downloaded DOI BV9R-5S5M +Downloaded DOI HAPP-X2WN +Downloaded DOI Y5AN-H23V +Downloaded DOI R8QS-K6MR +No data found, error 404 +Downloaded DOI RPDB-BJ9Y +Downloaded DOI 4TFB-JQAH +Downloaded DOI P6TS-JVDF +No data found, error 404 +Downloaded DOI 9D3S-XRWG +Downloaded DOI VQ44-T6GS +Downloaded DOI QQKZ-A9TW +Downloaded DOI ZHMV-HTR3 +Downloaded DOI QUCG-AWUG +Downloaded DOI 6ANB-79MU +No data found, error 404 +Downloaded DOI 2QP7-5YQS +Downloaded DOI RYHA-QTUM +Downloaded DOI AKCM-DA69 +Downloaded DOI N99A-NU3D +Downloaded DOI EV69-GTAS +Downloaded DOI 77QC-RW4Q +Downloaded DOI B3WF-UUND +Downloaded DOI NGSH-BVYX +Downloaded DOI 67YX-QDKK +Downloaded DOI JJE9-VSMT +Downloaded DOI 2P7Y-5ZYV +Downloaded DOI XJDC-XF42 +Downloaded DOI E2UD-NZKC +Downloaded DOI PQHZ-JB9Q +No data found, error 404 +Downloaded DOI RQK4-QHM8 +Downloaded DOI WHY8-3ZVN +Downloaded DOI NYUZ-3HAW +Downloaded DOI 2MJD-46YR +Downloaded DOI 4329-QYDQ +Downloaded DOI 9BYG-CZQB +Downloaded DOI B9WU-3EXD +Downloaded DOI ZR5A-9ZQT +Downloaded DOI VXRW-SR8Y +Downloaded DOI SSZQ-59QF +Downloaded DOI 9MBZ-CP8N +Downloaded DOI QBWC-FDNH +Downloaded DOI 2H9Y-95XX +Downloaded DOI MYHJ-ANP7 +Downloaded DOI NJPH-QMH7 +Downloaded DOI HKGN-YJ52 +No data found, error 404 +Downloaded DOI 536X-AAY2 +Downloaded DOI NGDT-N9SQ +Downloaded DOI TKV8-7RPT +Downloaded DOI SGHP-7TZZ +Downloaded DOI J559-THPG +Downloaded DOI R352-P6CA +Downloaded DOI PY7G-HJ99 +Downloaded DOI 4Q2V-GU7P +Downloaded DOI 6A59-2QZQ +Downloaded DOI A3PM-B3W2 +Downloaded DOI FT5Y-YKX6 +No data found, error 404 +Downloaded DOI G5JQ-BPP7 +Downloaded DOI CPNT-S4KQ +Downloaded DOI 9W92-7GVF +Downloaded DOI F6B7-8ZK9 +No data found, error 404 +Downloaded DOI 385R-EVF7 +Downloaded DOI 6ARW-YM63 +Downloaded DOI UBSS-U5E6 +No data found, error 404 +Downloaded DOI JG94-RVGZ +Downloaded DOI V8M5-R97V +Downloaded DOI PFJP-3UWQ +Downloaded DOI 4N4Y-XYEW +Downloaded DOI AY6G-3TVS +Downloaded DOI 4FAG-FG3S +Downloaded DOI 9W7C-FFRD +Downloaded DOI GANK-9JGR +Downloaded DOI AEPW-QXVX +Downloaded DOI HGC4-UJJ9 +Downloaded DOI 42G7-XUQ2 +Downloaded DOI J8HA-64ZP +Downloaded DOI J3M8-F5K3 +Downloaded DOI 2FJE-3TR2 +Downloaded DOI 8WZ7-AW6A +Downloaded DOI YGSZ-7MC7 +Downloaded DOI PSBV-D2TU +Downloaded DOI FKBX-X78P +Downloaded DOI 2NV8-M2KE +Downloaded DOI ASM8-VJYZ +Downloaded DOI YTG9-6ERE +Downloaded DOI 3XVJ-6YGJ +Downloaded DOI PYCZ-6282 +Downloaded DOI HNGJ-DKPZ +Downloaded DOI 2YNM-Y49J +Downloaded DOI UA5W-773Z +Downloaded DOI QTX8-F7KY +Downloaded DOI UTDD-DTMU +Downloaded DOI SM23-NAPN +No data found, error 404 +Downloaded DOI E9JM-MYNC +Downloaded DOI YKF2-AJ5X +Downloaded DOI 3TWP-U3NQ +Downloaded DOI UXAZ-KX2Y +No data found, error 404 +Downloaded DOI G7RE-D34C +No data found, error 404 +Downloaded DOI XQCS-TY79 +Downloaded DOI 6H26-M4ND +No data found, error 404 +No data found, error 404 +Downloaded DOI FQ4J-NUEH +Downloaded DOI VE77-4VFP +Downloaded DOI 9K2X-28UZ +Downloaded DOI D7QK-4HC2 +Downloaded DOI 8V3M-FB6X +Downloaded DOI ANVR-GB3F +Downloaded DOI XJY3-NMZU +Downloaded DOI XHT4-C8NV +Downloaded DOI WB55-ZYYV +No data found, error 404 +Downloaded DOI 7D2D-CD8W +Downloaded DOI HDY4-MK2X +Downloaded DOI K3BK-YK27 +Downloaded DOI 565A-SX93 +Downloaded DOI C8KA-9Y5D +Downloaded DOI JJQ6-43HT +Downloaded DOI 64Q8-S5AW +Downloaded DOI 2DWQ-XKK4 +Downloaded DOI GTJR-2HJE +Downloaded DOI HCWV-78DY +Downloaded DOI R6Q2-VH68 +Downloaded DOI P2MW-NY2A +Downloaded DOI SKJ3-3WUG +Downloaded DOI VQRU-PNN5 +Downloaded DOI MEXB-35YT +Downloaded DOI PMAB-P5ZF +Downloaded DOI KEUG-UWT4 +Downloaded DOI RMF4-6SN3 +Downloaded DOI TJAC-8CG7 +No data found, error 404 +No data found, error 404 +Downloaded DOI THJJ-BRH8 +Downloaded DOI YE38-8MF4 +Downloaded DOI JMMX-2NQ4 +Downloaded DOI 5H89-KUXB +Downloaded DOI JS44-FBEQ +Downloaded DOI 7XED-FCUJ +Downloaded DOI KTNQ-VJGD +Downloaded DOI 634E-HGZA +Downloaded DOI BPQ2-SBR9 +Downloaded DOI AZ7U-WURS +Downloaded DOI 43CG-8JN8 +Downloaded DOI EJDP-Q2TQ +Downloaded DOI KNW9-48DY +Downloaded DOI HC8E-DGUC +Downloaded DOI T4VU-8E3N +Downloaded DOI RN7E-APJM +Downloaded DOI V6XT-XMCF +Downloaded DOI 82UN-2AE2 +Downloaded DOI MY4X-QQFB +Downloaded DOI HZWA-WGAJ +Downloaded DOI 4AA7-22SC +Downloaded DOI RPBP-2F26 +Downloaded DOI 8DEM-Y28J +Downloaded DOI 2EEW-TZWR +Downloaded DOI YJRP-DJFG +Downloaded DOI KVPQ-392G +Downloaded DOI YUWU-S75Z +No data found, error 404 +Downloaded DOI GYAR-GPZ2 +Downloaded DOI 4GYG-7DDB +Downloaded DOI 5R3Q-PK6R +Downloaded DOI UFHH-78H9 +Downloaded DOI QGDM-RUNW +Downloaded DOI T66Q-X5AT +Downloaded DOI 7QPF-QA3M +Downloaded DOI TM2W-JZRA +Downloaded DOI QSX4-XHGU +Downloaded DOI MEVW-UPA8 +Downloaded DOI BBHN-WC7H +Downloaded DOI V8XG-29XA +No data found, error 404 +Downloaded DOI 76QY-TY4Q +Downloaded DOI GPPU-PU2J +Downloaded DOI PXTU-M77T +No data found, error 404 +Downloaded DOI 29GX-CSDS +Downloaded DOI 9UDF-CKQX +Downloaded DOI JBYQ-6ZS6 +Downloaded DOI BF66-DXX3 +Downloaded DOI W24Q-6PYZ +Downloaded DOI 9T69-44BX +Downloaded DOI 6QHC-4RJC +Downloaded DOI XJC9-AD8Z +Downloaded DOI 4UCJ-XC6D +Downloaded DOI PS2M-RG4S +Downloaded DOI THMQ-4DXW +Downloaded DOI SHFB-TKGD +No data found, error 404 +Downloaded DOI TDM2-WVRJ +Downloaded DOI Q4VB-388E +Downloaded DOI T7X7-9MK7 +Downloaded DOI TGV9-2SQK +Downloaded DOI CFMN-BF8S +Downloaded DOI A3WT-99GX +Downloaded DOI BUY6-AUNC +Downloaded DOI A6BR-UZNE +Downloaded DOI NB3J-FQ8R +Downloaded DOI 9WXN-CWJ3 +Downloaded DOI XBVJ-SXN9 +Downloaded DOI E55Y-FEKR +Downloaded DOI XAD2-CPT4 +Downloaded DOI 55KA-43TP +Downloaded DOI AVGJ-PUXS +Downloaded DOI BQXQ-97NM +No data found, error 404 +Downloaded DOI H8MG-VUV5 +Downloaded DOI J5NT-6SDG +Downloaded DOI F9U9-KUBV +No data found, error 404 +Downloaded DOI UTKS-C8D7 +Downloaded DOI 5BKQ-UMJN +Downloaded DOI N52E-7GK6 +No data found, error 404 +Downloaded DOI SPSE-PHWK +Downloaded DOI ACEZ-C7Q2 +Downloaded DOI E2NX-CN4Y +Downloaded DOI HF38-GJJW +Downloaded DOI P7KR-2TX3 +Downloaded DOI V7QV-7K3D +Downloaded DOI V78A-NG6E +Downloaded DOI N3WB-XPHT +Downloaded DOI MNHV-S2QV +No data found, error 404 +Downloaded DOI T6DY-XS4J +Downloaded DOI 7HDE-X278 +No data found, error 404 +Downloaded DOI AX7S-X5N7 +Downloaded DOI XAQW-FWZZ +Downloaded DOI D4D5-Q76H +Downloaded DOI YZME-QH4T +Downloaded DOI K9K6-U2FE +Downloaded DOI D7N8-UWM3 +Downloaded DOI 2K3N-VXQS +Downloaded DOI 3456-JVMC +Downloaded DOI 9ZDN-PP2X +Downloaded DOI K65B-YKHZ +Downloaded DOI 5TAA-EXRA +Downloaded DOI 9FRC-4JVN +Downloaded DOI 3KF3-YGGY +Downloaded DOI 46ZB-C9JU +Downloaded DOI NGGP-YA24 +Downloaded DOI QPM4-BPM8 +Downloaded DOI F6GR-GH9J +Downloaded DOI 4GF3-97G5 +Downloaded DOI CDAA-K9ZN +Downloaded DOI 5K7N-W6KK +Downloaded DOI GP3H-DUZN +Downloaded DOI KVW2-8T2G +No data found, error 404 +Downloaded DOI HBD7-C23K +Downloaded DOI 8FVT-UW56 +Downloaded DOI BSFR-RZG6 +Downloaded DOI NJGR-35NQ +Downloaded DOI ZGJS-6YJJ +Downloaded DOI CM8D-YY68 +Downloaded DOI CZ42-Q4X4 +Downloaded DOI U8C2-KJPG +Downloaded DOI AN8J-D9YU +Downloaded DOI 5SX5-SQ2B +Downloaded DOI RTV2-TRWP +Downloaded DOI QEK2-G467 +Downloaded DOI UEUG-4NCD +Downloaded DOI PUQY-GJSB +Downloaded DOI BKDP-GVU2 +Downloaded DOI TCW3-UZ8N +Downloaded DOI UFVP-3QDA +Downloaded DOI J2WX-3AMH +Downloaded DOI U6HX-5PN3 +Downloaded DOI 58EP-59C5 +Downloaded DOI EQR8-ZA8P +Downloaded DOI UBY5-88TG +Downloaded DOI EXMU-JSMF +Downloaded DOI ZE95-UXAF +Downloaded DOI 2HRR-2QPZ +Downloaded DOI T9VK-66GX +Downloaded DOI GX76-JKA6 +Downloaded DOI AFFF-2V2R +Downloaded DOI RKDP-T53S +Downloaded DOI P4WN-VCP2 +Downloaded DOI SYCB-Q2YD +Downloaded DOI 5RWV-DZTP +Downloaded DOI NJ3J-QH95 +Downloaded DOI 52WH-428Q +Downloaded DOI NQ4G-6RT5 +Downloaded DOI F63D-MTME +Downloaded DOI 4BBN-Z8QB +Downloaded DOI FFSJ-BZKR +Downloaded DOI 3RGM-78PS +Downloaded DOI R8S5-KKR9 +Downloaded DOI MCKT-G9P8 +Downloaded DOI ZBW5-6RMV +Downloaded DOI Y2V4-Z3WX +Downloaded DOI 2QMR-7CC8 +Downloaded DOI HXEV-Q476 +Downloaded DOI 3VJQ-RQRK +Downloaded DOI F3YR-V9DG +Downloaded DOI JKNS-VUQY +Downloaded DOI 3FVB-8W3V +Downloaded DOI UGTT-8YW6 +Downloaded DOI S89A-55PD +Downloaded DOI NZH4-Y982 +Downloaded DOI AA3P-K6VT +Downloaded DOI MXWP-NTQR +Downloaded DOI Q2BA-GM75 +Downloaded DOI A9JM-2QNV +Downloaded DOI 986C-PSF8 +Downloaded DOI NQ2W-KBE4 +Downloaded DOI UQ4S-275R +No data found, error 404 +Downloaded DOI XUMC-PA8H +Downloaded DOI TGCQ-4HKK +Downloaded DOI V2P6-FVYS +Downloaded DOI GKHD-89H2 +No data found, error 404 +Downloaded DOI 5F6V-87E4 +Downloaded DOI ARBV-RYSG +Downloaded DOI JXBR-G6FX +Downloaded DOI 3A6H-97Z4 +No data found, error 404 +Downloaded DOI MYCK-94QG +Downloaded DOI TBPR-XER8 +Downloaded DOI HHCZ-QURZ +Downloaded DOI QAXA-A53R +Downloaded DOI YVP4-TXWP +Downloaded DOI AQH9-XZ5D +Downloaded DOI 86Q9-65KX +Downloaded DOI JMT5-6NJU +Downloaded DOI 8A5K-94UY +Downloaded DOI NHJW-9GPF +Downloaded DOI D2EU-HJQW +Downloaded DOI 7E8T-DSFV +Downloaded DOI R9KD-9SXD +Downloaded DOI 7SZ4-QKD9 +Downloaded DOI XAGY-DS6P +Downloaded DOI J2ZG-A9RH +Downloaded DOI A26H-FYDF +No data found, error 404 +Downloaded DOI UEVT-BDEW +Downloaded DOI AJ6M-MUG6 +Downloaded DOI YDKF-Y7U3 +Downloaded DOI SD3C-YAR9 +No data found, error 404 +Downloaded DOI 3SYK-5V2G +Downloaded DOI EUG8-SSNF +Downloaded DOI TBTB-3CEQ +Downloaded DOI A64B-7SXW +Downloaded DOI VGX2-K8HR +Downloaded DOI YEDS-DCMM +Downloaded DOI 7HMZ-EKUY +Downloaded DOI YKSN-VAYR +Downloaded DOI XKG2-G22G +Downloaded DOI G5YX-7ZFW +Downloaded DOI 2MN2-E7DM +Downloaded DOI MNX7-AHDW +No data found, error 404 +Downloaded DOI MYRW-MW74 +Downloaded DOI X8JU-M59J +Downloaded DOI 62H6-SE2X +Downloaded DOI BX85-4KNU +Downloaded DOI 7U5A-Q5CS +Downloaded DOI FT7J-Z925 +Downloaded DOI K658-8H7F +Downloaded DOI VZD8-GHG3 +Downloaded DOI X58F-WYFS +Downloaded DOI 3KDJ-4VSX +Downloaded DOI VJ7J-NNK5 +Downloaded DOI JKT4-VXPC +Downloaded DOI 5PTA-VGA3 +Downloaded DOI DB3K-YS57 +Downloaded DOI D8BK-E9EC +Downloaded DOI 3MEW-GEGV +Downloaded DOI DVTB-RQX7 +Downloaded DOI F5T7-U6JQ +Downloaded DOI D97U-5GSU +Downloaded DOI VPUE-KV4W +Downloaded DOI F4Z3-SXAE +Downloaded DOI 94JT-XGAT +Downloaded DOI 53FD-VC6N +Downloaded DOI Z9YZ-VXPQ +Downloaded DOI G2YA-YQFK +Downloaded DOI 7MT6-9KKH +Downloaded DOI QXP2-TWJY +Downloaded DOI M3PJ-ABKK +Downloaded DOI NMAT-NS5W +Downloaded DOI VZ3Q-R6B8 +Downloaded DOI U84H-QJJP +Downloaded DOI KXPD-D53P +Downloaded DOI ZTX4-9QJ7 +Downloaded DOI AXB3-SXWQ +Downloaded DOI TAWV-A4DS +Downloaded DOI 65ZN-4FWF +Downloaded DOI 56SJ-XNH2 +Downloaded DOI NZ7P-Y3E3 +Downloaded DOI QCYD-AT9G +Downloaded DOI YEKQ-XVQT +Downloaded DOI NVCT-PSYM +Downloaded DOI 2Z94-79FM +Downloaded DOI JBRU-RRV8 +Downloaded DOI HEXA-54E2 +Downloaded DOI 3E3M-VFEG +Downloaded DOI WFSD-R3KB +Downloaded DOI ESBN-YTWW +Downloaded DOI J2HT-YY46 +Downloaded DOI EPZ6-ADDD +Downloaded DOI AEH7-UGZJ +Downloaded DOI 8MTB-9N6T +Downloaded DOI HVH3-3WSZ +Downloaded DOI XYR7-A4BP +Downloaded DOI BBY8-N8KF +Downloaded DOI 626F-C9N6 +Downloaded DOI NH4C-9HQG +Downloaded DOI 5UW8-64JU +Downloaded DOI YA3X-2MSY +Downloaded DOI BSQF-GNPE +Downloaded DOI Z9MM-SCWK +Downloaded DOI KVM3-68WC +Downloaded DOI JW6E-VCBJ +Downloaded DOI RV55-9NYN +Downloaded DOI 8RES-RG33 +Downloaded DOI ABNQ-J66U +Downloaded DOI 9GS3-K69M +Downloaded DOI MFVR-PC2F +Downloaded DOI KF2F-RR4Z +Downloaded DOI WAWV-ZYSK +Downloaded DOI WK5T-R2D2 +Downloaded DOI QD6P-X8EQ +No data found, error 404 +Downloaded DOI RVMV-KZMD +Downloaded DOI QK84-G9B6 +No data found, error 404 +Downloaded DOI W6SS-J6EJ +Downloaded DOI JXTP-XTNT +Downloaded DOI ZUFN-K56N +Downloaded DOI 3RRF-WBB7 +Downloaded DOI QDHD-PKN8 +No data found, error 404 +Downloaded DOI 3YJT-K2CK +No data found, error 404 +Downloaded DOI WVX3-HBUK +Downloaded DOI NVWV-KNZW +Downloaded DOI WMZ6-663J +No data found, error 404 +Downloaded DOI EYV3-U9M8 +Downloaded DOI 5F46-7S8E +No data found, error 404 +Downloaded DOI J89C-PE25 +Downloaded DOI QHW5-MHZB +No data found, error 404 +Downloaded DOI DP4V-92FJ +No data found, error 404 +Downloaded DOI 2JSN-69XV +Downloaded DOI S28Z-RSMD +Downloaded DOI YHFG-PBF5 +No data found, error 404 +Downloaded DOI NEVH-UW2H +No data found, error 404 +Downloaded DOI VKGA-5DVR +Downloaded DOI CUNQ-32S7 +Downloaded DOI VM5P-H3CJ +Downloaded DOI ZN54-HYCR +No data found, error 404 +No data found, error 404 +Downloaded DOI 6MT8-PYG6 +Downloaded DOI 2ZUR-2WAR +Downloaded DOI DBV8-72PG +Downloaded DOI J2QS-SK3V +Downloaded DOI RWYJ-SNMZ +Downloaded DOI NWQ4-59VR +Downloaded DOI 3JP8-QYCN +Downloaded DOI 8DW5-CMGY +Downloaded DOI H9U6-2772 +Downloaded DOI 44TR-NTUX +Downloaded DOI ZXRB-A755 +Downloaded DOI WBH3-K5CH +Downloaded DOI WHJW-YK67 +Downloaded DOI ATCC-Q6WU +Downloaded DOI AM8F-N8M9 +Downloaded DOI M7XQ-4G4H +Downloaded DOI F68S-NRED +Downloaded DOI BSDC-EBRU +Downloaded DOI WHC8-DK4B +No data found, error 404 +Downloaded DOI 6NMR-KHWK +No data found, error 404 +Downloaded DOI 3Q78-Q8EG +Downloaded DOI V5MV-DPGZ +Downloaded DOI M7GB-DYUD +Downloaded DOI WXZA-6M7D +Downloaded DOI FQEQ-KT8Y +No data found, error 404 +Downloaded DOI D2UA-BE6J +Downloaded DOI VHPP-FM78 +Downloaded DOI FQZ7-4C97 +Downloaded DOI PB8Y-JZPM +Downloaded DOI HRMM-JAKT +Downloaded DOI JF3Z-RHD9 +Downloaded DOI RB2Q-W5B4 +No data found, error 404 +Downloaded DOI SXAF-ZX4R +Downloaded DOI XQVD-9CZ2 +Downloaded DOI Q6E7-TEMG +Downloaded DOI NXJP-KDT7 +Downloaded DOI M4RJ-Q92E +Downloaded DOI WDA5-WVKF +Downloaded DOI WGVP-AVSJ +Downloaded DOI 3S3J-QJY2 +Downloaded DOI 9783-8UVG +No data found, error 404 +Downloaded DOI 7UAV-USET +Downloaded DOI QSVV-FEB6 +Downloaded DOI 9ETF-7UNN +Downloaded DOI XFUN-VUAC +Downloaded DOI 7M34-5PV2 +Downloaded DOI BW8G-ZU6Z +Downloaded DOI XX9Q-37ET +Downloaded DOI 3M6S-G2VF +Downloaded DOI SEZV-XUB2 +Downloaded DOI MHR8-9J7A +Downloaded DOI EUVP-EK5R +Downloaded DOI JXK3-A4JV +Downloaded DOI 4DR5-9KUU +Downloaded DOI NH4F-QPAA +Downloaded DOI 6FWT-3VZ5 +Downloaded DOI SGM5-CUPD +Downloaded DOI SNJZ-YMJ8 +Downloaded DOI DG5H-84E3 +Downloaded DOI ARKM-29P2 +Downloaded DOI 48SA-9B8G +Downloaded DOI UPJH-BFEP +Downloaded DOI 59XE-6JFY +Downloaded DOI XKR2-NUU5 +Downloaded DOI 5EBY-UAUS +Downloaded DOI DR5J-CD9S +Downloaded DOI 5S3T-CQ34 +Downloaded DOI XQP4-MJGD +Downloaded DOI 8D7M-NQKD +Downloaded DOI QF9K-RPM3 +No data found, error 404 +Downloaded DOI VMMF-RBMM +Downloaded DOI 9VAJ-ABNB +No data found, error 404 +No data found, error 404 +Downloaded DOI XMCE-2WND +Downloaded DOI 4QNV-CFGA +Downloaded DOI Z39F-UMHM +No data found, error 404 +No data found, error 404 +Downloaded DOI EUVF-PGB8 +Downloaded DOI ZPQ8-SNZR +Downloaded DOI N7HJ-AVVS +Downloaded DOI QB4H-CJHF +Downloaded DOI 7SCE-FQPZ +Downloaded DOI P25Y-E8H2 +Downloaded DOI KSSQ-J3PU +Downloaded DOI G9DB-NXMA +Downloaded DOI H8SP-WDK9 +Downloaded DOI 3FA6-XNRE +Downloaded DOI AKKG-BY85 +Downloaded DOI J63V-3SXN +Downloaded DOI JQW7-SS73 +Downloaded DOI WGEX-QG2D +Downloaded DOI 3KN9-M99G +Downloaded DOI 5Z56-QQRX +Downloaded DOI DXG6-3YPE +Downloaded DOI KUDB-7UHA +No data found, error 404 +No data found, error 404 +Downloaded DOI UTV6-KFZ6 +Downloaded DOI KE68-WEHY +Downloaded DOI 6XK6-RMSZ +Downloaded DOI NHYU-BC4S +Downloaded DOI X7EY-GRKR +Downloaded DOI DNRM-N3BP +No data found, error 404 +Downloaded DOI 2DE7-5BDA +No data found, error 404 +Downloaded DOI 23MM-RH6R +Downloaded DOI 3P3J-4BGY +Downloaded DOI JDT2-QF8H +Downloaded DOI QNV7-324Y +Downloaded DOI MN3C-CUTY +Downloaded DOI VGNB-BNC6 +Downloaded DOI NMQE-T74J +Downloaded DOI S6TW-WHD8 +Downloaded DOI BD2E-BVHU +Downloaded DOI V2D6-WP7K +Downloaded DOI 3AM8-9BJM +Downloaded DOI DHXP-AMM9 +Downloaded DOI 5EFJ-3MFF +Downloaded DOI G49K-47QS +Downloaded DOI A4HQ-ZQFE +Downloaded DOI 3VQC-Y2KQ +Downloaded DOI C43F-KZV5 +Downloaded DOI 8TV5-3AFW +Downloaded DOI HRDU-DN3N +Downloaded DOI EF4N-ND6D +Downloaded DOI QEWE-XTY3 +Downloaded DOI QBSB-AQZF +Downloaded DOI H955-TEUB +Downloaded DOI 56WS-3SKE +Downloaded DOI B3KZ-4MTF +Downloaded DOI RC72-84U3 +No data found, error 404 +Downloaded DOI 6D3A-TX5M +Downloaded DOI M5ZM-KSYB +Downloaded DOI NRGB-GTXS +Downloaded DOI 59NY-4X43 +Downloaded DOI M6UB-KJSH +Downloaded DOI UTHM-SM2V +Downloaded DOI ZAWV-6J3V +Downloaded DOI EF68-UE8J +Downloaded DOI 94BE-PGB7 +Downloaded DOI QKB9-ZUC2 +Downloaded DOI 5JP5-84TS +Downloaded DOI BM2M-2P9Y +Downloaded DOI 7UFY-5ZPG +Downloaded DOI ED6Q-HSPZ +Downloaded DOI WYVC-P8AZ +Downloaded DOI H5CP-M7BE +Downloaded DOI XY8G-2JSK +Downloaded DOI URDT-AXQA +Downloaded DOI YYS9-5E9P +Downloaded DOI KP2N-DMQ5 +Downloaded DOI 2J8C-SJQQ +Downloaded DOI 452R-FHJW +Downloaded DOI 7AQG-T9DT +Downloaded DOI NCWX-ASG5 +Downloaded DOI 32NG-F4SD +Downloaded DOI 8AKU-U6KQ +Downloaded DOI HMDB-8P7S +Downloaded DOI W5QC-4EVW +Downloaded DOI ZUE2-FM97 +Downloaded DOI ZKNT-9ZWK +Downloaded DOI 3UTE-QDKQ +Downloaded DOI DQ2B-FCH6 +Downloaded DOI 82P3-E4P7 +Downloaded DOI UAB8-SK5Y +Downloaded DOI CJN9-GX3D +Downloaded DOI 687E-6W3U +Downloaded DOI ZK9F-Y2NP +Downloaded DOI XGYD-8RN8 +Downloaded DOI V3DH-CJYK +Downloaded DOI QEJ2-TG7P +Downloaded DOI JZ78-C8GJ +Downloaded DOI AAHK-N5BD +Downloaded DOI DRKA-6R68 +Downloaded DOI F8JS-5N6U +Downloaded DOI JQ6V-QGNV +No data found, error 404 +No data found, error 404 +Downloaded DOI 9WRB-T5ZG +Downloaded DOI 5A7H-Z9MR +Downloaded DOI 9HWR-XSE8 +Downloaded DOI G5AT-MZRJ +Downloaded DOI KCDE-8TRA +Downloaded DOI QAY8-QPJ5 +Downloaded DOI NTB5-S5G2 +Downloaded DOI P37K-GAXQ +Downloaded DOI T8RZ-NZ5M +Downloaded DOI TMFX-F2XZ +Downloaded DOI 7QEX-EMWB +Downloaded DOI YHJD-MVHK +Downloaded DOI WS53-NRMN +Downloaded DOI 5VUS-2J5B +No data found, error 404 +Downloaded DOI KTFS-JPWV +Downloaded DOI 9JJA-2V7S +Downloaded DOI QSDV-KWHF +Downloaded DOI W7ZB-Q6NW +Downloaded DOI JHT8-36XP +Downloaded DOI WCYV-QB4X +Downloaded DOI 6VSN-AAFQ +Downloaded DOI DJVR-6KSE +Downloaded DOI BD76-7Q47 +Downloaded DOI VY6T-W92P +Downloaded DOI 4UVB-YMGC +Downloaded DOI DP6T-ZJ2A +Downloaded DOI 7EAB-36GC +Downloaded DOI A9FV-82RT +Downloaded DOI 7M87-3C5Q +Downloaded DOI 3UVZ-85SF +No data found, error 404 +Downloaded DOI VK3Z-YM7A +Downloaded DOI VXKC-Z256 +No data found, error 404 +Downloaded DOI SEX8-SEBM +No data found, error 404 +Downloaded DOI GZ5P-HT8E +Downloaded DOI ZJZA-84D2 +Downloaded DOI YPAA-XTTX +Downloaded DOI FKWT-PV8N +Downloaded DOI N7F2-4YET +Downloaded DOI KCKU-VRJZ +Downloaded DOI BBND-78XH +Downloaded DOI KB4T-E3PY +Downloaded DOI 5R6H-JPKU +Downloaded DOI 4B8H-CC95 +Downloaded DOI NM3J-XX7R +Downloaded DOI 67RT-N4R7 +Downloaded DOI YE83-2CKX +No data found, error 404 +Downloaded DOI DENZ-S384 +Downloaded DOI XANJ-PMEN +Downloaded DOI S853-39X6 +Downloaded DOI 7PEB-2853 +Downloaded DOI K8TX-MNBC +Downloaded DOI CAF4-KT3N +Downloaded DOI T2F4-5PP4 +Downloaded DOI DPE6-RT36 +Downloaded DOI QNDQ-BUAW +Downloaded DOI C7EE-QZ42 +Downloaded DOI B9YD-2GW8 +Downloaded DOI BGXM-ST5G +Downloaded DOI WF8A-UUNY +Downloaded DOI GH3X-AH7J +No data found, error 404 +Downloaded DOI QCQE-J62E +Downloaded DOI 8M5Y-VVU2 +Downloaded DOI NXUD-S62C +Downloaded DOI 5SDG-7A65 +Downloaded DOI 6NQ9-AKEN +No data found, error 404 +No data found, error 404 +Downloaded DOI N823-4USJ +Downloaded DOI T5RM-NNA9 +No data found, error 404 +Downloaded DOI EUJQ-H283 +Downloaded DOI 4CBX-ZWBX +Downloaded DOI BVFM-Z55C +Downloaded DOI Q9NK-RKWV +Downloaded DOI 4JCC-KCAQ +Downloaded DOI W4TB-6NE4 +Downloaded DOI 7X88-4F65 +Downloaded DOI F6D6-NG2J +Downloaded DOI B4KW-ZH24 +Downloaded DOI RF8Y-Q3ND +Downloaded DOI FD7U-5T3J +Downloaded DOI W7CK-YT8T +Downloaded DOI 6S2W-8SCR +Downloaded DOI 3FE3-6TEN +Downloaded DOI 99QF-ZWJY +Downloaded DOI K6WN-5URW +No data found, error 404 +Downloaded DOI ZKW4-WM7G +Downloaded DOI QV3W-3HPZ +Downloaded DOI 672Q-HEMW +Downloaded DOI KW4K-P7JJ +Downloaded DOI C5G5-X4Q6 +No data found, error 404 +Downloaded DOI NAUK-5VAR +Downloaded DOI VVRA-9G6K +Downloaded DOI 5RFC-VGME +Downloaded DOI F26T-2EPQ +Downloaded DOI UJG6-MR96 +Downloaded DOI EUQA-CT2X +Downloaded DOI QSF9-3EKS +Downloaded DOI EZXH-WHVU +Downloaded DOI MW5F-BUW6 +Downloaded DOI 6832-7ZUN +Downloaded DOI 4S7M-BX6C +Downloaded DOI GNWC-PTY3 +Downloaded DOI XM85-KYZG +Downloaded DOI ZW2F-9T6J +Downloaded DOI 566G-WPYR +Downloaded DOI UGH6-JSYR +Downloaded DOI 7TTN-9QGU +Downloaded DOI RM8D-WUQQ +Downloaded DOI DUTX-DSD8 +Downloaded DOI C7ZY-6NM6 +Downloaded DOI 9JT6-T3PG +Downloaded DOI VF3Q-QFWZ +Downloaded DOI E7JF-JWRH +Downloaded DOI TFRZ-VRM8 +Downloaded DOI Y6BX-SYFB +Downloaded DOI GC43-WQCU +Downloaded DOI 87M5-SQER +Downloaded DOI 3H23-T64U +Downloaded DOI D5DP-CN69 +Downloaded DOI 64F3-Z2C6 +Downloaded DOI P6CC-CC4Q +Downloaded DOI 45DE-MZNZ +Downloaded DOI VHA2-XP5H +Downloaded DOI 4FHS-NNGY +Downloaded DOI GTXM-RAPK +No data found, error 404 +Downloaded DOI BCCT-FCJU +No data found, error 404 +Downloaded DOI 88GY-ZR48 +Downloaded DOI 8855-6Y47 +Downloaded DOI DTUW-H6GF +Downloaded DOI RSXR-BQMW +No data found, error 404 +Downloaded DOI RJWP-2ST4 +Downloaded DOI 4CTP-5GKS +Downloaded DOI NZGW-TFJ6 +Downloaded DOI WTB8-269Q +Downloaded DOI YSHW-YE4F +Downloaded DOI MTXK-K5GS +Downloaded DOI QDRQ-YQN4 +Downloaded DOI GSSY-TSGQ +Downloaded DOI JWAJ-92KR +Downloaded DOI HP9P-4553 +Downloaded DOI 7QPQ-QS3U +Downloaded DOI 8NG2-Z4AX +Downloaded DOI DZ9K-4BRT +Downloaded DOI 9DXR-AQWH +Downloaded DOI HBJ5-6MCD +Downloaded DOI 52US-FAV7 +Downloaded DOI 45CD-EF6J +Downloaded DOI YUX9-8G8Q +Downloaded DOI K6CU-ZMN2 +Downloaded DOI 6E36-9NKC +Downloaded DOI Q35W-RS6K +Downloaded DOI 9MS3-J3DT +Downloaded DOI 9T6X-4753 +Downloaded DOI 4QXR-FGFC +No data found, error 404 +Downloaded DOI 3FYG-5N2J +Downloaded DOI DGXM-Q9G7 +Downloaded DOI K3HT-N6Q6 +Downloaded DOI JA5Q-3DGZ +Downloaded DOI FY2N-E7HF +No data found, error 404 +Downloaded DOI PERR-Q5AW +Downloaded DOI 3SC7-ZF7G +Downloaded DOI UA33-QXJN +Downloaded DOI KC45-8NMH +Downloaded DOI MJC9-VV7P +Downloaded DOI JBN7-UYY3 +Downloaded DOI CHKM-BFZM +Downloaded DOI D49N-QXMM +Downloaded DOI GAQG-HEWT +Downloaded DOI 9C9R-B3US +No data found, error 404 +Downloaded DOI K57X-24YV +Downloaded DOI ZHYH-9HCU +Downloaded DOI 7EZH-CJXJ +Downloaded DOI NN66-XD97 +Downloaded DOI 5HB6-W59N +Downloaded DOI 597M-39JX +Downloaded DOI GP9U-ZQVW +Downloaded DOI NCYJ-R2ZS +Downloaded DOI RU2T-2GJC +Downloaded DOI KAY5-KZMM +No data found, error 404 +Downloaded DOI SE9G-CCWP +Downloaded DOI C6Z9-BAXC +Downloaded DOI FHET-4GWW +Downloaded DOI Z9NT-DUP2 +Downloaded DOI 3MC8-FPFG +Downloaded DOI 7AU8-K4XZ +Downloaded DOI TGGR-YVTY +No data found, error 404 +Downloaded DOI K352-7M6T +Downloaded DOI 3W3Y-V8NJ +Downloaded DOI QFTV-YUJ5 +Downloaded DOI 6AGQ-3ZV7 +Downloaded DOI Q2KP-XBHF +Downloaded DOI BCPF-G9T4 +No data found, error 404 +Downloaded DOI H7E2-W5FY +Downloaded DOI 89WY-5WPX +Downloaded DOI 7EAV-UQMJ +Downloaded DOI PFVJ-YN9B +Downloaded DOI C327-FGZP +Downloaded DOI RQG5-VWJG +Downloaded DOI 9KUT-VY3Q +Downloaded DOI S2C4-X6XG +Downloaded DOI VRD9-6F8M +Downloaded DOI 8FPR-4CCM +Downloaded DOI P4QY-TYTQ +Downloaded DOI D3HY-VPVD +Downloaded DOI DVCD-4N8D +Downloaded DOI N56M-MVWS +No data found, error 404 +Downloaded DOI 6REZ-6FWU +Downloaded DOI 6MEX-2KTE +Downloaded DOI E7PP-ZG92 +Downloaded DOI RVA4-4P6U +Downloaded DOI TDKV-PG96 +Downloaded DOI KXN3-4MYR +Downloaded DOI XTXW-QJBA +Downloaded DOI HPPZ-EXKN +Downloaded DOI SN7T-PM8P +Downloaded DOI F4H4-76VQ +Downloaded DOI P5XW-9B3M +Downloaded DOI F9NS-UCKA +Downloaded DOI 6C2Q-T4JN +Downloaded DOI G7YE-NH9C +Downloaded DOI QYKP-W7YA +Downloaded DOI JYYY-T5QU +Downloaded DOI 5KDF-2DZE +Downloaded DOI F9J7-JY7M +Downloaded DOI E9GG-5YXQ +Downloaded DOI 4GX6-ZV9F +Downloaded DOI XNZH-33R2 +Downloaded DOI J6MD-UK88 +Downloaded DOI RCNA-A6AZ +Downloaded DOI NUU6-ZBY2 +Downloaded DOI 5SMR-4FU7 +Downloaded DOI 5FM6-U5GW +Downloaded DOI B3KJ-XTTH +Downloaded DOI RJQY-KSH2 +Downloaded DOI QSNH-GMQV +Downloaded DOI TT72-AVJK +Downloaded DOI RYBJ-NCDB +No data found, error 404 +Downloaded DOI JCKQ-9XTT +Downloaded DOI 94E5-HNR6 +Downloaded DOI 8FCS-U32X +Downloaded DOI E83D-GG5Z +Downloaded DOI VBDW-ZSNH +Downloaded DOI EMD4-QBSZ +Downloaded DOI RFYE-QQRH +Downloaded DOI GR9J-CDTJ +Downloaded DOI 7NC9-9CNU +No data found, error 404 +Downloaded DOI 2PYP-HD4F +Downloaded DOI KQM8-M45N +Downloaded DOI VNPC-AXX7 +Downloaded DOI EK3K-XMJW +Downloaded DOI JX7K-VYBZ +Downloaded DOI 3FE3-28W9 +Downloaded DOI TGF3-RP2B +Downloaded DOI V9CZ-22A2 +Downloaded DOI JGSQ-4XZE +Downloaded DOI 844S-3K8K +Downloaded DOI FT9G-P2RQ +Downloaded DOI F7AS-8FC7 +Downloaded DOI 45Y9-84DR +No data found, error 404 +Downloaded DOI 8TXX-SQYV +Downloaded DOI XR25-EHEK +Downloaded DOI WYQQ-94WQ +Downloaded DOI 35TB-4BC9 +Downloaded DOI EY9U-FR5H +Downloaded DOI 7V4Q-VHCE +Downloaded DOI 3F6N-VK5V +No data found, error 404 +Downloaded DOI FC4M-KUSX +Downloaded DOI Y2BS-VJTN +Downloaded DOI WJZ7-82AC +Downloaded DOI EPB5-8YZW +Downloaded DOI QW83-NV4T +Downloaded DOI NQ4W-ZHKB +Downloaded DOI 9A8G-98Q3 +Downloaded DOI VABD-GNZ9 +Downloaded DOI K2VV-YCME +Downloaded DOI JYYR-R6S9 +Downloaded DOI 98NW-YHP4 +Downloaded DOI EAMN-8EWU +Downloaded DOI 2XAK-MQX6 +Downloaded DOI KZJN-NDUB +No data found, error 404 +Downloaded DOI 7JX9-F86F +Downloaded DOI JAM2-3SCG +Downloaded DOI M8P7-2KPM +No data found, error 404 +Downloaded DOI WNQ7-QYZC +Downloaded DOI MJX6-3MJR +Downloaded DOI YER7-CKFQ +Downloaded DOI EKKD-JGSA +Downloaded DOI UW7Z-YHB7 +Downloaded DOI GPP9-5TQU +Downloaded DOI VR3Y-KJMH +Downloaded DOI SV2W-758J +No data found, error 404 +Downloaded DOI N4M9-GZWB +Downloaded DOI P3K4-FWR9 +Downloaded DOI A7SD-ZF4V +Downloaded DOI VN3R-J4WF +Downloaded DOI DFRA-EU3Y +Downloaded DOI KHST-4FXB +Downloaded DOI HFHS-WUB3 +Downloaded DOI GZYR-VVNE +Downloaded DOI GZQ6-3ZKX +No data found, error 404 +No data found, error 404 +Downloaded DOI QXV6-63E9 +Downloaded DOI 2NBT-6MMX +Downloaded DOI KX67-TSYU +Downloaded DOI FHZE-PNUB +Downloaded DOI DF5W-XSHY +Downloaded DOI HR7T-A3ZF +Downloaded DOI 4QHA-8EF6 +Downloaded DOI 9EKW-3V9C +Downloaded DOI CGKW-5E36 +Downloaded DOI 97VX-F2WK +Downloaded DOI ZYV8-AMBH +Downloaded DOI UJEV-JU5B +No data found, error 404 +Downloaded DOI XPNA-8PS5 +Downloaded DOI FHM4-2C3P +Downloaded DOI M2QD-83F3 +Downloaded DOI JTHV-JQU8 +Downloaded DOI YETV-5CYE +Downloaded DOI U5TT-J9JX +Downloaded DOI 3DU5-U6BQ +Downloaded DOI XF6W-UA7P +Downloaded DOI VG2Q-KHAH +Downloaded DOI N3JT-ZGUQ +Downloaded DOI 5G23-KRRY +No data found, error 404 +Downloaded DOI 8S3U-3YTH +Downloaded DOI 6V44-5HGX +Downloaded DOI 3U4E-J94Y +Downloaded DOI 3W3Y-XAAF +Downloaded DOI 64YT-Y99F +Downloaded DOI 2MMK-TKAP +Downloaded DOI PW3S-7FKH +Downloaded DOI GJZ6-RHEX +Downloaded DOI DNMS-AVKC +Downloaded DOI XWCU-R265 +Downloaded DOI YSHN-4QH4 +Downloaded DOI 4PEK-KYYC +Downloaded DOI X5XE-DJ27 +Downloaded DOI R8PK-R34G +Downloaded DOI 7C79-4QUW +Downloaded DOI E9ZH-YXJP +Downloaded DOI SNVF-GZST +Downloaded DOI QFR7-7FUD +Downloaded DOI VMJF-N3DF +Downloaded DOI YUR5-NWXH +Downloaded DOI DM2S-2UMC +Downloaded DOI XEBA-7B49 +Downloaded DOI NS38-VVKD +Downloaded DOI 3945-4NBA +Downloaded DOI 95JM-3P3T +Downloaded DOI T9H7-N8RC +Downloaded DOI K3EB-EVME +Downloaded DOI MUSD-B7H4 +Downloaded DOI FXZ9-X679 +Downloaded DOI 84NH-3X9F +Downloaded DOI H223-WFQE +Downloaded DOI ARQC-X89S +Downloaded DOI KPSF-HX5T +Downloaded DOI FV49-CTR3 +Downloaded DOI T56A-V6TZ +No data found, error 404 +Downloaded DOI P6AU-JTDX +Downloaded DOI CFMV-VAS3 +Downloaded DOI CAKE-TAZC +Downloaded DOI Z469-Y4NR +Downloaded DOI S54Y-7H7Q +Downloaded DOI Z9N8-S22M +Downloaded DOI T3UY-7PDY +Downloaded DOI 3CCK-2ZD9 +Downloaded DOI ZU4R-X6B7 +Downloaded DOI Y6ZH-PX7A +Downloaded DOI VFS5-4FXD +Downloaded DOI RYVM-VJQ7 +Downloaded DOI X69E-4F22 +Downloaded DOI J2EF-8AKQ +No data found, error 404 +No data found, error 404 +Downloaded DOI UTUZ-H896 +Downloaded DOI K55W-8FAA +Downloaded DOI X77Y-QKVJ +Downloaded DOI QQJY-Q67A +Downloaded DOI 3DKM-KQ2Z +Downloaded DOI NCJR-N97Q +Downloaded DOI 8ANZ-86KN +Downloaded DOI K3JS-Y3EU +Downloaded DOI BHQT-HKQK +Downloaded DOI A4VU-FMYU +Downloaded DOI USTF-3BVU +Downloaded DOI VB4E-U5NP +Downloaded DOI SHYV-UKNR +No data found, error 404 +Downloaded DOI D8KA-GF32 +Downloaded DOI AP97-RYCS +Downloaded DOI KYTG-U5M7 +Downloaded DOI 33NS-76H2 +Downloaded DOI 6HEZ-J62T +Downloaded DOI PPPM-6NHF +Downloaded DOI FT7D-6HZJ +Downloaded DOI HNYV-HQEQ +No data found, error 404 +Downloaded DOI 8H7S-JFC6 +No data found, error 404 +No data found, error 404 +Downloaded DOI WRJ5-4GSZ +Downloaded DOI UBQ5-8RYX +No data found, error 404 +Downloaded DOI T7Z7-U38U +Downloaded DOI 5WAT-ZS6N +Downloaded DOI JW9T-VPBS +Downloaded DOI DQH2-GP5D +Downloaded DOI D9K7-AU4U +Downloaded DOI 5WT7-Q3TJ +Downloaded DOI Q268-7RD3 +Downloaded DOI 5WGF-45XQ +No data found, error 404 +Downloaded DOI 85FM-MCW4 +Downloaded DOI ZA7C-QAT5 +Downloaded DOI WT7Z-85YQ +Downloaded DOI 7DCT-MAT2 +No data found, error 404 +Downloaded DOI V535-R32A +No data found, error 404 +Downloaded DOI C3J7-EWQ5 +Downloaded DOI 5FUF-Y52P +Downloaded DOI YZ66-5KX2 +No data found, error 404 +Downloaded DOI ZQCR-SUE2 +Downloaded DOI 4X66-GS65 +Downloaded DOI E56U-TUT8 +Downloaded DOI Z9XE-RXZ5 +Downloaded DOI XJ75-THHN +Downloaded DOI V2TD-EME8 +Downloaded DOI WRP3-29GW +Downloaded DOI FDFZ-BZ55 +Downloaded DOI UPU9-ATNF +Downloaded DOI A37P-5U32 +Downloaded DOI QNCQ-9MJD +Downloaded DOI 8ZRT-DVWW +Downloaded DOI 4Z68-BF4B +Downloaded DOI UGUX-XR9Y +Downloaded DOI SJ6Z-QBQK +Downloaded DOI K267-6BW3 +Downloaded DOI EY6X-C2MY +Downloaded DOI QGCU-K8NJ +Downloaded DOI N7S8-HY3S +Downloaded DOI 2KD3-F6B8 +Downloaded DOI PUQQ-3E43 +No data found, error 404 +Downloaded DOI XSHH-B35K +Downloaded DOI 3748-E6MJ +Downloaded DOI HVMX-BYET +No data found, error 404 +Downloaded DOI MFY4-F4CX +Downloaded DOI KJFT-HUXP +Downloaded DOI QVBR-4N3K +Downloaded DOI NUGT-28AP +Downloaded DOI TVJ2-TYGV +Downloaded DOI VMRK-VC7X +Downloaded DOI JP4N-NQPP +Downloaded DOI BMWQ-XJN2 +Downloaded DOI WF5W-BRX7 +No data found, error 404 +Downloaded DOI HKNS-PUQR +Downloaded DOI Z24E-2SN3 +Downloaded DOI YBZZ-PDYC +Downloaded DOI CMXW-986J +No data found, error 404 +Downloaded DOI SWJ9-P8F8 +No data found, error 404 +Downloaded DOI PU5T-NP9A +Downloaded DOI NMH6-SBYT +Downloaded DOI KMEG-CXCE +Downloaded DOI HC4T-N2Q6 +Downloaded DOI V6ER-Z7DK +Downloaded DOI SQJ2-TZDC +Downloaded DOI FHF2-XXQM +Downloaded DOI A7TM-DGZY +Downloaded DOI SM5B-YZR2 +Downloaded DOI XKGW-XVHJ +Downloaded DOI YD4A-HZ7E +Downloaded DOI UZDV-6V6D +Downloaded DOI DJRB-EJ8N +Downloaded DOI G6Q8-QSVV +Downloaded DOI JBVR-TJ4S +Downloaded DOI 3ZDY-MX8M +Downloaded DOI E99X-2VDW +Downloaded DOI SQU7-BZNW +Downloaded DOI 96J3-9JBB +Downloaded DOI ATKV-69FW +Downloaded DOI YTHH-2CQV +Downloaded DOI MCBQ-KWJK +Downloaded DOI Z9HN-4H2H +Downloaded DOI J9MZ-SBY9 +Downloaded DOI JM38-U42W +Downloaded DOI DT72-UK2B +Downloaded DOI T36D-D38R +Downloaded DOI JTJX-KXCP +Downloaded DOI HQB4-4QHM +Downloaded DOI T5PT-3BYW +Downloaded DOI 7WVE-K6RF +Downloaded DOI BBPJ-ZFDY +Downloaded DOI JRUK-69FC +Downloaded DOI P8J4-EY26 +Downloaded DOI X85K-XB88 +Downloaded DOI ZPCC-4W84 +Downloaded DOI AM2Y-4B7X +Downloaded DOI YKCC-8BFD +Downloaded DOI 5X7P-E4YF +Downloaded DOI T3GJ-YVJV +Downloaded DOI 484A-4S7Y +Downloaded DOI SJEB-YXTZ +No data found, error 404 +Downloaded DOI 3HPY-7TR6 +Downloaded DOI 5YZH-RWYM +Downloaded DOI NEVE-4RZY +No data found, error 404 +Downloaded DOI YXRK-QA8P +Downloaded DOI 68UZ-NW6T +Downloaded DOI Z377-VAGT +No data found, error 404 +Downloaded DOI GUTS-N9Y5 +No data found, error 404 +Downloaded DOI 8DJX-CYJ6 +Downloaded DOI 4XB6-DFZ3 +Downloaded DOI YU8U-3RSW +Downloaded DOI Y243-5BWY +Downloaded DOI T9X3-E5QU +Downloaded DOI 4U8F-MXPW +Downloaded DOI HSRZ-8QEY +Downloaded DOI ADAG-C5J4 +Downloaded DOI 2NDR-VQSY +Downloaded DOI QYFM-ZFB7 +Downloaded DOI EW43-ZARN +Downloaded DOI THBX-9MU2 +Downloaded DOI ZHTX-P2VE +Downloaded DOI 9RJJ-AM6K +Downloaded DOI 9RW6-AG9G +Downloaded DOI 26PP-Y3EE +Downloaded DOI GWZV-FDMN +Downloaded DOI 8XCW-ZZTH +Downloaded DOI HFA2-E5WK +Downloaded DOI PTZ7-WTXJ +Downloaded DOI C8QB-N28A +Downloaded DOI YM7B-PYRW +Downloaded DOI 8QT6-SZZ2 +Downloaded DOI CU4B-QTE4 +Downloaded DOI UJQJ-VRWF +Downloaded DOI GT87-FH2C +Downloaded DOI R3RC-U6E4 +Downloaded DOI BCYJ-PHHC +Downloaded DOI RRW7-ME97 +Downloaded DOI GFWC-KRT2 +No data found, error 404 +Downloaded DOI UWKV-C89N +Downloaded DOI WBPY-XNYW +Downloaded DOI PSMN-WX5Z +Downloaded DOI 7JBA-VG98 +Downloaded DOI 4KHA-AWGB +Downloaded DOI FMSR-MW3A +Downloaded DOI BVZQ-Z75D +Downloaded DOI D4UR-2XTZ +No data found, error 404 +Downloaded DOI SYPZ-XBEA +Downloaded DOI KGNZ-AU58 +Downloaded DOI B2EC-JPDG +Downloaded DOI R7Z9-GV4W +Downloaded DOI 2QCH-D4DR +Downloaded DOI DUAD-4MZW +Downloaded DOI 69KT-ACEB +No data found, error 404 +No data found, error 404 +Downloaded DOI 9YR4-TMJZ +Downloaded DOI 5SEK-F7FQ +Downloaded DOI 8M8Y-53KQ +Downloaded DOI 8A4H-VQXA +Downloaded DOI KGVC-RYY7 +No data found, error 404 +Downloaded DOI EQ5K-Y3KS +No data found, error 404 +Downloaded DOI PPW8-F2YE +Downloaded DOI TSM9-ZHG6 +Downloaded DOI 5UUM-ZGXB +No data found, error 404 +Downloaded DOI 9ZXD-BUC6 +Downloaded DOI XHQQ-ASCW +Downloaded DOI NSVE-3RNN +Downloaded DOI WK4E-86CP +Downloaded DOI RT5X-9J7T +Downloaded DOI DHQ5-NDR7 +No data found, error 404 +No data found, error 404 +Downloaded DOI YJGC-XU7E +Downloaded DOI 6643-9S7B +Downloaded DOI WGNV-S92T +Downloaded DOI XB7X-MH2Q +Downloaded DOI QA8E-9WTF +Downloaded DOI 4BDM-M9CN +Downloaded DOI 69BV-MZHM +No data found, error 404 +Downloaded DOI TSPV-8KGG +Downloaded DOI 6BRN-9VEQ +Downloaded DOI MXGD-RSSH +Downloaded DOI QF3S-SKUE +Downloaded DOI 43BC-DAEY +No data found, error 404 +Downloaded DOI 5DWP-C7B4 +Downloaded DOI E3SG-6BTD +Downloaded DOI 4T63-GEZ8 +Downloaded DOI CQUN-FAY6 +Downloaded DOI N6A4-8VGN +No data found, error 404 +Downloaded DOI UQ2Q-FSK4 +Downloaded DOI MSZG-RCZT +Downloaded DOI G84E-MPQG +Downloaded DOI CYB3-5Q3Q +Downloaded DOI RS65-R6YE +Downloaded DOI 5EUH-H8AV +Downloaded DOI YR2G-K57F +Downloaded DOI Q2EF-XWFA +Downloaded DOI RDJ6-VQJ4 +Downloaded DOI C6NK-S5TT +Downloaded DOI ZJAY-X6RM +Downloaded DOI FQAE-85NZ +Downloaded DOI M8X6-23P8 +Downloaded DOI AVEH-J5HX +Downloaded DOI R5T2-BQ47 +Downloaded DOI G4EB-93BJ +Downloaded DOI NZZG-HF3N +Downloaded DOI 5KKZ-DCK4 +No data found, error 404 +Downloaded DOI A4FJ-9AYD +Downloaded DOI 7H28-VBNJ +Downloaded DOI NVJA-NWRD +Downloaded DOI Z43R-ZCGR +Downloaded DOI 89P9-4NUX +Downloaded DOI D7MJ-T5FG +Downloaded DOI QUNQ-64BD +Downloaded DOI GZXC-2W83 +Downloaded DOI EBQ2-49AY +Downloaded DOI Z9CQ-XTKT +Downloaded DOI A3EE-WFNP +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) + +real 444m33,918s +user 6m17,223s +sys 1m9,423s diff --git a/download_scripts/log_files/nohup_AERONET_EBAS.out b/download_scripts/log_files/nohup_AERONET_EBAS.out new file mode 100644 index 0000000000000000000000000000000000000000..5e9a85822270712493673afd4c5b0d931290c832 --- /dev/null +++ b/download_scripts/log_files/nohup_AERONET_EBAS.out @@ -0,0 +1,64606 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of AERONET_v3_lev2.0Started downloading data of AERONET_v3_lev1.5 + +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=21&year2=2015&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=22&year2=2015&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=23&year2=2015&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=24&year2=2015&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=25&year2=2015&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=26&year2=2015&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=27&year2=2015&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=28&year2=2015&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=29&year2=2015&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=30&year2=2015&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=31&year2=2015&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=1&year2=2015&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=2&year2=2015&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=3&year2=2015&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=4&year2=2015&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=5&year2=2015&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=6&year2=2015&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=7&year2=2015&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=8&year2=2015&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=9&year2=2015&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=10&year2=2015&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=11&year2=2015&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=12&year2=2015&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=13&year2=2015&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=14&year2=2015&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=15&year2=2015&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=16&year2=2015&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=17&year2=2015&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=18&year2=2015&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=19&year2=2015&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=20&year2=2015&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=21&year2=2015&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=22&year2=2015&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=23&year2=2015&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=24&year2=2015&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=25&year2=2015&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=26&year2=2015&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=27&year2=2015&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=28&year2=2015&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=29&year2=2015&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=30&year2=2015&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=1&year2=2015&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=2&year2=2015&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=3&year2=2015&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=4&year2=2015&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=5&year2=2015&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=6&year2=2015&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=7&year2=2015&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=8&year2=2015&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=9&year2=2015&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=10&year2=2015&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=11&year2=2015&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=12&year2=2015&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=13&year2=2015&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=14&year2=2015&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=15&year2=2015&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=16&year2=2015&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=17&year2=2015&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=18&year2=2015&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=19&year2=2015&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=20&year2=2015&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=21&year2=2015&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=22&year2=2015&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=23&year2=2015&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=24&year2=2015&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=25&year2=2015&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=26&year2=2015&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=27&year2=2015&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=28&year2=2015&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=29&year2=2015&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=30&year2=2015&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=31&year2=2016&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=1&year2=2016&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=2&year2=2016&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=3&year2=2016&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=4&year2=2016&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=5&year2=2016&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=6&year2=2016&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=7&year2=2016&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=8&year2=2016&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=9&year2=2016&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=10&year2=2016&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=11&year2=2016&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=12&year2=2016&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=13&year2=2016&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=14&year2=2016&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=15&year2=2016&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=16&year2=2016&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=17&year2=2016&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=18&year2=2016&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=19&year2=2016&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=20&year2=2016&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=21&year2=2016&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=22&year2=2016&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=23&year2=2016&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=24&year2=2016&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=25&year2=2016&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=26&year2=2016&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=27&year2=2016&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=28&year2=2016&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=29&year2=2016&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=30&year2=2016&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=31&year2=2016&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=1&year2=2016&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=2&year2=2016&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=3&year2=2016&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=4&year2=2016&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=5&year2=2016&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=6&year2=2016&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=7&year2=2016&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=8&year2=2016&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=9&year2=2016&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=10&year2=2016&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=11&year2=2016&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=12&year2=2016&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=13&year2=2016&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=14&year2=2016&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=15&year2=2016&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=16&year2=2016&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=17&year2=2016&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=21&year2=2015&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=18&year2=2016&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=22&year2=2015&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=19&year2=2016&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=23&year2=2015&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=20&year2=2016&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=24&year2=2015&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=21&year2=2016&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=25&year2=2015&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=22&year2=2016&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=26&year2=2015&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=23&year2=2016&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=27&year2=2015&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=24&year2=2016&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=28&year2=2015&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=25&year2=2016&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=29&year2=2015&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=26&year2=2016&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=30&year2=2015&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=27&year2=2016&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=31&year2=2015&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=28&year2=2016&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=1&year2=2015&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=29&year2=2016&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=2&year2=2015&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=1&year2=2016&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=3&year2=2015&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=2&year2=2016&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=4&year2=2015&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=3&year2=2016&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=5&year2=2015&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=4&year2=2016&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=6&year2=2015&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=5&year2=2016&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=7&year2=2015&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=6&year2=2016&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=8&year2=2015&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=7&year2=2016&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=9&year2=2015&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=8&year2=2016&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=10&year2=2015&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=9&year2=2016&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=11&year2=2015&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=10&year2=2016&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=12&year2=2015&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=11&year2=2016&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=13&year2=2015&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=12&year2=2016&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=14&year2=2015&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=13&year2=2016&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=15&year2=2015&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=14&year2=2016&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=16&year2=2015&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=15&year2=2016&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=17&year2=2015&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=16&year2=2016&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=18&year2=2015&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=17&year2=2016&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=19&year2=2015&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=18&year2=2016&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=20&year2=2015&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=21&year2=2015&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=19&year2=2016&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=22&year2=2015&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=20&year2=2016&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=23&year2=2015&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=21&year2=2016&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=24&year2=2015&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=22&year2=2016&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=25&year2=2015&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=23&year2=2016&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=26&year2=2015&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=24&year2=2016&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=27&year2=2015&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=25&year2=2016&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=28&year2=2015&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=26&year2=2016&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=29&year2=2015&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=27&year2=2016&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=30&year2=2015&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=28&year2=2016&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=1&year2=2015&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=2&year2=2015&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=29&year2=2016&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=3&year2=2015&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=30&year2=2016&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=4&year2=2015&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=31&year2=2016&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=5&year2=2015&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=1&year2=2016&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=6&year2=2015&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=2&year2=2016&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=7&year2=2015&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=3&year2=2016&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=8&year2=2015&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=4&year2=2016&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=9&year2=2015&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=5&year2=2016&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=10&year2=2015&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=6&year2=2016&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=11&year2=2015&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=12&year2=2015&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=7&year2=2016&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=13&year2=2015&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=8&year2=2016&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=14&year2=2015&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=9&year2=2016&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=15&year2=2015&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=10&year2=2016&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=16&year2=2015&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=11&year2=2016&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=17&year2=2015&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=12&year2=2016&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=18&year2=2015&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=13&year2=2016&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=19&year2=2015&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=20&year2=2015&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=14&year2=2016&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=21&year2=2015&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=15&year2=2016&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=22&year2=2015&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=16&year2=2016&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=23&year2=2015&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=24&year2=2015&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=17&year2=2016&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=25&year2=2015&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=18&year2=2016&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=26&year2=2015&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=19&year2=2016&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=27&year2=2015&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=20&year2=2016&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=28&year2=2015&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=29&year2=2015&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=21&year2=2016&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=30&year2=2015&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=22&year2=2016&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=23&year2=2016&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=24&year2=2016&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=31&year2=2016&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=25&year2=2016&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=1&year2=2016&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=2&year2=2016&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=26&year2=2016&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=3&year2=2016&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=27&year2=2016&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=4&year2=2016&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=28&year2=2016&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=5&year2=2016&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=29&year2=2016&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=6&year2=2016&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=30&year2=2016&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=7&year2=2016&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=1&year2=2016&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=8&year2=2016&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=2&year2=2016&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=9&year2=2016&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=10&year2=2016&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=3&year2=2016&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=11&year2=2016&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=4&year2=2016&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=12&year2=2016&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=5&year2=2016&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=13&year2=2016&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=6&year2=2016&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=14&year2=2016&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=7&year2=2016&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=15&year2=2016&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=8&year2=2016&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=16&year2=2016&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=9&year2=2016&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=17&year2=2016&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=18&year2=2016&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=10&year2=2016&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=19&year2=2016&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=11&year2=2016&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=20&year2=2016&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=12&year2=2016&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=21&year2=2016&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=13&year2=2016&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=22&year2=2016&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=14&year2=2016&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=23&year2=2016&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=24&year2=2016&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=15&year2=2016&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=25&year2=2016&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=26&year2=2016&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=16&year2=2016&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=27&year2=2016&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=17&year2=2016&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=28&year2=2016&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=18&year2=2016&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=29&year2=2016&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=19&year2=2016&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=30&year2=2016&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=20&year2=2016&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=31&year2=2016&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=21&year2=2016&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=1&year2=2016&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=22&year2=2016&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=2&year2=2016&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=3&year2=2016&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=23&year2=2016&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=4&year2=2016&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=24&year2=2016&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=5&year2=2016&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=25&year2=2016&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=6&year2=2016&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=26&year2=2016&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=7&year2=2016&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=27&year2=2016&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=8&year2=2016&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=28&year2=2016&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=9&year2=2016&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=29&year2=2016&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=10&year2=2016&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=30&year2=2016&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=11&year2=2016&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=31&year2=2016&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=12&year2=2016&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=13&year2=2016&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=1&year2=2016&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=14&year2=2016&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=2&year2=2016&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=15&year2=2016&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=3&year2=2016&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=16&year2=2016&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=4&year2=2016&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=17&year2=2016&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=5&year2=2016&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=18&year2=2016&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=6&year2=2016&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=19&year2=2016&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=20&year2=2016&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=7&year2=2016&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=21&year2=2016&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=8&year2=2016&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=22&year2=2016&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=9&year2=2016&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=23&year2=2016&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=10&year2=2016&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=24&year2=2016&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=11&year2=2016&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=25&year2=2016&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=12&year2=2016&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=26&year2=2016&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=13&year2=2016&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=27&year2=2016&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=14&year2=2016&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=28&year2=2016&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=15&year2=2016&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=29&year2=2016&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=16&year2=2016&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=1&year2=2016&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=2&year2=2016&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=17&year2=2016&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=3&year2=2016&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=4&year2=2016&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=18&year2=2016&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=5&year2=2016&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=19&year2=2016&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=6&year2=2016&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=20&year2=2016&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=7&year2=2016&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=8&year2=2016&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=21&year2=2016&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=9&year2=2016&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=22&year2=2016&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=10&year2=2016&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=23&year2=2016&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=11&year2=2016&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=24&year2=2016&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=12&year2=2016&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=25&year2=2016&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=13&year2=2016&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=14&year2=2016&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=26&year2=2016&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=15&year2=2016&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=27&year2=2016&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=16&year2=2016&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=28&year2=2016&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=17&year2=2016&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=29&year2=2016&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=18&year2=2016&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=30&year2=2016&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=19&year2=2016&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=1&year2=2016&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=20&year2=2016&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=2&year2=2016&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=21&year2=2016&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=3&year2=2016&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=22&year2=2016&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=4&year2=2016&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=23&year2=2016&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=5&year2=2016&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=24&year2=2016&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=6&year2=2016&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=25&year2=2016&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=7&year2=2016&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=26&year2=2016&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=27&year2=2016&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=8&year2=2016&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=28&year2=2016&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=9&year2=2016&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=29&year2=2016&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=10&year2=2016&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=30&year2=2016&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=11&year2=2016&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=31&year2=2016&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=12&year2=2016&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=1&year2=2016&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=13&year2=2016&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=2&year2=2016&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=14&year2=2016&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=3&year2=2016&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=15&year2=2016&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=4&year2=2016&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=16&year2=2016&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=5&year2=2016&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=6&year2=2016&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=17&year2=2016&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=7&year2=2016&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=18&year2=2016&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=8&year2=2016&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=19&year2=2016&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=9&year2=2016&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=20&year2=2016&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=10&year2=2016&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=21&year2=2016&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=11&year2=2016&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=22&year2=2016&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=12&year2=2016&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=23&year2=2016&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=13&year2=2016&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=24&year2=2016&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=14&year2=2016&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=25&year2=2016&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=15&year2=2016&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=26&year2=2016&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=16&year2=2016&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=17&year2=2016&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=27&year2=2016&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=18&year2=2016&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=28&year2=2016&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=19&year2=2016&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=29&year2=2016&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=20&year2=2016&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=30&year2=2016&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=21&year2=2016&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=31&year2=2016&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=22&year2=2016&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=1&year2=2016&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=23&year2=2016&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=2&year2=2016&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=24&year2=2016&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=3&year2=2016&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=25&year2=2016&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=4&year2=2016&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=26&year2=2016&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=5&year2=2016&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=27&year2=2016&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=6&year2=2016&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=28&year2=2016&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=7&year2=2016&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=29&year2=2016&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=8&year2=2016&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=30&year2=2016&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=1&year2=2016&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=9&year2=2016&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=2&year2=2016&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=10&year2=2016&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=3&year2=2016&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=11&year2=2016&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=4&year2=2016&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=12&year2=2016&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=5&year2=2016&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=13&year2=2016&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=6&year2=2016&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=14&year2=2016&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=7&year2=2016&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=15&year2=2016&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=8&year2=2016&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=16&year2=2016&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=9&year2=2016&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=17&year2=2016&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=10&year2=2016&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=18&year2=2016&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=11&year2=2016&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=12&year2=2016&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=19&year2=2016&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=13&year2=2016&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=20&year2=2016&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=14&year2=2016&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=21&year2=2016&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=15&year2=2016&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=22&year2=2016&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=16&year2=2016&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=23&year2=2016&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=17&year2=2016&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=24&year2=2016&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=18&year2=2016&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=25&year2=2016&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=19&year2=2016&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=26&year2=2016&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=20&year2=2016&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=27&year2=2016&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=21&year2=2016&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=28&year2=2016&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=22&year2=2016&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=29&year2=2016&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=23&year2=2016&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=30&year2=2016&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=24&year2=2016&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=31&year2=2016&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=25&year2=2016&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=1&year2=2016&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=26&year2=2016&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=2&year2=2016&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=27&year2=2016&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=3&year2=2016&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=28&year2=2016&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=4&year2=2016&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=29&year2=2016&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=5&year2=2016&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=30&year2=2016&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=6&year2=2016&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=31&year2=2016&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=7&year2=2016&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=1&year2=2016&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=8&year2=2016&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=2&year2=2016&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=9&year2=2016&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=3&year2=2016&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=10&year2=2016&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=4&year2=2016&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=11&year2=2016&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=5&year2=2016&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=12&year2=2016&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=6&year2=2016&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=13&year2=2016&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=7&year2=2016&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=14&year2=2016&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=8&year2=2016&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=15&year2=2016&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=9&year2=2016&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=16&year2=2016&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=10&year2=2016&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=17&year2=2016&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=11&year2=2016&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=18&year2=2016&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=12&year2=2016&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=19&year2=2016&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=13&year2=2016&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=20&year2=2016&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=21&year2=2016&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=14&year2=2016&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=22&year2=2016&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=15&year2=2016&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=23&year2=2016&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=16&year2=2016&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=24&year2=2016&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=25&year2=2016&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=17&year2=2016&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=18&year2=2016&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=26&year2=2016&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=27&year2=2016&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=19&year2=2016&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=28&year2=2016&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=20&year2=2016&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=29&year2=2016&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=21&year2=2016&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=30&year2=2016&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=22&year2=2016&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=1&year2=2016&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=23&year2=2016&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=2&year2=2016&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=24&year2=2016&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=3&year2=2016&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=25&year2=2016&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=4&year2=2016&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=26&year2=2016&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=5&year2=2016&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=27&year2=2016&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=6&year2=2016&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=28&year2=2016&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=7&year2=2016&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=29&year2=2016&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=8&year2=2016&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=30&year2=2016&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=9&year2=2016&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=1&year2=2016&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=10&year2=2016&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=2&year2=2016&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=11&year2=2016&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=3&year2=2016&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=12&year2=2016&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=4&year2=2016&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=13&year2=2016&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=5&year2=2016&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=14&year2=2016&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=15&year2=2016&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=6&year2=2016&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=16&year2=2016&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=7&year2=2016&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=17&year2=2016&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=8&year2=2016&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=18&year2=2016&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=9&year2=2016&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=19&year2=2016&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=20&year2=2016&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=10&year2=2016&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=21&year2=2016&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=11&year2=2016&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=22&year2=2016&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=12&year2=2016&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=23&year2=2016&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=13&year2=2016&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=24&year2=2016&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=14&year2=2016&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=25&year2=2016&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=26&year2=2016&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=15&year2=2016&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=27&year2=2016&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=16&year2=2016&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=28&year2=2016&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=17&year2=2016&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=29&year2=2016&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=18&year2=2016&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=30&year2=2016&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=19&year2=2016&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=31&year2=2016&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=1&year2=2016&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=20&year2=2016&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=2&year2=2016&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=21&year2=2016&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=3&year2=2016&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=22&year2=2016&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=4&year2=2016&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=23&year2=2016&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=5&year2=2016&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=24&year2=2016&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=6&year2=2016&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=7&year2=2016&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=25&year2=2016&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=8&year2=2016&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=26&year2=2016&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=9&year2=2016&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=27&year2=2016&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=10&year2=2016&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=28&year2=2016&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=11&year2=2016&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=29&year2=2016&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=12&year2=2016&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=13&year2=2016&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=30&year2=2016&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=14&year2=2016&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=31&year2=2016&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=15&year2=2016&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=1&year2=2016&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=16&year2=2016&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=2&year2=2016&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=17&year2=2016&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=3&year2=2016&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=18&year2=2016&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=4&year2=2016&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=19&year2=2016&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=20&year2=2016&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=5&year2=2016&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=21&year2=2016&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=6&year2=2016&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=22&year2=2016&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=7&year2=2016&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=23&year2=2016&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=24&year2=2016&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=8&year2=2016&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=25&year2=2016&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=9&year2=2016&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=26&year2=2016&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=10&year2=2016&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=27&year2=2016&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=11&year2=2016&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=28&year2=2016&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=29&year2=2016&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=12&year2=2016&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=30&year2=2016&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=13&year2=2016&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=1&year2=2016&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=2&year2=2016&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=14&year2=2016&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=3&year2=2016&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=15&year2=2016&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=4&year2=2016&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=16&year2=2016&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=5&year2=2016&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=17&year2=2016&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=6&year2=2016&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=7&year2=2016&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=18&year2=2016&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=8&year2=2016&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=19&year2=2016&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=9&year2=2016&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=20&year2=2016&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=10&year2=2016&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=21&year2=2016&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=11&year2=2016&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=12&year2=2016&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=22&year2=2016&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=13&year2=2016&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=23&year2=2016&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=14&year2=2016&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=24&year2=2016&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=15&year2=2016&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=16&year2=2016&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=25&year2=2016&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=17&year2=2016&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=26&year2=2016&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=18&year2=2016&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=27&year2=2016&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=19&year2=2016&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=20&year2=2016&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=28&year2=2016&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=21&year2=2016&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=29&year2=2016&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=22&year2=2016&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=30&year2=2016&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=23&year2=2016&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=31&year2=2016&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=24&year2=2016&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=25&year2=2016&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=1&year2=2016&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=26&year2=2016&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=2&year2=2016&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=27&year2=2016&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=3&year2=2016&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=28&year2=2016&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=4&year2=2016&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=29&year2=2016&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=5&year2=2016&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=30&year2=2016&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=6&year2=2016&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=31&year2=2017&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=7&year2=2016&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=1&year2=2017&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=2&year2=2017&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=8&year2=2016&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=3&year2=2017&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=9&year2=2016&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=4&year2=2017&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=10&year2=2016&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=5&year2=2017&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=6&year2=2017&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=11&year2=2016&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=7&year2=2017&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=12&year2=2016&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=8&year2=2017&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=13&year2=2016&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=9&year2=2017&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=10&year2=2017&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=14&year2=2016&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=11&year2=2017&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=15&year2=2016&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=12&year2=2017&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=16&year2=2016&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=13&year2=2017&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=14&year2=2017&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=17&year2=2016&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=15&year2=2017&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=18&year2=2016&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=16&year2=2017&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=19&year2=2016&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=17&year2=2017&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=20&year2=2016&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=18&year2=2017&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=19&year2=2017&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=21&year2=2016&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=20&year2=2017&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=22&year2=2016&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=21&year2=2017&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=23&year2=2016&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=22&year2=2017&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=24&year2=2016&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=23&year2=2017&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=25&year2=2016&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=24&year2=2017&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=25&year2=2017&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=26&year2=2016&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=26&year2=2017&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=27&year2=2016&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=27&year2=2017&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=28&year2=2016&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=28&year2=2017&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=29&year2=2016&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=29&year2=2017&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=30&year2=2016&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=30&year2=2017&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=1&year2=2016&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=31&year2=2017&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=2&year2=2016&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=1&year2=2017&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=2&year2=2017&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=3&year2=2016&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=3&year2=2017&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=4&year2=2016&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=4&year2=2017&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=5&year2=2016&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=5&year2=2017&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=6&year2=2016&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=6&year2=2017&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=7&year2=2016&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=7&year2=2017&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=8&year2=2017&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=8&year2=2016&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=9&year2=2017&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=9&year2=2016&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=10&year2=2017&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=10&year2=2016&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=11&year2=2017&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=11&year2=2016&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=12&year2=2017&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=12&year2=2016&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=13&year2=2017&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=13&year2=2016&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=14&year2=2017&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=14&year2=2016&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=15&year2=2017&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=15&year2=2016&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=16&year2=2017&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=16&year2=2016&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=17&year2=2017&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=17&year2=2016&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=18&year2=2017&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=18&year2=2016&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=19&year2=2017&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=20&year2=2017&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=21&year2=2017&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=19&year2=2016&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=22&year2=2017&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=20&year2=2016&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=23&year2=2017&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=21&year2=2016&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=24&year2=2017&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=22&year2=2016&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=25&year2=2017&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=23&year2=2016&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=26&year2=2017&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=24&year2=2016&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=27&year2=2017&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=25&year2=2016&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=28&year2=2017&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=26&year2=2016&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=1&year2=2017&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=27&year2=2016&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=2&year2=2017&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=28&year2=2016&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=3&year2=2017&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=29&year2=2016&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=4&year2=2017&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=30&year2=2016&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=5&year2=2017&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=31&year2=2016&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=6&year2=2017&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=1&year2=2016&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=7&year2=2017&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=2&year2=2016&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=8&year2=2017&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=3&year2=2016&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=9&year2=2017&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=4&year2=2016&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=10&year2=2017&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=5&year2=2016&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=11&year2=2017&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=6&year2=2016&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=12&year2=2017&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=7&year2=2016&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=13&year2=2017&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=8&year2=2016&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=14&year2=2017&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=9&year2=2016&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=15&year2=2017&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=10&year2=2016&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=16&year2=2017&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=11&year2=2016&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=17&year2=2017&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=12&year2=2016&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=18&year2=2017&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=13&year2=2016&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=19&year2=2017&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=14&year2=2016&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=20&year2=2017&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=15&year2=2016&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=21&year2=2017&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=16&year2=2016&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=22&year2=2017&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=17&year2=2016&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=23&year2=2017&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=18&year2=2016&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=24&year2=2017&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=19&year2=2016&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=25&year2=2017&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=20&year2=2016&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=26&year2=2017&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=21&year2=2016&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=27&year2=2017&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=22&year2=2016&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=23&year2=2016&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=28&year2=2017&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=24&year2=2016&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=29&year2=2017&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=25&year2=2016&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=30&year2=2017&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=26&year2=2016&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=31&year2=2017&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=27&year2=2016&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=1&year2=2017&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=28&year2=2016&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=2&year2=2017&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=29&year2=2016&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=3&year2=2017&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=30&year2=2016&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=4&year2=2017&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=1&year2=2016&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=5&year2=2017&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=2&year2=2016&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=6&year2=2017&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=3&year2=2016&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=7&year2=2017&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=4&year2=2016&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=8&year2=2017&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=5&year2=2016&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=9&year2=2017&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=6&year2=2016&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=7&year2=2016&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=10&year2=2017&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=8&year2=2016&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=11&year2=2017&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=9&year2=2016&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=12&year2=2017&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=10&year2=2016&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=13&year2=2017&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=11&year2=2016&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=14&year2=2017&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=12&year2=2016&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=15&year2=2017&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=13&year2=2016&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=16&year2=2017&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=14&year2=2016&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=17&year2=2017&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=15&year2=2016&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=18&year2=2017&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=16&year2=2016&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=19&year2=2017&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=17&year2=2016&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=20&year2=2017&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=18&year2=2016&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=19&year2=2016&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=21&year2=2017&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=20&year2=2016&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=22&year2=2017&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=21&year2=2016&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=23&year2=2017&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=22&year2=2016&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=24&year2=2017&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=23&year2=2016&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=25&year2=2017&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=24&year2=2016&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=25&year2=2016&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=26&year2=2017&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=26&year2=2016&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=27&year2=2017&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=27&year2=2016&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=28&year2=2017&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=28&year2=2016&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=29&year2=2017&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=29&year2=2016&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=30&year2=2017&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=30&year2=2016&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=1&year2=2017&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=31&year2=2017&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=2&year2=2017&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=1&year2=2017&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=2&year2=2017&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=3&year2=2017&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=3&year2=2017&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=4&year2=2017&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=4&year2=2017&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=5&year2=2017&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=5&year2=2017&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=6&year2=2017&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=6&year2=2017&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=7&year2=2017&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=7&year2=2017&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=8&year2=2017&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=8&year2=2017&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=9&year2=2017&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=9&year2=2017&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=10&year2=2017&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=10&year2=2017&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=11&year2=2017&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=11&year2=2017&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=12&year2=2017&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=12&year2=2017&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=13&year2=2017&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=13&year2=2017&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=14&year2=2017&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=14&year2=2017&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=15&year2=2017&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=15&year2=2017&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=16&year2=2017&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=16&year2=2017&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=17&year2=2017&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=18&year2=2017&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=17&year2=2017&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=19&year2=2017&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=18&year2=2017&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=20&year2=2017&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=19&year2=2017&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=21&year2=2017&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=20&year2=2017&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=22&year2=2017&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=21&year2=2017&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=23&year2=2017&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=24&year2=2017&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=22&year2=2017&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=25&year2=2017&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=23&year2=2017&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=26&year2=2017&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=24&year2=2017&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=27&year2=2017&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=25&year2=2017&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=28&year2=2017&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=26&year2=2017&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=29&year2=2017&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=27&year2=2017&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=30&year2=2017&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=31&year2=2017&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=28&year2=2017&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=1&year2=2017&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=29&year2=2017&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=2&year2=2017&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=30&year2=2017&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=3&year2=2017&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=31&year2=2017&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=4&year2=2017&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=1&year2=2017&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=5&year2=2017&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=2&year2=2017&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=6&year2=2017&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=7&year2=2017&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=3&year2=2017&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=8&year2=2017&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=4&year2=2017&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=9&year2=2017&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=5&year2=2017&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=10&year2=2017&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=11&year2=2017&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=6&year2=2017&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=12&year2=2017&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=7&year2=2017&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=13&year2=2017&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=8&year2=2017&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=14&year2=2017&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=9&year2=2017&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=15&year2=2017&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=10&year2=2017&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=16&year2=2017&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=11&year2=2017&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=17&year2=2017&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=12&year2=2017&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=18&year2=2017&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=13&year2=2017&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=19&year2=2017&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=20&year2=2017&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=14&year2=2017&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=21&year2=2017&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=15&year2=2017&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=22&year2=2017&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=16&year2=2017&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=23&year2=2017&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=17&year2=2017&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=24&year2=2017&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=18&year2=2017&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=25&year2=2017&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=19&year2=2017&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=26&year2=2017&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=20&year2=2017&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=27&year2=2017&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=28&year2=2017&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=21&year2=2017&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=1&year2=2017&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=22&year2=2017&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=2&year2=2017&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=23&year2=2017&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=3&year2=2017&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=24&year2=2017&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=4&year2=2017&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=25&year2=2017&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=5&year2=2017&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=26&year2=2017&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=6&year2=2017&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=27&year2=2017&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=7&year2=2017&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=28&year2=2017&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=8&year2=2017&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=29&year2=2017&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=9&year2=2017&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=30&year2=2017&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=10&year2=2017&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=1&year2=2017&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=11&year2=2017&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=12&year2=2017&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=2&year2=2017&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=13&year2=2017&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=3&year2=2017&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=14&year2=2017&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=4&year2=2017&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=15&year2=2017&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=5&year2=2017&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=16&year2=2017&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=6&year2=2017&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=17&year2=2017&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=7&year2=2017&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=18&year2=2017&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=8&year2=2017&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=19&year2=2017&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=9&year2=2017&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=20&year2=2017&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=10&year2=2017&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=21&year2=2017&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=11&year2=2017&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=22&year2=2017&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=23&year2=2017&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=12&year2=2017&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=24&year2=2017&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=13&year2=2017&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=25&year2=2017&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=14&year2=2017&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=26&year2=2017&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=15&year2=2017&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=27&year2=2017&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=16&year2=2017&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=28&year2=2017&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=17&year2=2017&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=29&year2=2017&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=30&year2=2017&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=18&year2=2017&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=31&year2=2017&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=19&year2=2017&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=1&year2=2017&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=20&year2=2017&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=2&year2=2017&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=21&year2=2017&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=3&year2=2017&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=22&year2=2017&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=4&year2=2017&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=23&year2=2017&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=5&year2=2017&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=24&year2=2017&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=6&year2=2017&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=25&year2=2017&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=7&year2=2017&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=26&year2=2017&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=8&year2=2017&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=27&year2=2017&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=9&year2=2017&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=28&year2=2017&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=10&year2=2017&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=29&year2=2017&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=11&year2=2017&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=30&year2=2017&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=12&year2=2017&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=13&year2=2017&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=31&year2=2017&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=14&year2=2017&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=1&year2=2017&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=15&year2=2017&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=2&year2=2017&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=16&year2=2017&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=3&year2=2017&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=17&year2=2017&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=4&year2=2017&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=18&year2=2017&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=5&year2=2017&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=19&year2=2017&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=6&year2=2017&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=20&year2=2017&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=7&year2=2017&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=21&year2=2017&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=8&year2=2017&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=22&year2=2017&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=9&year2=2017&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=23&year2=2017&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=10&year2=2017&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=24&year2=2017&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=11&year2=2017&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=25&year2=2017&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=12&year2=2017&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=26&year2=2017&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=13&year2=2017&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=27&year2=2017&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=14&year2=2017&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=28&year2=2017&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=15&year2=2017&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=29&year2=2017&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=16&year2=2017&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=30&year2=2017&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=17&year2=2017&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=1&year2=2017&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=18&year2=2017&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=2&year2=2017&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=19&year2=2017&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=3&year2=2017&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=20&year2=2017&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=4&year2=2017&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=21&year2=2017&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=5&year2=2017&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=22&year2=2017&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=6&year2=2017&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=23&year2=2017&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=7&year2=2017&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=24&year2=2017&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=8&year2=2017&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=25&year2=2017&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=9&year2=2017&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=26&year2=2017&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=10&year2=2017&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=11&year2=2017&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=27&year2=2017&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=12&year2=2017&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=28&year2=2017&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=13&year2=2017&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=29&year2=2017&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=14&year2=2017&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=30&year2=2017&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=15&year2=2017&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=31&year2=2017&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=16&year2=2017&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=1&year2=2017&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=17&year2=2017&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=2&year2=2017&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=18&year2=2017&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=3&year2=2017&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=19&year2=2017&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=4&year2=2017&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=20&year2=2017&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=5&year2=2017&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=21&year2=2017&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=6&year2=2017&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=22&year2=2017&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=7&year2=2017&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=23&year2=2017&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=8&year2=2017&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=9&year2=2017&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=24&year2=2017&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=10&year2=2017&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=25&year2=2017&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=11&year2=2017&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=26&year2=2017&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=12&year2=2017&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=27&year2=2017&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=13&year2=2017&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=28&year2=2017&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=14&year2=2017&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=29&year2=2017&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=15&year2=2017&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=30&year2=2017&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=16&year2=2017&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=31&year2=2017&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=17&year2=2017&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=1&year2=2017&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=18&year2=2017&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=2&year2=2017&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=19&year2=2017&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=20&year2=2017&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=3&year2=2017&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=21&year2=2017&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=4&year2=2017&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=22&year2=2017&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=5&year2=2017&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=23&year2=2017&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=6&year2=2017&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=24&year2=2017&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=7&year2=2017&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=25&year2=2017&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=8&year2=2017&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=26&year2=2017&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=9&year2=2017&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=27&year2=2017&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=10&year2=2017&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=28&year2=2017&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=11&year2=2017&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=29&year2=2017&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=12&year2=2017&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=30&year2=2017&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=13&year2=2017&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=1&year2=2017&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=14&year2=2017&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=2&year2=2017&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=3&year2=2017&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=15&year2=2017&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=4&year2=2017&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=16&year2=2017&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=5&year2=2017&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=17&year2=2017&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=6&year2=2017&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=18&year2=2017&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=7&year2=2017&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=19&year2=2017&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=8&year2=2017&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=20&year2=2017&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=9&year2=2017&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=21&year2=2017&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=10&year2=2017&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=22&year2=2017&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=11&year2=2017&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=23&year2=2017&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=12&year2=2017&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=24&year2=2017&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=13&year2=2017&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=25&year2=2017&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=14&year2=2017&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=26&year2=2017&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=15&year2=2017&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=27&year2=2017&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=16&year2=2017&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=28&year2=2017&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=17&year2=2017&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=29&year2=2017&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=18&year2=2017&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=30&year2=2017&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=19&year2=2017&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=1&year2=2017&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=20&year2=2017&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=2&year2=2017&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=21&year2=2017&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=22&year2=2017&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=3&year2=2017&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=23&year2=2017&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=4&year2=2017&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=24&year2=2017&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=5&year2=2017&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=25&year2=2017&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=6&year2=2017&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=26&year2=2017&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=7&year2=2017&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=27&year2=2017&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=28&year2=2017&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=8&year2=2017&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=29&year2=2017&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=9&year2=2017&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=30&year2=2017&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=10&year2=2017&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=31&year2=2017&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=11&year2=2017&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=1&year2=2017&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=12&year2=2017&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=2&year2=2017&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=13&year2=2017&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=3&year2=2017&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=14&year2=2017&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=4&year2=2017&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=5&year2=2017&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=15&year2=2017&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=6&year2=2017&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=16&year2=2017&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=7&year2=2017&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=17&year2=2017&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=8&year2=2017&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=18&year2=2017&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=9&year2=2017&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=10&year2=2017&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=19&year2=2017&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=11&year2=2017&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=20&year2=2017&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=12&year2=2017&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=21&year2=2017&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=13&year2=2017&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=22&year2=2017&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=14&year2=2017&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=23&year2=2017&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=15&year2=2017&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=24&year2=2017&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=16&year2=2017&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=25&year2=2017&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=17&year2=2017&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=26&year2=2017&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=18&year2=2017&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=27&year2=2017&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=19&year2=2017&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=20&year2=2017&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=28&year2=2017&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=21&year2=2017&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=29&year2=2017&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=22&year2=2017&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=30&year2=2017&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=23&year2=2017&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=31&year2=2017&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=24&year2=2017&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=25&year2=2017&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=1&year2=2017&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=26&year2=2017&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=2&year2=2017&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=27&year2=2017&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=3&year2=2017&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=28&year2=2017&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=4&year2=2017&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=29&year2=2017&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=30&year2=2017&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=5&year2=2017&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=1&year2=2017&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=6&year2=2017&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=2&year2=2017&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=7&year2=2017&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=3&year2=2017&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=8&year2=2017&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=4&year2=2017&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=5&year2=2017&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=9&year2=2017&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=6&year2=2017&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=10&year2=2017&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=7&year2=2017&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=11&year2=2017&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=8&year2=2017&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=12&year2=2017&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=9&year2=2017&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=13&year2=2017&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=10&year2=2017&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=14&year2=2017&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=11&year2=2017&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=15&year2=2017&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=12&year2=2017&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=13&year2=2017&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=16&year2=2017&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=14&year2=2017&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=17&year2=2017&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=15&year2=2017&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=18&year2=2017&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=16&year2=2017&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=17&year2=2017&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=19&year2=2017&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=18&year2=2017&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=20&year2=2017&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=19&year2=2017&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=21&year2=2017&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=20&year2=2017&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=22&year2=2017&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=21&year2=2017&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=23&year2=2017&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=22&year2=2017&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=23&year2=2017&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=24&year2=2017&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=24&year2=2017&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=25&year2=2017&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=25&year2=2017&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=26&year2=2017&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=26&year2=2017&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=27&year2=2017&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=27&year2=2017&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=28&year2=2017&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=28&year2=2017&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=29&year2=2017&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=29&year2=2017&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=30&year2=2017&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=30&year2=2017&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=31&year2=2018&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=31&year2=2017&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=1&year2=2018&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=2&year2=2018&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=1&year2=2017&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=3&year2=2018&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=2&year2=2017&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=4&year2=2018&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=3&year2=2017&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=5&year2=2018&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=4&year2=2017&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=6&year2=2018&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=7&year2=2018&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=5&year2=2017&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=8&year2=2018&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=6&year2=2017&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=9&year2=2018&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=7&year2=2017&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=10&year2=2018&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=8&year2=2017&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=11&year2=2018&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=9&year2=2017&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=12&year2=2018&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=10&year2=2017&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=13&year2=2018&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=14&year2=2018&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=11&year2=2017&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=15&year2=2018&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=12&year2=2017&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=16&year2=2018&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=13&year2=2017&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=17&year2=2018&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=14&year2=2017&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=18&year2=2018&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=15&year2=2017&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=19&year2=2018&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=16&year2=2017&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=20&year2=2018&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=21&year2=2018&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=17&year2=2017&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=22&year2=2018&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=18&year2=2017&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=23&year2=2018&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=19&year2=2017&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=24&year2=2018&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=20&year2=2017&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=25&year2=2018&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=21&year2=2017&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=26&year2=2018&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=22&year2=2017&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=27&year2=2018&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=23&year2=2017&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=28&year2=2018&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=29&year2=2018&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=24&year2=2017&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=30&year2=2018&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=25&year2=2017&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=31&year2=2018&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=26&year2=2017&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=1&year2=2018&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=27&year2=2017&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=2&year2=2018&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=28&year2=2017&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=3&year2=2018&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=29&year2=2017&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=4&year2=2018&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=30&year2=2017&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=5&year2=2018&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=1&year2=2017&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=6&year2=2018&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=2&year2=2017&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=7&year2=2018&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=3&year2=2017&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=8&year2=2018&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=4&year2=2017&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=9&year2=2018&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=5&year2=2017&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=10&year2=2018&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=6&year2=2017&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=11&year2=2018&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=7&year2=2017&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=12&year2=2018&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=8&year2=2017&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=13&year2=2018&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=9&year2=2017&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=14&year2=2018&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=10&year2=2017&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=15&year2=2018&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=11&year2=2017&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=16&year2=2018&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=12&year2=2017&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=17&year2=2018&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=13&year2=2017&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=18&year2=2018&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=19&year2=2018&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=14&year2=2017&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=20&year2=2018&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=15&year2=2017&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=21&year2=2018&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=16&year2=2017&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=22&year2=2018&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=17&year2=2017&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=23&year2=2018&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=18&year2=2017&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=24&year2=2018&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=19&year2=2017&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=25&year2=2018&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=20&year2=2017&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=26&year2=2018&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=21&year2=2017&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=27&year2=2018&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=22&year2=2017&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=28&year2=2018&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=23&year2=2017&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=1&year2=2018&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=24&year2=2017&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=2&year2=2018&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=25&year2=2017&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=3&year2=2018&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=4&year2=2018&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=26&year2=2017&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=5&year2=2018&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=27&year2=2017&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=6&year2=2018&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=28&year2=2017&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=7&year2=2018&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=29&year2=2017&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=8&year2=2018&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=30&year2=2017&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=9&year2=2018&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=31&year2=2017&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=10&year2=2018&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=1&year2=2017&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=2&year2=2017&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=11&year2=2018&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=3&year2=2017&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=12&year2=2018&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=4&year2=2017&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=13&year2=2018&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=5&year2=2017&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=14&year2=2018&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=6&year2=2017&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=15&year2=2018&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=7&year2=2017&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=16&year2=2018&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=8&year2=2017&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=17&year2=2018&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=9&year2=2017&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=18&year2=2018&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=10&year2=2017&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=19&year2=2018&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=11&year2=2017&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=20&year2=2018&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=12&year2=2017&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=21&year2=2018&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=13&year2=2017&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=22&year2=2018&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=14&year2=2017&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=23&year2=2018&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=15&year2=2017&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=24&year2=2018&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=16&year2=2017&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=25&year2=2018&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=17&year2=2017&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=26&year2=2018&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=18&year2=2017&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=27&year2=2018&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=19&year2=2017&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=28&year2=2018&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=20&year2=2017&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=29&year2=2018&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=21&year2=2017&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=30&year2=2018&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=22&year2=2017&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=31&year2=2018&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=23&year2=2017&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=24&year2=2017&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=1&year2=2018&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=25&year2=2017&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=2&year2=2018&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=26&year2=2017&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=3&year2=2018&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=27&year2=2017&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=4&year2=2018&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=28&year2=2017&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=5&year2=2018&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=29&year2=2017&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=6&year2=2018&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=30&year2=2017&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=7&year2=2018&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=1&year2=2017&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=8&year2=2018&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=2&year2=2017&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=9&year2=2018&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=3&year2=2017&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=10&year2=2018&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=4&year2=2017&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=11&year2=2018&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=5&year2=2017&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=12&year2=2018&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=6&year2=2017&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=13&year2=2018&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=7&year2=2017&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=8&year2=2017&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=14&year2=2018&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=9&year2=2017&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=15&year2=2018&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=10&year2=2017&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=16&year2=2018&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=11&year2=2017&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=17&year2=2018&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=12&year2=2017&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=18&year2=2018&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=13&year2=2017&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=14&year2=2017&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=19&year2=2018&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=15&year2=2017&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=20&year2=2018&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=16&year2=2017&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=21&year2=2018&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=17&year2=2017&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=18&year2=2017&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=22&year2=2018&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=19&year2=2017&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=23&year2=2018&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=20&year2=2017&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=24&year2=2018&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=21&year2=2017&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=25&year2=2018&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=22&year2=2017&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=26&year2=2018&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=23&year2=2017&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=27&year2=2018&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=24&year2=2017&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=25&year2=2017&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=28&year2=2018&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=26&year2=2017&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=29&year2=2018&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=27&year2=2017&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=30&year2=2018&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=28&year2=2017&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=1&year2=2018&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=29&year2=2017&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=2&year2=2018&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=30&year2=2017&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=3&year2=2018&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=31&year2=2018&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=1&year2=2018&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=4&year2=2018&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=2&year2=2018&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=5&year2=2018&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=3&year2=2018&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=6&year2=2018&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=4&year2=2018&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=7&year2=2018&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=5&year2=2018&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=6&year2=2018&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=8&year2=2018&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=7&year2=2018&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=9&year2=2018&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=8&year2=2018&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=10&year2=2018&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=9&year2=2018&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=10&year2=2018&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=11&year2=2018&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=11&year2=2018&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=12&year2=2018&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=12&year2=2018&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=13&year2=2018&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=13&year2=2018&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=14&year2=2018&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=14&year2=2018&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=15&year2=2018&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=15&year2=2018&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=16&year2=2018&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=16&year2=2018&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=17&year2=2018&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=17&year2=2018&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=18&year2=2018&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=18&year2=2018&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=19&year2=2018&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=19&year2=2018&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=20&year2=2018&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=20&year2=2018&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=21&year2=2018&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=21&year2=2018&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=22&year2=2018&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=22&year2=2018&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=23&year2=2018&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=24&year2=2018&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=23&year2=2018&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=25&year2=2018&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=24&year2=2018&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=26&year2=2018&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=25&year2=2018&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=27&year2=2018&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=26&year2=2018&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=28&year2=2018&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=29&year2=2018&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=27&year2=2018&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=30&year2=2018&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=28&year2=2018&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=31&year2=2018&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=29&year2=2018&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=1&year2=2018&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=30&year2=2018&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=2&year2=2018&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=31&year2=2018&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=3&year2=2018&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=4&year2=2018&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=1&year2=2018&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=5&year2=2018&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=2&year2=2018&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=6&year2=2018&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=3&year2=2018&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=7&year2=2018&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=4&year2=2018&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=8&year2=2018&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=5&year2=2018&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=9&year2=2018&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=6&year2=2018&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=10&year2=2018&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=11&year2=2018&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=7&year2=2018&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=12&year2=2018&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=8&year2=2018&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=13&year2=2018&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=9&year2=2018&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=14&year2=2018&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=10&year2=2018&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=15&year2=2018&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=11&year2=2018&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=16&year2=2018&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=12&year2=2018&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=17&year2=2018&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=13&year2=2018&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=18&year2=2018&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=19&year2=2018&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=14&year2=2018&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=20&year2=2018&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=15&year2=2018&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=21&year2=2018&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=16&year2=2018&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=22&year2=2018&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=17&year2=2018&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=23&year2=2018&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=18&year2=2018&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=24&year2=2018&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=19&year2=2018&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=25&year2=2018&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=20&year2=2018&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=26&year2=2018&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=21&year2=2018&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=27&year2=2018&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=28&year2=2018&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=22&year2=2018&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=1&year2=2018&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=23&year2=2018&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=2&year2=2018&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=24&year2=2018&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=3&year2=2018&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=25&year2=2018&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=4&year2=2018&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=26&year2=2018&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=5&year2=2018&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=6&year2=2018&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=27&year2=2018&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=7&year2=2018&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=28&year2=2018&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=8&year2=2018&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=29&year2=2018&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=9&year2=2018&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=30&year2=2018&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=10&year2=2018&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=1&year2=2018&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=11&year2=2018&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=12&year2=2018&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=2&year2=2018&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=13&year2=2018&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=3&year2=2018&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=14&year2=2018&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=4&year2=2018&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=15&year2=2018&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=5&year2=2018&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=16&year2=2018&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=17&year2=2018&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=6&year2=2018&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=18&year2=2018&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=7&year2=2018&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=19&year2=2018&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=8&year2=2018&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=20&year2=2018&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=9&year2=2018&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=21&year2=2018&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=22&year2=2018&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=10&year2=2018&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=23&year2=2018&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=11&year2=2018&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=24&year2=2018&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=12&year2=2018&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=25&year2=2018&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=13&year2=2018&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=26&year2=2018&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=27&year2=2018&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=14&year2=2018&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=28&year2=2018&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=15&year2=2018&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=29&year2=2018&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=16&year2=2018&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=30&year2=2018&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=17&year2=2018&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=31&year2=2018&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=18&year2=2018&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=1&year2=2018&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=2&year2=2018&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=19&year2=2018&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=3&year2=2018&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=20&year2=2018&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=4&year2=2018&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=21&year2=2018&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=5&year2=2018&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=22&year2=2018&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=6&year2=2018&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=23&year2=2018&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=7&year2=2018&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=8&year2=2018&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=24&year2=2018&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=9&year2=2018&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=25&year2=2018&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=10&year2=2018&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=26&year2=2018&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=11&year2=2018&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=27&year2=2018&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=12&year2=2018&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=13&year2=2018&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=28&year2=2018&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=14&year2=2018&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=29&year2=2018&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=15&year2=2018&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=30&year2=2018&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=16&year2=2018&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=31&year2=2018&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=17&year2=2018&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=1&year2=2018&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=18&year2=2018&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=2&year2=2018&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=19&year2=2018&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=3&year2=2018&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=20&year2=2018&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=4&year2=2018&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=21&year2=2018&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=5&year2=2018&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=22&year2=2018&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=6&year2=2018&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=23&year2=2018&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=7&year2=2018&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=24&year2=2018&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=25&year2=2018&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=8&year2=2018&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=26&year2=2018&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=9&year2=2018&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=27&year2=2018&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=10&year2=2018&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=28&year2=2018&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=11&year2=2018&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=29&year2=2018&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=12&year2=2018&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=30&year2=2018&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=13&year2=2018&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=1&year2=2018&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=14&year2=2018&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=2&year2=2018&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=15&year2=2018&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=3&year2=2018&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=16&year2=2018&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=4&year2=2018&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=17&year2=2018&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=5&year2=2018&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=18&year2=2018&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=6&year2=2018&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=19&year2=2018&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=7&year2=2018&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=20&year2=2018&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=8&year2=2018&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=21&year2=2018&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=9&year2=2018&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=22&year2=2018&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=10&year2=2018&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=23&year2=2018&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=11&year2=2018&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=12&year2=2018&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=24&year2=2018&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=13&year2=2018&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=25&year2=2018&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=14&year2=2018&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=26&year2=2018&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=15&year2=2018&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=27&year2=2018&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=16&year2=2018&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=28&year2=2018&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=17&year2=2018&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=29&year2=2018&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=18&year2=2018&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=30&year2=2018&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=19&year2=2018&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=31&year2=2018&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=20&year2=2018&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=1&year2=2018&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=21&year2=2018&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=2&year2=2018&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=22&year2=2018&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=3&year2=2018&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=23&year2=2018&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=4&year2=2018&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=24&year2=2018&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=5&year2=2018&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=25&year2=2018&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=6&year2=2018&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=26&year2=2018&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=7&year2=2018&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=27&year2=2018&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=28&year2=2018&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=8&year2=2018&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=29&year2=2018&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=9&year2=2018&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=30&year2=2018&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=10&year2=2018&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=31&year2=2018&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=11&year2=2018&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=1&year2=2018&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=12&year2=2018&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=2&year2=2018&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=13&year2=2018&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=3&year2=2018&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=14&year2=2018&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=4&year2=2018&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=15&year2=2018&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=5&year2=2018&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=16&year2=2018&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=6&year2=2018&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=17&year2=2018&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=7&year2=2018&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=18&year2=2018&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=8&year2=2018&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=19&year2=2018&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=9&year2=2018&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=10&year2=2018&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=20&year2=2018&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=11&year2=2018&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=21&year2=2018&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=12&year2=2018&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=22&year2=2018&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=13&year2=2018&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=23&year2=2018&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=14&year2=2018&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=24&year2=2018&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=15&year2=2018&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=25&year2=2018&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=16&year2=2018&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=26&year2=2018&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=17&year2=2018&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=27&year2=2018&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=18&year2=2018&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=28&year2=2018&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=19&year2=2018&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=29&year2=2018&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=20&year2=2018&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=30&year2=2018&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=21&year2=2018&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=1&year2=2018&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=22&year2=2018&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=2&year2=2018&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=23&year2=2018&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=24&year2=2018&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=3&year2=2018&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=25&year2=2018&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=4&year2=2018&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=5&year2=2018&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=26&year2=2018&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=6&year2=2018&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=27&year2=2018&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=7&year2=2018&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=28&year2=2018&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=8&year2=2018&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=29&year2=2018&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=9&year2=2018&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=30&year2=2018&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=10&year2=2018&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=1&year2=2018&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=11&year2=2018&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=2&year2=2018&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=12&year2=2018&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=3&year2=2018&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=13&year2=2018&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=14&year2=2018&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=4&year2=2018&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=15&year2=2018&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=5&year2=2018&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=16&year2=2018&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=6&year2=2018&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=17&year2=2018&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=7&year2=2018&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=18&year2=2018&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=8&year2=2018&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=19&year2=2018&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=9&year2=2018&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=20&year2=2018&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=10&year2=2018&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=21&year2=2018&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=11&year2=2018&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=22&year2=2018&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=12&year2=2018&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=23&year2=2018&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=13&year2=2018&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=24&year2=2018&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=25&year2=2018&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=14&year2=2018&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=26&year2=2018&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=15&year2=2018&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=27&year2=2018&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=16&year2=2018&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=28&year2=2018&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=17&year2=2018&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=29&year2=2018&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=18&year2=2018&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=30&year2=2018&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=19&year2=2018&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=31&year2=2018&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=20&year2=2018&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=1&year2=2018&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=2&year2=2018&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=21&year2=2018&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=3&year2=2018&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=22&year2=2018&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=4&year2=2018&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=23&year2=2018&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=5&year2=2018&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=24&year2=2018&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=6&year2=2018&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=25&year2=2018&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=7&year2=2018&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=8&year2=2018&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=26&year2=2018&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=9&year2=2018&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=27&year2=2018&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=10&year2=2018&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=28&year2=2018&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=11&year2=2018&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=29&year2=2018&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=12&year2=2018&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=13&year2=2018&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=30&year2=2018&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=14&year2=2018&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=31&year2=2018&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=15&year2=2018&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=1&year2=2018&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=16&year2=2018&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=2&year2=2018&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=17&year2=2018&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=18&year2=2018&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=3&year2=2018&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=19&year2=2018&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=4&year2=2018&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=20&year2=2018&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=5&year2=2018&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=21&year2=2018&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=6&year2=2018&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=22&year2=2018&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=23&year2=2018&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=7&year2=2018&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=24&year2=2018&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=8&year2=2018&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=25&year2=2018&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=9&year2=2018&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=26&year2=2018&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=10&year2=2018&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=27&year2=2018&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=28&year2=2018&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=11&year2=2018&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=29&year2=2018&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=12&year2=2018&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=30&year2=2018&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=13&year2=2018&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=1&year2=2018&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=14&year2=2018&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=2&year2=2018&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=3&year2=2018&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=15&year2=2018&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=4&year2=2018&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=16&year2=2018&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=5&year2=2018&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=17&year2=2018&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=6&year2=2018&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=18&year2=2018&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=7&year2=2018&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=19&year2=2018&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=8&year2=2018&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=20&year2=2018&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=9&year2=2018&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=10&year2=2018&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=21&year2=2018&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=11&year2=2018&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=22&year2=2018&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=12&year2=2018&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=23&year2=2018&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=13&year2=2018&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=24&year2=2018&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=14&year2=2018&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=25&year2=2018&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=15&year2=2018&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=26&year2=2018&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=16&year2=2018&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=27&year2=2018&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=17&year2=2018&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=18&year2=2018&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=28&year2=2018&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=19&year2=2018&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=29&year2=2018&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=20&year2=2018&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=30&year2=2018&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=21&year2=2018&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=31&year2=2018&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=22&year2=2018&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=23&year2=2018&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=1&year2=2018&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=24&year2=2018&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=2&year2=2018&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=25&year2=2018&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=3&year2=2018&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=26&year2=2018&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=4&year2=2018&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=27&year2=2018&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=28&year2=2018&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=5&year2=2018&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=29&year2=2018&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=6&year2=2018&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=30&year2=2018&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=7&year2=2018&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=31&year2=2019&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=8&year2=2018&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=1&year2=2019&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=2&year2=2019&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=9&year2=2018&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=3&year2=2019&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=10&year2=2018&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=4&year2=2019&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=11&year2=2018&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=5&year2=2019&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=12&year2=2018&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=6&year2=2019&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=13&year2=2018&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=7&year2=2019&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=8&year2=2019&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=14&year2=2018&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=9&year2=2019&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=15&year2=2018&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=10&year2=2019&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=16&year2=2018&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=11&year2=2019&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=17&year2=2018&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=12&year2=2019&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=13&year2=2019&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=18&year2=2018&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=14&year2=2019&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=19&year2=2018&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=15&year2=2019&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=20&year2=2018&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=16&year2=2019&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=17&year2=2019&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=21&year2=2018&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=18&year2=2019&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=22&year2=2018&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=19&year2=2019&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=23&year2=2018&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=20&year2=2019&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=24&year2=2018&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=21&year2=2019&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=22&year2=2019&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=25&year2=2018&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=23&year2=2019&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=26&year2=2018&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=24&year2=2019&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=27&year2=2018&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=25&year2=2019&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=28&year2=2018&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=26&year2=2019&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=27&year2=2019&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=29&year2=2018&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=28&year2=2019&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=30&year2=2018&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=29&year2=2019&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=1&year2=2018&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=30&year2=2019&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=2&year2=2018&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=31&year2=2019&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=3&year2=2018&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=1&year2=2019&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=4&year2=2018&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=2&year2=2019&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=3&year2=2019&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=5&year2=2018&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=4&year2=2019&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=6&year2=2018&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=5&year2=2019&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=7&year2=2018&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=6&year2=2019&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=8&year2=2018&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=7&year2=2019&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=9&year2=2018&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=8&year2=2019&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=10&year2=2018&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=9&year2=2019&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=11&year2=2018&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=10&year2=2019&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=11&year2=2019&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=12&year2=2018&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=12&year2=2019&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=13&year2=2018&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=13&year2=2019&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=14&year2=2018&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=14&year2=2019&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=15&year2=2018&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=15&year2=2019&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=16&year2=2018&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=16&year2=2019&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=17&year2=2018&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=17&year2=2019&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=18&year2=2018&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=18&year2=2019&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=19&year2=2019&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=19&year2=2018&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=20&year2=2019&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=20&year2=2018&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=21&year2=2019&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=21&year2=2018&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=22&year2=2019&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=22&year2=2018&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=23&year2=2019&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=23&year2=2018&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=24&year2=2019&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=24&year2=2018&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=25&year2=2019&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=25&year2=2018&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=26&year2=2018&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=26&year2=2019&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=27&year2=2018&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=27&year2=2019&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=28&year2=2018&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=28&year2=2019&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=1&year2=2019&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=29&year2=2018&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=2&year2=2019&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=30&year2=2018&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=3&year2=2019&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=31&year2=2018&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=1&year2=2018&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=4&year2=2019&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=2&year2=2018&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=5&year2=2019&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=3&year2=2018&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=6&year2=2019&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=4&year2=2018&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=7&year2=2019&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=5&year2=2018&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=8&year2=2019&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=6&year2=2018&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=9&year2=2019&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=7&year2=2018&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=10&year2=2019&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=8&year2=2018&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=11&year2=2019&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=9&year2=2018&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=12&year2=2019&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=10&year2=2018&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=13&year2=2019&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=11&year2=2018&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=14&year2=2019&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=12&year2=2018&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=15&year2=2019&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=13&year2=2018&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=16&year2=2019&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=14&year2=2018&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=15&year2=2018&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=17&year2=2019&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=16&year2=2018&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=18&year2=2019&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=17&year2=2018&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=19&year2=2019&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=18&year2=2018&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=20&year2=2019&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=19&year2=2018&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=21&year2=2019&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=20&year2=2018&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=22&year2=2019&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=21&year2=2018&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=22&year2=2018&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=23&year2=2019&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=23&year2=2018&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=24&year2=2019&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=24&year2=2018&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=25&year2=2019&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=25&year2=2018&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=26&year2=2019&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=26&year2=2018&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=27&year2=2019&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=27&year2=2018&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=28&year2=2019&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=28&year2=2018&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=29&year2=2018&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=29&year2=2019&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=30&year2=2018&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=30&year2=2019&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=1&year2=2018&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=31&year2=2019&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=2&year2=2018&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=1&year2=2019&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=3&year2=2018&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=2&year2=2019&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=4&year2=2018&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=5&year2=2018&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=3&year2=2019&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=6&year2=2018&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=4&year2=2019&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=7&year2=2018&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=5&year2=2019&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=8&year2=2018&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=6&year2=2019&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=9&year2=2018&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=7&year2=2019&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=10&year2=2018&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=8&year2=2019&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=11&year2=2018&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=9&year2=2019&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=12&year2=2018&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=10&year2=2019&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=13&year2=2018&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=11&year2=2019&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=14&year2=2018&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=12&year2=2019&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=15&year2=2018&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=13&year2=2019&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=16&year2=2018&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=14&year2=2019&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=17&year2=2018&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=15&year2=2019&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=18&year2=2018&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=16&year2=2019&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=19&year2=2018&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=20&year2=2018&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=17&year2=2019&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=21&year2=2018&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=18&year2=2019&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=22&year2=2018&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=19&year2=2019&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=23&year2=2018&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=24&year2=2018&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=20&year2=2019&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=25&year2=2018&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=21&year2=2019&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=26&year2=2018&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=22&year2=2019&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=27&year2=2018&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=23&year2=2019&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=28&year2=2018&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=24&year2=2019&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=29&year2=2018&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=25&year2=2019&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=30&year2=2018&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=31&year2=2019&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=26&year2=2019&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=1&year2=2019&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=27&year2=2019&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=2&year2=2019&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=28&year2=2019&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=3&year2=2019&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=29&year2=2019&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=4&year2=2019&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=30&year2=2019&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=5&year2=2019&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=1&year2=2019&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=6&year2=2019&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=7&year2=2019&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=2&year2=2019&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=8&year2=2019&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=3&year2=2019&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=9&year2=2019&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=4&year2=2019&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=10&year2=2019&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=5&year2=2019&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=11&year2=2019&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=6&year2=2019&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=12&year2=2019&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=13&year2=2019&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=7&year2=2019&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=14&year2=2019&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=8&year2=2019&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=15&year2=2019&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=9&year2=2019&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=16&year2=2019&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=10&year2=2019&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=17&year2=2019&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=11&year2=2019&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=18&year2=2019&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=12&year2=2019&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=19&year2=2019&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=20&year2=2019&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=13&year2=2019&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=21&year2=2019&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=14&year2=2019&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=22&year2=2019&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=15&year2=2019&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=23&year2=2019&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=16&year2=2019&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=24&year2=2019&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=17&year2=2019&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=25&year2=2019&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=18&year2=2019&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=26&year2=2019&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=19&year2=2019&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=27&year2=2019&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=28&year2=2019&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=20&year2=2019&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=29&year2=2019&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=21&year2=2019&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=30&year2=2019&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=22&year2=2019&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=31&year2=2019&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=23&year2=2019&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=1&year2=2019&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=2&year2=2019&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=24&year2=2019&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=3&year2=2019&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=25&year2=2019&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=4&year2=2019&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=26&year2=2019&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=5&year2=2019&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=27&year2=2019&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=6&year2=2019&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=28&year2=2019&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=7&year2=2019&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=8&year2=2019&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=29&year2=2019&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=9&year2=2019&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=30&year2=2019&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=10&year2=2019&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=31&year2=2019&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=11&year2=2019&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=12&year2=2019&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=1&year2=2019&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=13&year2=2019&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=2&year2=2019&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=14&year2=2019&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=3&year2=2019&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=15&year2=2019&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=16&year2=2019&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=4&year2=2019&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=17&year2=2019&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=5&year2=2019&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=18&year2=2019&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=6&year2=2019&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=19&year2=2019&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=7&year2=2019&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=20&year2=2019&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=8&year2=2019&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=21&year2=2019&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=9&year2=2019&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=22&year2=2019&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=10&year2=2019&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=23&year2=2019&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=11&year2=2019&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=24&year2=2019&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=25&year2=2019&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=12&year2=2019&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=26&year2=2019&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=13&year2=2019&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=27&year2=2019&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=14&year2=2019&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=28&year2=2019&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=15&year2=2019&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=1&year2=2019&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=16&year2=2019&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=2&year2=2019&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=17&year2=2019&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=3&year2=2019&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=4&year2=2019&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=18&year2=2019&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=5&year2=2019&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=19&year2=2019&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=6&year2=2019&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=20&year2=2019&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=7&year2=2019&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=21&year2=2019&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=8&year2=2019&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=22&year2=2019&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=9&year2=2019&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=10&year2=2019&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=23&year2=2019&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=11&year2=2019&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=24&year2=2019&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=12&year2=2019&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=25&year2=2019&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=13&year2=2019&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=26&year2=2019&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=14&year2=2019&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=27&year2=2019&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=15&year2=2019&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=28&year2=2019&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=16&year2=2019&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=29&year2=2019&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=17&year2=2019&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=30&year2=2019&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=18&year2=2019&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=19&year2=2019&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=1&year2=2019&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=20&year2=2019&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=2&year2=2019&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=21&year2=2019&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=3&year2=2019&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=22&year2=2019&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=4&year2=2019&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=23&year2=2019&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=5&year2=2019&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=24&year2=2019&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=6&year2=2019&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=25&year2=2019&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=7&year2=2019&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=26&year2=2019&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=8&year2=2019&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=27&year2=2019&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=9&year2=2019&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=28&year2=2019&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=10&year2=2019&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=29&year2=2019&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=11&year2=2019&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=30&year2=2019&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=12&year2=2019&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=31&year2=2019&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=1&year2=2019&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=13&year2=2019&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=2&year2=2019&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=14&year2=2019&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=3&year2=2019&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=15&year2=2019&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=4&year2=2019&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=16&year2=2019&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=5&year2=2019&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=17&year2=2019&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=6&year2=2019&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=7&year2=2019&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=18&year2=2019&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=8&year2=2019&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=19&year2=2019&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=9&year2=2019&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=20&year2=2019&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=10&year2=2019&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=21&year2=2019&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=11&year2=2019&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=12&year2=2019&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=22&year2=2019&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=13&year2=2019&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=23&year2=2019&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=14&year2=2019&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=24&year2=2019&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=15&year2=2019&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=16&year2=2019&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=25&year2=2019&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=17&year2=2019&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=26&year2=2019&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=18&year2=2019&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=27&year2=2019&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=19&year2=2019&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=28&year2=2019&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=20&year2=2019&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=29&year2=2019&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=21&year2=2019&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=30&year2=2019&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=22&year2=2019&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=31&year2=2019&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=23&year2=2019&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=1&year2=2019&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=24&year2=2019&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=25&year2=2019&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=2&year2=2019&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=26&year2=2019&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=3&year2=2019&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=27&year2=2019&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=4&year2=2019&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=28&year2=2019&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=5&year2=2019&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=29&year2=2019&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=6&year2=2019&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=30&year2=2019&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=7&year2=2019&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=1&year2=2019&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=8&year2=2019&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=2&year2=2019&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=3&year2=2019&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=9&year2=2019&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=4&year2=2019&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=10&year2=2019&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=5&year2=2019&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=11&year2=2019&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=6&year2=2019&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=12&year2=2019&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=7&year2=2019&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=13&year2=2019&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=8&year2=2019&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=14&year2=2019&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=9&year2=2019&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=10&year2=2019&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=15&year2=2019&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=11&year2=2019&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=16&year2=2019&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=12&year2=2019&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=17&year2=2019&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=13&year2=2019&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=18&year2=2019&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=14&year2=2019&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=19&year2=2019&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=15&year2=2019&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=20&year2=2019&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=16&year2=2019&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=17&year2=2019&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=21&year2=2019&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=18&year2=2019&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=22&year2=2019&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=19&year2=2019&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=23&year2=2019&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=20&year2=2019&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=24&year2=2019&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=21&year2=2019&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=25&year2=2019&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=22&year2=2019&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=26&year2=2019&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=23&year2=2019&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=24&year2=2019&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=27&year2=2019&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=25&year2=2019&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=28&year2=2019&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=26&year2=2019&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=29&year2=2019&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=27&year2=2019&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=30&year2=2019&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=28&year2=2019&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=31&year2=2019&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=29&year2=2019&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=1&year2=2019&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=30&year2=2019&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=31&year2=2019&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=2&year2=2019&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=1&year2=2019&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=3&year2=2019&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=2&year2=2019&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=4&year2=2019&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=5&year2=2019&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=3&year2=2019&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=6&year2=2019&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=4&year2=2019&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=7&year2=2019&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=5&year2=2019&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=8&year2=2019&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=6&year2=2019&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=9&year2=2019&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=7&year2=2019&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=10&year2=2019&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=8&year2=2019&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=11&year2=2019&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=9&year2=2019&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=12&year2=2019&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=10&year2=2019&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=13&year2=2019&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=11&year2=2019&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=14&year2=2019&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=12&year2=2019&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=15&year2=2019&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=13&year2=2019&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=16&year2=2019&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=14&year2=2019&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=17&year2=2019&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=15&year2=2019&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=18&year2=2019&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=16&year2=2019&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=19&year2=2019&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=17&year2=2019&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=20&year2=2019&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=18&year2=2019&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=21&year2=2019&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=19&year2=2019&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=22&year2=2019&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=20&year2=2019&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=23&year2=2019&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=21&year2=2019&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=24&year2=2019&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=22&year2=2019&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=25&year2=2019&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=23&year2=2019&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=26&year2=2019&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=24&year2=2019&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=27&year2=2019&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=25&year2=2019&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=28&year2=2019&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=29&year2=2019&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=26&year2=2019&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=30&year2=2019&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=27&year2=2019&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=1&year2=2019&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=28&year2=2019&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=2&year2=2019&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=29&year2=2019&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=3&year2=2019&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=30&year2=2019&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=4&year2=2019&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=1&year2=2019&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=5&year2=2019&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=6&year2=2019&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=2&year2=2019&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=7&year2=2019&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=3&year2=2019&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=8&year2=2019&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=4&year2=2019&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=9&year2=2019&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=5&year2=2019&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=10&year2=2019&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=6&year2=2019&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=11&year2=2019&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=7&year2=2019&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=12&year2=2019&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=8&year2=2019&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=13&year2=2019&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=14&year2=2019&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=9&year2=2019&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=15&year2=2019&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=10&year2=2019&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=16&year2=2019&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=11&year2=2019&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=17&year2=2019&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=12&year2=2019&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=18&year2=2019&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=13&year2=2019&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=19&year2=2019&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=20&year2=2019&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=14&year2=2019&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=21&year2=2019&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=15&year2=2019&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=22&year2=2019&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=16&year2=2019&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=23&year2=2019&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=17&year2=2019&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=24&year2=2019&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=18&year2=2019&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=25&year2=2019&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=26&year2=2019&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=19&year2=2019&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=27&year2=2019&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=20&year2=2019&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=28&year2=2019&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=21&year2=2019&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=29&year2=2019&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=30&year2=2019&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=22&year2=2019&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=31&year2=2019&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=23&year2=2019&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=1&year2=2019&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=24&year2=2019&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=2&year2=2019&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=3&year2=2019&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=25&year2=2019&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=4&year2=2019&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=26&year2=2019&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=5&year2=2019&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=6&year2=2019&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=27&year2=2019&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=7&year2=2019&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=28&year2=2019&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=8&year2=2019&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=29&year2=2019&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=9&year2=2019&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=10&year2=2019&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=30&year2=2019&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=11&year2=2019&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=31&year2=2019&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=12&year2=2019&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=1&year2=2019&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=13&year2=2019&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=2&year2=2019&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=14&year2=2019&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=15&year2=2019&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=3&year2=2019&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=16&year2=2019&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=4&year2=2019&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=17&year2=2019&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=18&year2=2019&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=5&year2=2019&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=19&year2=2019&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=6&year2=2019&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=20&year2=2019&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=7&year2=2019&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=21&year2=2019&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=22&year2=2019&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=8&year2=2019&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=23&year2=2019&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=9&year2=2019&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=24&year2=2019&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=10&year2=2019&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=25&year2=2019&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=26&year2=2019&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=11&year2=2019&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=27&year2=2019&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=12&year2=2019&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=28&year2=2019&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=29&year2=2019&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=13&year2=2019&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=30&year2=2019&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=14&year2=2019&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=1&year2=2019&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=2&year2=2019&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=15&year2=2019&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=3&year2=2019&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=4&year2=2019&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=16&year2=2019&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=5&year2=2019&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=17&year2=2019&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=6&year2=2019&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=7&year2=2019&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=18&year2=2019&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=8&year2=2019&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=19&year2=2019&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=9&year2=2019&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=10&year2=2019&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=20&year2=2019&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=11&year2=2019&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=21&year2=2019&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=12&year2=2019&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=13&year2=2019&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=22&year2=2019&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=14&year2=2019&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=23&year2=2019&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=15&year2=2019&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=24&year2=2019&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=16&year2=2019&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=17&year2=2019&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=25&year2=2019&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=18&year2=2019&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=26&year2=2019&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=19&year2=2019&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=20&year2=2019&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=27&year2=2019&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=21&year2=2019&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=28&year2=2019&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=22&year2=2019&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=23&year2=2019&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=29&year2=2019&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=24&year2=2019&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=30&year2=2019&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=25&year2=2019&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=26&year2=2019&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=31&year2=2019&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=27&year2=2019&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=1&year2=2019&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=28&year2=2019&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=29&year2=2019&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=2&year2=2019&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=30&year2=2019&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=3&year2=2019&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=31&year2=2020&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=4&year2=2019&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=1&year2=2020&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=5&year2=2019&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=2&year2=2020&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=6&year2=2019&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=3&year2=2020&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=4&year2=2020&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=7&year2=2019&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=5&year2=2020&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=8&year2=2019&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=6&year2=2020&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=9&year2=2019&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=7&year2=2020&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=10&year2=2019&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=8&year2=2020&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=11&year2=2019&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=9&year2=2020&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=10&year2=2020&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=12&year2=2019&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=11&year2=2020&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=13&year2=2019&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=12&year2=2020&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=14&year2=2019&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=13&year2=2020&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=15&year2=2019&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=14&year2=2020&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=15&year2=2020&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=16&year2=2019&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=16&year2=2020&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=17&year2=2019&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=17&year2=2020&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=18&year2=2019&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=18&year2=2020&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=19&year2=2019&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=19&year2=2020&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=20&year2=2020&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=20&year2=2019&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=21&year2=2020&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=21&year2=2019&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=22&year2=2020&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=23&year2=2020&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=22&year2=2019&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=24&year2=2020&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=23&year2=2019&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=25&year2=2020&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=24&year2=2019&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=26&year2=2020&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=25&year2=2019&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=27&year2=2020&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=28&year2=2020&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=26&year2=2019&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=29&year2=2020&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=27&year2=2019&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=30&year2=2020&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=28&year2=2019&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=31&year2=2020&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=29&year2=2019&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=1&year2=2020&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=30&year2=2019&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=2&year2=2020&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=3&year2=2020&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=1&year2=2019&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=4&year2=2020&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=2&year2=2019&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=5&year2=2020&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=3&year2=2019&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=6&year2=2020&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=4&year2=2019&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=7&year2=2020&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=5&year2=2019&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=8&year2=2020&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=6&year2=2019&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=9&year2=2020&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=10&year2=2020&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=7&year2=2019&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=11&year2=2020&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=8&year2=2019&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=12&year2=2020&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=9&year2=2019&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=13&year2=2020&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=10&year2=2019&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=14&year2=2020&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=11&year2=2019&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=15&year2=2020&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=12&year2=2019&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=16&year2=2020&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=13&year2=2019&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=17&year2=2020&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=18&year2=2020&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=14&year2=2019&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=19&year2=2020&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=15&year2=2019&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=16&year2=2019&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=20&year2=2020&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=17&year2=2019&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=21&year2=2020&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=18&year2=2019&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=22&year2=2020&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=19&year2=2019&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=23&year2=2020&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=20&year2=2019&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=24&year2=2020&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=25&year2=2020&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=21&year2=2019&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=26&year2=2020&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=22&year2=2019&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=27&year2=2020&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=23&year2=2019&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=28&year2=2020&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=24&year2=2019&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=29&year2=2020&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=25&year2=2019&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=1&year2=2020&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=26&year2=2019&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=2&year2=2020&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=27&year2=2019&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=3&year2=2020&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=28&year2=2019&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=4&year2=2020&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=29&year2=2019&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=5&year2=2020&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=30&year2=2019&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=6&year2=2020&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=31&year2=2019&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=7&year2=2020&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=1&year2=2019&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=8&year2=2020&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=2&year2=2019&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=9&year2=2020&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=3&year2=2019&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=10&year2=2020&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=4&year2=2019&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=11&year2=2020&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=5&year2=2019&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=12&year2=2020&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=6&year2=2019&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=13&year2=2020&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=7&year2=2019&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=14&year2=2020&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=8&year2=2019&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=15&year2=2020&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=9&year2=2019&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=16&year2=2020&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=10&year2=2019&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=17&year2=2020&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=11&year2=2019&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=18&year2=2020&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=12&year2=2019&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=19&year2=2020&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=13&year2=2019&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=20&year2=2020&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=14&year2=2019&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=15&year2=2019&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=21&year2=2020&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=16&year2=2019&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=22&year2=2020&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=17&year2=2019&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=23&year2=2020&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=18&year2=2019&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=24&year2=2020&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=19&year2=2019&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=25&year2=2020&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=20&year2=2019&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=26&year2=2020&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=21&year2=2019&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=22&year2=2019&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=27&year2=2020&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=23&year2=2019&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=28&year2=2020&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=24&year2=2019&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=29&year2=2020&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=25&year2=2019&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=30&year2=2020&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=26&year2=2019&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=31&year2=2020&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=27&year2=2019&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=1&year2=2020&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=28&year2=2019&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=29&year2=2019&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=2&year2=2020&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=30&year2=2019&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=3&year2=2020&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=1&year2=2019&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=4&year2=2020&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=2&year2=2019&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=3&year2=2019&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=5&year2=2020&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=4&year2=2019&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=6&year2=2020&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=5&year2=2019&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=7&year2=2020&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=6&year2=2019&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=7&year2=2019&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=8&year2=2020&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=8&year2=2019&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=9&year2=2020&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=9&year2=2019&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=10&year2=2020&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=10&year2=2019&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=11&year2=2019&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=11&year2=2020&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=12&year2=2019&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=12&year2=2020&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=13&year2=2019&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=13&year2=2020&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=14&year2=2019&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=14&year2=2020&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=15&year2=2019&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=15&year2=2020&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=16&year2=2019&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=17&year2=2019&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=16&year2=2020&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=18&year2=2019&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=17&year2=2020&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=19&year2=2019&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=18&year2=2020&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=20&year2=2019&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=19&year2=2020&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=21&year2=2019&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=20&year2=2020&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=22&year2=2019&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=23&year2=2019&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=21&year2=2020&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=24&year2=2019&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=22&year2=2020&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=25&year2=2019&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=23&year2=2020&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=26&year2=2019&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=24&year2=2020&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=27&year2=2019&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=25&year2=2020&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=28&year2=2019&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=29&year2=2019&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=26&year2=2020&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=30&year2=2019&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=27&year2=2020&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=31&year2=2020&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=28&year2=2020&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=1&year2=2020&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=29&year2=2020&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=2&year2=2020&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=30&year2=2020&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=3&year2=2020&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=4&year2=2020&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=1&year2=2020&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=5&year2=2020&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=2&year2=2020&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=6&year2=2020&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=3&year2=2020&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=7&year2=2020&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=4&year2=2020&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=8&year2=2020&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=5&year2=2020&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=9&year2=2020&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=6&year2=2020&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=10&year2=2020&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=11&year2=2020&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=7&year2=2020&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=12&year2=2020&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=8&year2=2020&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=13&year2=2020&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=9&year2=2020&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=14&year2=2020&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=15&year2=2020&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=10&year2=2020&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=16&year2=2020&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=11&year2=2020&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=17&year2=2020&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=12&year2=2020&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=18&year2=2020&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=13&year2=2020&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=19&year2=2020&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=14&year2=2020&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=20&year2=2020&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=15&year2=2020&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=21&year2=2020&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=16&year2=2020&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=22&year2=2020&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=17&year2=2020&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=23&year2=2020&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=24&year2=2020&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=18&year2=2020&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=25&year2=2020&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=19&year2=2020&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=26&year2=2020&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=20&year2=2020&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=27&year2=2020&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=21&year2=2020&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=28&year2=2020&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=29&year2=2020&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=22&year2=2020&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=30&year2=2020&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=23&year2=2020&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=31&year2=2020&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=24&year2=2020&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=1&year2=2020&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=25&year2=2020&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=2&year2=2020&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=26&year2=2020&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=3&year2=2020&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=4&year2=2020&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=27&year2=2020&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=5&year2=2020&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=28&year2=2020&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=6&year2=2020&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=29&year2=2020&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=7&year2=2020&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=30&year2=2020&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=8&year2=2020&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=31&year2=2020&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=9&year2=2020&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=10&year2=2020&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=1&year2=2020&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=11&year2=2020&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=2&year2=2020&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=12&year2=2020&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=3&year2=2020&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=13&year2=2020&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=4&year2=2020&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=14&year2=2020&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=5&year2=2020&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=15&year2=2020&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=6&year2=2020&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=16&year2=2020&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=7&year2=2020&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=17&year2=2020&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=8&year2=2020&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=18&year2=2020&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=9&year2=2020&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=19&year2=2020&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=10&year2=2020&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=20&year2=2020&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=11&year2=2020&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=21&year2=2020&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=12&year2=2020&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=22&year2=2020&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=13&year2=2020&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=23&year2=2020&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=14&year2=2020&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=24&year2=2020&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=25&year2=2020&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=15&year2=2020&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=26&year2=2020&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=16&year2=2020&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=27&year2=2020&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=17&year2=2020&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=28&year2=2020&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=18&year2=2020&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=29&year2=2020&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=19&year2=2020&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=1&year2=2020&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=20&year2=2020&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=2&year2=2020&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=21&year2=2020&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=3&year2=2020&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=22&year2=2020&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=4&year2=2020&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=23&year2=2020&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=5&year2=2020&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=6&year2=2020&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=24&year2=2020&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=7&year2=2020&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=25&year2=2020&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=8&year2=2020&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=26&year2=2020&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=9&year2=2020&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=10&year2=2020&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=27&year2=2020&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=11&year2=2020&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=28&year2=2020&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=12&year2=2020&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=29&year2=2020&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=13&year2=2020&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=30&year2=2020&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=14&year2=2020&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=1&year2=2020&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=15&year2=2020&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=2&year2=2020&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=16&year2=2020&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=17&year2=2020&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=3&year2=2020&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=18&year2=2020&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=4&year2=2020&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=19&year2=2020&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=5&year2=2020&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=20&year2=2020&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=6&year2=2020&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=21&year2=2020&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=7&year2=2020&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=22&year2=2020&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=23&year2=2020&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=8&year2=2020&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=24&year2=2020&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=9&year2=2020&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=25&year2=2020&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=10&year2=2020&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=26&year2=2020&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=11&year2=2020&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=27&year2=2020&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=12&year2=2020&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=28&year2=2020&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=13&year2=2020&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=29&year2=2020&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=14&year2=2020&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=30&year2=2020&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=15&year2=2020&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=31&year2=2020&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=1&year2=2020&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=16&year2=2020&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=2&year2=2020&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=17&year2=2020&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=3&year2=2020&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=18&year2=2020&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=4&year2=2020&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=19&year2=2020&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=5&year2=2020&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=20&year2=2020&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=6&year2=2020&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=21&year2=2020&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=22&year2=2020&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=7&year2=2020&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=23&year2=2020&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=8&year2=2020&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=24&year2=2020&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=9&year2=2020&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=25&year2=2020&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=10&year2=2020&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=26&year2=2020&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=11&year2=2020&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=12&year2=2020&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=27&year2=2020&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=13&year2=2020&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=28&year2=2020&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=14&year2=2020&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=29&year2=2020&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=15&year2=2020&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=30&year2=2020&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=16&year2=2020&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=31&year2=2020&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=17&year2=2020&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=1&year2=2020&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=18&year2=2020&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=19&year2=2020&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=2&year2=2020&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=20&year2=2020&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=3&year2=2020&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=21&year2=2020&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=4&year2=2020&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=22&year2=2020&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=5&year2=2020&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=23&year2=2020&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=6&year2=2020&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=24&year2=2020&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=7&year2=2020&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=25&year2=2020&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=8&year2=2020&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=26&year2=2020&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=9&year2=2020&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=27&year2=2020&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=10&year2=2020&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=28&year2=2020&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=11&year2=2020&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=29&year2=2020&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=12&year2=2020&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=30&year2=2020&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=13&year2=2020&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=1&year2=2020&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=2&year2=2020&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=14&year2=2020&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=3&year2=2020&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=15&year2=2020&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=4&year2=2020&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=16&year2=2020&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=5&year2=2020&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=17&year2=2020&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=6&year2=2020&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=18&year2=2020&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=7&year2=2020&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=19&year2=2020&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=8&year2=2020&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=20&year2=2020&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=9&year2=2020&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=21&year2=2020&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=10&year2=2020&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=22&year2=2020&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=11&year2=2020&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=23&year2=2020&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=12&year2=2020&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=24&year2=2020&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=13&year2=2020&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=14&year2=2020&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=25&year2=2020&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=15&year2=2020&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=26&year2=2020&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=16&year2=2020&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=27&year2=2020&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=17&year2=2020&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=28&year2=2020&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=18&year2=2020&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=29&year2=2020&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=19&year2=2020&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=30&year2=2020&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=31&year2=2020&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=20&year2=2020&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=1&year2=2020&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=21&year2=2020&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=2&year2=2020&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=22&year2=2020&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=23&year2=2020&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=3&year2=2020&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=4&year2=2020&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=5&year2=2020&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=24&year2=2020&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=6&year2=2020&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=25&year2=2020&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=7&year2=2020&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=26&year2=2020&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=8&year2=2020&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=27&year2=2020&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=9&year2=2020&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=28&year2=2020&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=10&year2=2020&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=29&year2=2020&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=11&year2=2020&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=30&year2=2020&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=31&year2=2020&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=12&year2=2020&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=1&year2=2020&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=13&year2=2020&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=2&year2=2020&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=14&year2=2020&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=3&year2=2020&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=15&year2=2020&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=4&year2=2020&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=16&year2=2020&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=5&year2=2020&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=17&year2=2020&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=6&year2=2020&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=18&year2=2020&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=7&year2=2020&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=19&year2=2020&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=8&year2=2020&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=20&year2=2020&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=9&year2=2020&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=10&year2=2020&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=21&year2=2020&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=11&year2=2020&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=22&year2=2020&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=23&year2=2020&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=12&year2=2020&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=24&year2=2020&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=13&year2=2020&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=25&year2=2020&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=14&year2=2020&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=26&year2=2020&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=15&year2=2020&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=27&year2=2020&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=16&year2=2020&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=28&year2=2020&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=17&year2=2020&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=29&year2=2020&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=18&year2=2020&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=30&year2=2020&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=19&year2=2020&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=1&year2=2020&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=20&year2=2020&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=2&year2=2020&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=21&year2=2020&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=3&year2=2020&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=22&year2=2020&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=4&year2=2020&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=23&year2=2020&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=5&year2=2020&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=24&year2=2020&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=6&year2=2020&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=7&year2=2020&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=25&year2=2020&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=8&year2=2020&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=26&year2=2020&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=9&year2=2020&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=27&year2=2020&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=10&year2=2020&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=28&year2=2020&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=11&year2=2020&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=29&year2=2020&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=12&year2=2020&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=30&year2=2020&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=13&year2=2020&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=1&year2=2020&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=14&year2=2020&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=2&year2=2020&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=15&year2=2020&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=16&year2=2020&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=3&year2=2020&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=17&year2=2020&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=4&year2=2020&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=18&year2=2020&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=5&year2=2020&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=19&year2=2020&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=6&year2=2020&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=20&year2=2020&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=7&year2=2020&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=21&year2=2020&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=22&year2=2020&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=23&year2=2020&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=8&year2=2020&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=24&year2=2020&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=9&year2=2020&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=25&year2=2020&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=26&year2=2020&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=10&year2=2020&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=27&year2=2020&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=11&year2=2020&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=28&year2=2020&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=12&year2=2020&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=29&year2=2020&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=13&year2=2020&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=30&year2=2020&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=31&year2=2020&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=14&year2=2020&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=1&year2=2020&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=15&year2=2020&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=2&year2=2020&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=16&year2=2020&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=3&year2=2020&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=17&year2=2020&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=4&year2=2020&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=5&year2=2020&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=18&year2=2020&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=6&year2=2020&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=19&year2=2020&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=7&year2=2020&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=20&year2=2020&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=8&year2=2020&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=21&year2=2020&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=9&year2=2020&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=22&year2=2020&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=10&year2=2020&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=23&year2=2020&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=11&year2=2020&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=12&year2=2020&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=24&year2=2020&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=13&year2=2020&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=25&year2=2020&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=14&year2=2020&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=26&year2=2020&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=15&year2=2020&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=27&year2=2020&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=16&year2=2020&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=28&year2=2020&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=17&year2=2020&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=29&year2=2020&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=18&year2=2020&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=19&year2=2020&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=30&year2=2020&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=20&year2=2020&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=31&year2=2020&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=21&year2=2020&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=1&year2=2020&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=22&year2=2020&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=23&year2=2020&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=2&year2=2020&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=24&year2=2020&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=3&year2=2020&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=25&year2=2020&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=4&year2=2020&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=26&year2=2020&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=5&year2=2020&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=27&year2=2020&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=28&year2=2020&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=6&year2=2020&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=29&year2=2020&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=7&year2=2020&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=30&year2=2020&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=8&year2=2020&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=1&year2=2020&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=2&year2=2020&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=9&year2=2020&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=3&year2=2020&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=10&year2=2020&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=4&year2=2020&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=11&year2=2020&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=5&year2=2020&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=6&year2=2020&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=12&year2=2020&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=7&year2=2020&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=13&year2=2020&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=8&year2=2020&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=14&year2=2020&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=9&year2=2020&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=15&year2=2020&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=10&year2=2020&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=11&year2=2020&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=16&year2=2020&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=12&year2=2020&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=17&year2=2020&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=13&year2=2020&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=14&year2=2020&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=18&year2=2020&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=15&year2=2020&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=19&year2=2020&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=16&year2=2020&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=20&year2=2020&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=17&year2=2020&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=21&year2=2020&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=18&year2=2020&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=19&year2=2020&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=22&year2=2020&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=20&year2=2020&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=23&year2=2020&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=21&year2=2020&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=24&year2=2020&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=22&year2=2020&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=23&year2=2020&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=25&year2=2020&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=24&year2=2020&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=26&year2=2020&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=25&year2=2020&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=27&year2=2020&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=26&year2=2020&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=28&year2=2020&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=27&year2=2020&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=29&year2=2020&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=28&year2=2020&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=30&year2=2020&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=29&year2=2020&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=30&year2=2020&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=31&year2=2020&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=31&year2=2021&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=1&year2=2020&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=1&year2=2021&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=2&year2=2020&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=2&year2=2021&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=3&year2=2021&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=3&year2=2020&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=4&year2=2021&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=4&year2=2020&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=5&year2=2021&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=5&year2=2020&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=6&year2=2021&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=7&year2=2021&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=6&year2=2020&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=8&year2=2021&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=7&year2=2020&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=9&year2=2021&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=10&year2=2021&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=8&year2=2020&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=11&year2=2021&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=9&year2=2020&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=12&year2=2021&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=10&year2=2020&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=13&year2=2021&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=14&year2=2021&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=11&year2=2020&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=15&year2=2021&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=12&year2=2020&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=16&year2=2021&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=17&year2=2021&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=13&year2=2020&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=18&year2=2021&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=14&year2=2020&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=19&year2=2021&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=15&year2=2020&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=20&year2=2021&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=16&year2=2020&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=21&year2=2021&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=22&year2=2021&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=17&year2=2020&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=23&year2=2021&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=18&year2=2020&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=24&year2=2021&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=19&year2=2020&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=25&year2=2021&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=26&year2=2021&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=20&year2=2020&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=27&year2=2021&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=21&year2=2020&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=28&year2=2021&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=22&year2=2020&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=29&year2=2021&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=23&year2=2020&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=30&year2=2021&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=31&year2=2021&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=24&year2=2020&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=1&year2=2021&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=25&year2=2020&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=2&year2=2021&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=26&year2=2020&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=3&year2=2021&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=27&year2=2020&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=4&year2=2021&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=28&year2=2020&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=5&year2=2021&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=29&year2=2020&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=6&year2=2021&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=7&year2=2021&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=30&year2=2020&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=8&year2=2021&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=1&year2=2020&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=9&year2=2021&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=2&year2=2020&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=10&year2=2021&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=11&year2=2021&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=3&year2=2020&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=12&year2=2021&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=4&year2=2020&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=13&year2=2021&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=5&year2=2020&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=14&year2=2021&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=6&year2=2020&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=15&year2=2021&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=7&year2=2020&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=16&year2=2021&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=8&year2=2020&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=17&year2=2021&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=18&year2=2021&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=9&year2=2020&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=19&year2=2021&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=10&year2=2020&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=20&year2=2021&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=11&year2=2020&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=21&year2=2021&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=12&year2=2020&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=13&year2=2020&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=22&year2=2021&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=14&year2=2020&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=23&year2=2021&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=15&year2=2020&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=24&year2=2021&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=16&year2=2020&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=25&year2=2021&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=17&year2=2020&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=26&year2=2021&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=18&year2=2020&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=27&year2=2021&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=19&year2=2020&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=28&year2=2021&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=20&year2=2020&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=21&year2=2020&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=22&year2=2020&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=23&year2=2020&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=24&year2=2020&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=25&year2=2020&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=26&year2=2020&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=27&year2=2020&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=28&year2=2020&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=29&year2=2020&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=30&year2=2020&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=31&year2=2020&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=12&year2=2021&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=1&year2=2020&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=13&year2=2021&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=2&year2=2020&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=14&year2=2021&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=3&year2=2020&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=15&year2=2021&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=4&year2=2020&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=16&year2=2021&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=5&year2=2020&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=17&year2=2021&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=6&year2=2020&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=18&year2=2021&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=7&year2=2020&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=8&year2=2020&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=19&year2=2021&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=9&year2=2020&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=20&year2=2021&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=10&year2=2020&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=21&year2=2021&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=11&year2=2020&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=22&year2=2021&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=12&year2=2020&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=23&year2=2021&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=13&year2=2020&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=24&year2=2021&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=14&year2=2020&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=25&year2=2021&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=15&year2=2020&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=26&year2=2021&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=16&year2=2020&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=27&year2=2021&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=17&year2=2020&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=28&year2=2021&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=18&year2=2020&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=19&year2=2020&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=29&year2=2021&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=20&year2=2020&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=30&year2=2021&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=21&year2=2020&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=31&year2=2021&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=22&year2=2020&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=1&year2=2021&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=23&year2=2020&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=24&year2=2020&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=2&year2=2021&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=25&year2=2020&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=3&year2=2021&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=26&year2=2020&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=4&year2=2021&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=27&year2=2020&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=28&year2=2020&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=5&year2=2021&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=29&year2=2020&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=6&year2=2021&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=30&year2=2020&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=7&year2=2021&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=1&year2=2020&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=8&year2=2021&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=2&year2=2020&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=9&year2=2021&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=3&year2=2020&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=10&year2=2021&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=4&year2=2020&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=5&year2=2020&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=11&year2=2021&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=6&year2=2020&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=12&year2=2021&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=7&year2=2020&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=13&year2=2021&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=8&year2=2020&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=14&year2=2021&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=9&year2=2020&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=15&year2=2021&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=10&year2=2020&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=16&year2=2021&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=11&year2=2020&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=12&year2=2020&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=17&year2=2021&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=13&year2=2020&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=18&year2=2021&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=14&year2=2020&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=15&year2=2020&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=19&year2=2021&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=16&year2=2020&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=20&year2=2021&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=17&year2=2020&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=21&year2=2021&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=18&year2=2020&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=19&year2=2020&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=22&year2=2021&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=20&year2=2020&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=23&year2=2021&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=21&year2=2020&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=24&year2=2021&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=22&year2=2020&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=23&year2=2020&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=25&year2=2021&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=24&year2=2020&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=26&year2=2021&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=25&year2=2020&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=27&year2=2021&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=26&year2=2020&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=28&year2=2021&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=27&year2=2020&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=29&year2=2021&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=28&year2=2020&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=30&year2=2021&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=29&year2=2020&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=30&year2=2020&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=1&year2=2021&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=31&year2=2021&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=2&year2=2021&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=1&year2=2021&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=3&year2=2021&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=2&year2=2021&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=4&year2=2021&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=3&year2=2021&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=5&year2=2021&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=4&year2=2021&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=5&year2=2021&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=6&year2=2021&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=6&year2=2021&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=7&year2=2021&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=7&year2=2021&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=8&year2=2021&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=8&year2=2021&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=9&year2=2021&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=9&year2=2021&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=10&year2=2021&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=10&year2=2021&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=11&year2=2021&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=11&year2=2021&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=12&year2=2021&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=12&year2=2021&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=13&year2=2021&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=14&year2=2021&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=13&year2=2021&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=15&year2=2021&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=14&year2=2021&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=16&year2=2021&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=15&year2=2021&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=17&year2=2021&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=16&year2=2021&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=18&year2=2021&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=17&year2=2021&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=19&year2=2021&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=20&year2=2021&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=18&year2=2021&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=21&year2=2021&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=19&year2=2021&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=22&year2=2021&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=20&year2=2021&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=23&year2=2021&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=21&year2=2021&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=24&year2=2021&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=25&year2=2021&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=22&year2=2021&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=26&year2=2021&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=23&year2=2021&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=27&year2=2021&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=28&year2=2021&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=24&year2=2021&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=29&year2=2021&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=25&year2=2021&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=30&year2=2021&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=26&year2=2021&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=31&year2=2021&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=27&year2=2021&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=1&year2=2021&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=2&year2=2021&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=28&year2=2021&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=3&year2=2021&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=29&year2=2021&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=4&year2=2021&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=30&year2=2021&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=5&year2=2021&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=6&year2=2021&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=31&year2=2021&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=7&year2=2021&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=1&year2=2021&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=8&year2=2021&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=9&year2=2021&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=2&year2=2021&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=10&year2=2021&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=3&year2=2021&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=11&year2=2021&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=4&year2=2021&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=12&year2=2021&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=13&year2=2021&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=5&year2=2021&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=14&year2=2021&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=6&year2=2021&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=15&year2=2021&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=7&year2=2021&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=16&year2=2021&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=8&year2=2021&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=17&year2=2021&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=18&year2=2021&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=9&year2=2021&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=19&year2=2021&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=10&year2=2021&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=20&year2=2021&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=11&year2=2021&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=21&year2=2021&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=12&year2=2021&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=22&year2=2021&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=13&year2=2021&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=23&year2=2021&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=14&year2=2021&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=24&year2=2021&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=15&year2=2021&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=25&year2=2021&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=16&year2=2021&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=26&year2=2021&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=17&year2=2021&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=27&year2=2021&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=18&year2=2021&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=28&year2=2021&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=19&year2=2021&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=20&year2=2021&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=21&year2=2021&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=22&year2=2021&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=23&year2=2021&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=24&year2=2021&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=25&year2=2021&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=26&year2=2021&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=27&year2=2021&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=28&year2=2021&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=29&year2=2021&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=12&year2=2021&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=30&year2=2021&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=13&year2=2021&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=1&year2=2021&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=14&year2=2021&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=15&year2=2021&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=2&year2=2021&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=16&year2=2021&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=3&year2=2021&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=17&year2=2021&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=4&year2=2021&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=18&year2=2021&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=5&year2=2021&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=19&year2=2021&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=6&year2=2021&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=20&year2=2021&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=7&year2=2021&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=21&year2=2021&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=8&year2=2021&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=22&year2=2021&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=9&year2=2021&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=23&year2=2021&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=10&year2=2021&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=24&year2=2021&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=25&year2=2021&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=11&year2=2021&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=26&year2=2021&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=12&year2=2021&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=27&year2=2021&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=13&year2=2021&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=28&year2=2021&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=14&year2=2021&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=29&year2=2021&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=15&year2=2021&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=30&year2=2021&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=16&year2=2021&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=31&year2=2021&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=17&year2=2021&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=1&year2=2021&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=18&year2=2021&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=2&year2=2021&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=19&year2=2021&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=3&year2=2021&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=4&year2=2021&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=20&year2=2021&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=5&year2=2021&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=21&year2=2021&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=6&year2=2021&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=22&year2=2021&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=7&year2=2021&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=23&year2=2021&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=8&year2=2021&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=24&year2=2021&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=9&year2=2021&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=25&year2=2021&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=10&year2=2021&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=26&year2=2021&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=11&year2=2021&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=27&year2=2021&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=12&year2=2021&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=28&year2=2021&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=13&year2=2021&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=29&year2=2021&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=14&year2=2021&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=30&year2=2021&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=15&year2=2021&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=31&year2=2021&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=16&year2=2021&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=1&year2=2021&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=17&year2=2021&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=2&year2=2021&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=18&year2=2021&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=3&year2=2021&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=19&year2=2021&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=4&year2=2021&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=20&year2=2021&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=5&year2=2021&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=21&year2=2021&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=6&year2=2021&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=22&year2=2021&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=7&year2=2021&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=23&year2=2021&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=24&year2=2021&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=8&year2=2021&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=25&year2=2021&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=9&year2=2021&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=26&year2=2021&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=10&year2=2021&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=27&year2=2021&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=11&year2=2021&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=28&year2=2021&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=12&year2=2021&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=29&year2=2021&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=13&year2=2021&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=30&year2=2021&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=14&year2=2021&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=1&year2=2021&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=2&year2=2021&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=15&year2=2021&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=3&year2=2021&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=16&year2=2021&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=4&year2=2021&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=17&year2=2021&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=5&year2=2021&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=18&year2=2021&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=6&year2=2021&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=19&year2=2021&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=7&year2=2021&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=20&year2=2021&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=8&year2=2021&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=21&year2=2021&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=9&year2=2021&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=22&year2=2021&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=10&year2=2021&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=23&year2=2021&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=11&year2=2021&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=24&year2=2021&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=12&year2=2021&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=25&year2=2021&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=13&year2=2021&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=26&year2=2021&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=14&year2=2021&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=27&year2=2021&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=15&year2=2021&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=28&year2=2021&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=16&year2=2021&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=29&year2=2021&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=17&year2=2021&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=30&year2=2021&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=18&year2=2021&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=31&year2=2021&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=19&year2=2021&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=1&year2=2021&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=20&year2=2021&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=2&year2=2021&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=21&year2=2021&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=3&year2=2021&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=22&year2=2021&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=4&year2=2021&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=23&year2=2021&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=24&year2=2021&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=5&year2=2021&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=25&year2=2021&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=6&year2=2021&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=26&year2=2021&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=7&year2=2021&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=27&year2=2021&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=8&year2=2021&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=28&year2=2021&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=9&year2=2021&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=10&year2=2021&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=29&year2=2021&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=11&year2=2021&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=30&year2=2021&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=12&year2=2021&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=31&year2=2021&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=13&year2=2021&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=1&year2=2021&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=14&year2=2021&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=2&year2=2021&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=15&year2=2021&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=3&year2=2021&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=16&year2=2021&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=4&year2=2021&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=17&year2=2021&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=5&year2=2021&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=18&year2=2021&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=6&year2=2021&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=19&year2=2021&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=7&year2=2021&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=20&year2=2021&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=21&year2=2021&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=8&year2=2021&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=22&year2=2021&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=9&year2=2021&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=23&year2=2021&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=10&year2=2021&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=24&year2=2021&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=11&year2=2021&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=25&year2=2021&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=12&year2=2021&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=26&year2=2021&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=13&year2=2021&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=27&year2=2021&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=28&year2=2021&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=14&year2=2021&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=29&year2=2021&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=15&year2=2021&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=30&year2=2021&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=16&year2=2021&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=1&year2=2021&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=17&year2=2021&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=2&year2=2021&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=18&year2=2021&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=3&year2=2021&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=19&year2=2021&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=4&year2=2021&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=20&year2=2021&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=5&year2=2021&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=21&year2=2021&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=6&year2=2021&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=22&year2=2021&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=7&year2=2021&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=23&year2=2021&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=8&year2=2021&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=24&year2=2021&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=9&year2=2021&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=25&year2=2021&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=10&year2=2021&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=11&year2=2021&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=26&year2=2021&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=12&year2=2021&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=27&year2=2021&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=13&year2=2021&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=28&year2=2021&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=14&year2=2021&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=29&year2=2021&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=30&year2=2021&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=15&year2=2021&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=1&year2=2021&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=16&year2=2021&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=2&year2=2021&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=17&year2=2021&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=18&year2=2021&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=3&year2=2021&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=19&year2=2021&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=4&year2=2021&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=20&year2=2021&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=5&year2=2021&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=21&year2=2021&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=6&year2=2021&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=22&year2=2021&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=7&year2=2021&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=23&year2=2021&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=24&year2=2021&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=8&year2=2021&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=25&year2=2021&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=9&year2=2021&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=26&year2=2021&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=10&year2=2021&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=27&year2=2021&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=11&year2=2021&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=28&year2=2021&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=12&year2=2021&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=29&year2=2021&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=30&year2=2021&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=13&year2=2021&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=31&year2=2021&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=14&year2=2021&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=1&year2=2021&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=15&year2=2021&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=2&year2=2021&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=3&year2=2021&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=16&year2=2021&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=4&year2=2021&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=17&year2=2021&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=5&year2=2021&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=18&year2=2021&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=6&year2=2021&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=19&year2=2021&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=7&year2=2021&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=8&year2=2021&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=20&year2=2021&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=9&year2=2021&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=21&year2=2021&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=10&year2=2021&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=11&year2=2021&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=22&year2=2021&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=12&year2=2021&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=23&year2=2021&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=13&year2=2021&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=24&year2=2021&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=14&year2=2021&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=25&year2=2021&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=15&year2=2021&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=16&year2=2021&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=26&year2=2021&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=17&year2=2021&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=27&year2=2021&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=18&year2=2021&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=19&year2=2021&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=28&year2=2021&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=20&year2=2021&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=29&year2=2021&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=21&year2=2021&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=30&year2=2021&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=22&year2=2021&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=23&year2=2021&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=31&year2=2021&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=24&year2=2021&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=1&year2=2021&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=25&year2=2021&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=2&year2=2021&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=26&year2=2021&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=27&year2=2021&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=3&year2=2021&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=28&year2=2021&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=4&year2=2021&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=29&year2=2021&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=5&year2=2021&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=30&year2=2021&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=1&year2=2021&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=6&year2=2021&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=2&year2=2021&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=7&year2=2021&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=3&year2=2021&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=4&year2=2021&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=8&year2=2021&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=5&year2=2021&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=9&year2=2021&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=6&year2=2021&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=7&year2=2021&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=10&year2=2021&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=8&year2=2021&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=11&year2=2021&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=9&year2=2021&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=10&year2=2021&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=12&year2=2021&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=11&year2=2021&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=13&year2=2021&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=12&year2=2021&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=14&year2=2021&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=13&year2=2021&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=14&year2=2021&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=15&year2=2021&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=15&year2=2021&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=16&year2=2021&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=16&year2=2021&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=17&year2=2021&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=17&year2=2021&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=18&year2=2021&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=18&year2=2021&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=19&year2=2021&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=19&year2=2021&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=20&year2=2021&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=20&year2=2021&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=21&year2=2021&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=22&year2=2021&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=21&year2=2021&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=23&year2=2021&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=22&year2=2021&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=24&year2=2021&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=25&year2=2021&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=23&year2=2021&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=26&year2=2021&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=24&year2=2021&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=27&year2=2021&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=28&year2=2021&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=25&year2=2021&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=29&year2=2021&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=26&year2=2021&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=30&year2=2021&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=31&year2=2022&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=27&year2=2021&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=1&year2=2022&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=28&year2=2021&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=2&year2=2022&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=29&year2=2021&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=3&year2=2022&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=4&year2=2022&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=30&year2=2021&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=5&year2=2022&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=31&year2=2021&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=6&year2=2022&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=1&year2=2021&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=7&year2=2022&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=8&year2=2022&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=2&year2=2021&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=9&year2=2022&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=3&year2=2021&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=10&year2=2022&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=4&year2=2021&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=11&year2=2022&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=12&year2=2022&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=5&year2=2021&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=13&year2=2022&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=6&year2=2021&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=14&year2=2022&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=7&year2=2021&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=15&year2=2022&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=8&year2=2021&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=16&year2=2022&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=17&year2=2022&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=9&year2=2021&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=18&year2=2022&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=10&year2=2021&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=19&year2=2022&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=11&year2=2021&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=20&year2=2022&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=12&year2=2021&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=21&year2=2022&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=22&year2=2022&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=13&year2=2021&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=23&year2=2022&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=14&year2=2021&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=24&year2=2022&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=15&year2=2021&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=25&year2=2022&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=16&year2=2021&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=26&year2=2022&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=27&year2=2022&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=17&year2=2021&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=28&year2=2022&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=18&year2=2021&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=29&year2=2022&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=19&year2=2021&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=30&year2=2022&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=20&year2=2021&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=31&year2=2022&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=21&year2=2021&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=1&year2=2022&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=2&year2=2022&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=22&year2=2021&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=3&year2=2022&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=23&year2=2021&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=4&year2=2022&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=24&year2=2021&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=5&year2=2022&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=25&year2=2021&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=6&year2=2022&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=7&year2=2022&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=26&year2=2021&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=8&year2=2022&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=27&year2=2021&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=9&year2=2022&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=28&year2=2021&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=10&year2=2022&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=29&year2=2021&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=11&year2=2022&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=30&year2=2021&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=12&year2=2022&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=1&year2=2021&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=13&year2=2022&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=2&year2=2021&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=14&year2=2022&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=3&year2=2021&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=15&year2=2022&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=16&year2=2022&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=4&year2=2021&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=17&year2=2022&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=5&year2=2021&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=18&year2=2022&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=6&year2=2021&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=19&year2=2022&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=7&year2=2021&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=20&year2=2022&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=8&year2=2021&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=21&year2=2022&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=9&year2=2021&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=22&year2=2022&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=10&year2=2021&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=23&year2=2022&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=24&year2=2022&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=11&year2=2021&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=12&year2=2021&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=25&year2=2022&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=13&year2=2021&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=26&year2=2022&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=27&year2=2022&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=14&year2=2021&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=15&year2=2021&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=1&year2=2022&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=16&year2=2021&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=2&year2=2022&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=17&year2=2021&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=3&year2=2022&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=18&year2=2021&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=4&year2=2022&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=19&year2=2021&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=5&year2=2022&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=20&year2=2021&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=6&year2=2022&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=7&year2=2022&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=21&year2=2021&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=8&year2=2022&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=22&year2=2021&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=9&year2=2022&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=23&year2=2021&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=10&year2=2022&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=24&year2=2021&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=25&year2=2021&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=11&year2=2022&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=26&year2=2021&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=12&year2=2022&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=13&year2=2022&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=27&year2=2021&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=14&year2=2022&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=28&year2=2021&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=15&year2=2022&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=29&year2=2021&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=16&year2=2022&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=30&year2=2021&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=17&year2=2022&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=31&year2=2021&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=18&year2=2022&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=1&year2=2021&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=19&year2=2022&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=2&year2=2021&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=20&year2=2022&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=3&year2=2021&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=21&year2=2022&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=4&year2=2021&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=22&year2=2022&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=5&year2=2021&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=6&year2=2021&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=23&year2=2022&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=7&year2=2021&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=24&year2=2022&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=8&year2=2021&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=25&year2=2022&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=9&year2=2021&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=26&year2=2022&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=10&year2=2021&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=27&year2=2022&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=11&year2=2021&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=28&year2=2022&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=12&year2=2021&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=29&year2=2022&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=30&year2=2022&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=13&year2=2021&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=31&year2=2022&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=14&year2=2021&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=1&year2=2022&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=15&year2=2021&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=2&year2=2022&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=16&year2=2021&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=3&year2=2022&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=17&year2=2021&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=18&year2=2021&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=4&year2=2022&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=19&year2=2021&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=5&year2=2022&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=20&year2=2021&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=6&year2=2022&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=21&year2=2021&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=7&year2=2022&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=22&year2=2021&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=8&year2=2022&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=23&year2=2021&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=9&year2=2022&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=24&year2=2021&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=10&year2=2022&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=25&year2=2021&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=11&year2=2022&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=26&year2=2021&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=12&year2=2022&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=27&year2=2021&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=13&year2=2022&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=28&year2=2021&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=14&year2=2022&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=29&year2=2021&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=30&year2=2021&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=15&year2=2022&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=1&year2=2021&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=16&year2=2022&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=2&year2=2021&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=17&year2=2022&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=3&year2=2021&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=18&year2=2022&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=4&year2=2021&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=19&year2=2022&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=5&year2=2021&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=20&year2=2022&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=6&year2=2021&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=7&year2=2021&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=21&year2=2022&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=8&year2=2021&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=22&year2=2022&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=9&year2=2021&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=23&year2=2022&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=10&year2=2021&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=24&year2=2022&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=11&year2=2021&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=25&year2=2022&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=12&year2=2021&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=26&year2=2022&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=13&year2=2021&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=14&year2=2021&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=27&year2=2022&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=15&year2=2021&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=28&year2=2022&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=16&year2=2021&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=29&year2=2022&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=17&year2=2021&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=30&year2=2022&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=18&year2=2021&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=1&year2=2022&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=19&year2=2021&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=2&year2=2022&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=20&year2=2021&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=3&year2=2022&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=21&year2=2021&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=4&year2=2022&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=22&year2=2021&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=23&year2=2021&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=5&year2=2022&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=24&year2=2021&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=6&year2=2022&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=25&year2=2021&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=7&year2=2022&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=26&year2=2021&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=8&year2=2022&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=27&year2=2021&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=28&year2=2021&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=9&year2=2022&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=29&year2=2021&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=10&year2=2022&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=30&year2=2021&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=11&year2=2022&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=31&year2=2022&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=12&year2=2022&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=1&year2=2022&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=2&year2=2022&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=13&year2=2022&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=3&year2=2022&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=14&year2=2022&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=4&year2=2022&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=15&year2=2022&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=5&year2=2022&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=16&year2=2022&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=6&year2=2022&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=17&year2=2022&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=7&year2=2022&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=18&year2=2022&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=8&year2=2022&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=19&year2=2022&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=9&year2=2022&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=20&year2=2022&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=10&year2=2022&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=11&year2=2022&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=21&year2=2022&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=12&year2=2022&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=22&year2=2022&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=13&year2=2022&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=23&year2=2022&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=14&year2=2022&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=24&year2=2022&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=15&year2=2022&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=25&year2=2022&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=16&year2=2022&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=26&year2=2022&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=17&year2=2022&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=27&year2=2022&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=18&year2=2022&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=28&year2=2022&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=19&year2=2022&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=29&year2=2022&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=20&year2=2022&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=30&year2=2022&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=21&year2=2022&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=22&year2=2022&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=31&year2=2022&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=23&year2=2022&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=1&year2=2022&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=24&year2=2022&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=2&year2=2022&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=25&year2=2022&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=3&year2=2022&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=26&year2=2022&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=4&year2=2022&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=27&year2=2022&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=5&year2=2022&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=28&year2=2022&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=6&year2=2022&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=29&year2=2022&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=7&year2=2022&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=30&year2=2022&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=8&year2=2022&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=31&year2=2022&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=9&year2=2022&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=1&year2=2022&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=2&year2=2022&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=10&year2=2022&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=3&year2=2022&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=11&year2=2022&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=4&year2=2022&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=12&year2=2022&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=5&year2=2022&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=13&year2=2022&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=6&year2=2022&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=14&year2=2022&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=7&year2=2022&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=15&year2=2022&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=8&year2=2022&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=16&year2=2022&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=9&year2=2022&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=17&year2=2022&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=10&year2=2022&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=18&year2=2022&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=11&year2=2022&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=19&year2=2022&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=12&year2=2022&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=20&year2=2022&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=13&year2=2022&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=21&year2=2022&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=14&year2=2022&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=22&year2=2022&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=15&year2=2022&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=16&year2=2022&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=23&year2=2022&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=17&year2=2022&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=24&year2=2022&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=18&year2=2022&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=25&year2=2022&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=19&year2=2022&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=26&year2=2022&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=20&year2=2022&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=27&year2=2022&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=21&year2=2022&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=28&year2=2022&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=22&year2=2022&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=29&year2=2022&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=23&year2=2022&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=24&year2=2022&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=30&year2=2022&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=25&year2=2022&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=1&year2=2022&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=26&year2=2022&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=2&year2=2022&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=27&year2=2022&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=3&year2=2022&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=4&year2=2022&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=1&year2=2022&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=5&year2=2022&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=2&year2=2022&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=6&year2=2022&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=3&year2=2022&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=7&year2=2022&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=4&year2=2022&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=8&year2=2022&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=5&year2=2022&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=9&year2=2022&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=6&year2=2022&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=7&year2=2022&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=10&year2=2022&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=8&year2=2022&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=11&year2=2022&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=9&year2=2022&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=12&year2=2022&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=10&year2=2022&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=13&year2=2022&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=11&year2=2022&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=14&year2=2022&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=12&year2=2022&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=15&year2=2022&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=13&year2=2022&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=16&year2=2022&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=14&year2=2022&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=17&year2=2022&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=15&year2=2022&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=18&year2=2022&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=16&year2=2022&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=19&year2=2022&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=17&year2=2022&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=20&year2=2022&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=18&year2=2022&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=21&year2=2022&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=19&year2=2022&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=20&year2=2022&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=22&year2=2022&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=21&year2=2022&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=23&year2=2022&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=24&year2=2022&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=22&year2=2022&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=25&year2=2022&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=23&year2=2022&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=26&year2=2022&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=24&year2=2022&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=27&year2=2022&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=25&year2=2022&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=28&year2=2022&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=26&year2=2022&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=29&year2=2022&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=27&year2=2022&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=30&year2=2022&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=28&year2=2022&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=31&year2=2022&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=29&year2=2022&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=1&year2=2022&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=30&year2=2022&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=31&year2=2022&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=2&year2=2022&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=1&year2=2022&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=3&year2=2022&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=2&year2=2022&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=4&year2=2022&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=3&year2=2022&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=5&year2=2022&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=4&year2=2022&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=6&year2=2022&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=5&year2=2022&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=7&year2=2022&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=6&year2=2022&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=8&year2=2022&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=7&year2=2022&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=9&year2=2022&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=8&year2=2022&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=10&year2=2022&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=9&year2=2022&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=11&year2=2022&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=10&year2=2022&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=12&year2=2022&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=11&year2=2022&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=13&year2=2022&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=12&year2=2022&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=14&year2=2022&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=13&year2=2022&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=15&year2=2022&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=16&year2=2022&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=14&year2=2022&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=17&year2=2022&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=15&year2=2022&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=18&year2=2022&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=16&year2=2022&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=19&year2=2022&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=17&year2=2022&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=20&year2=2022&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=18&year2=2022&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=21&year2=2022&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=19&year2=2022&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=22&year2=2022&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=20&year2=2022&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=23&year2=2022&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=21&year2=2022&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=24&year2=2022&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=25&year2=2022&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=22&year2=2022&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=26&year2=2022&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=23&year2=2022&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=27&year2=2022&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=24&year2=2022&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=28&year2=2022&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=25&year2=2022&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=29&year2=2022&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=26&year2=2022&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=30&year2=2022&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=27&year2=2022&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=31&year2=2022&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=28&year2=2022&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=1&year2=2022&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=29&year2=2022&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=2&year2=2022&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=30&year2=2022&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=3&year2=2022&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=1&year2=2022&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=4&year2=2022&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=2&year2=2022&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=5&year2=2022&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=6&year2=2022&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=3&year2=2022&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=7&year2=2022&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=4&year2=2022&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=8&year2=2022&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=5&year2=2022&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=9&year2=2022&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=6&year2=2022&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=10&year2=2022&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=7&year2=2022&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=11&year2=2022&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=8&year2=2022&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=9&year2=2022&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=12&year2=2022&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=10&year2=2022&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=13&year2=2022&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=11&year2=2022&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=14&year2=2022&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=15&year2=2022&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=12&year2=2022&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=16&year2=2022&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=13&year2=2022&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=17&year2=2022&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=14&year2=2022&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=18&year2=2022&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=19&year2=2022&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=15&year2=2022&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=20&year2=2022&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=16&year2=2022&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=21&year2=2022&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=17&year2=2022&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=22&year2=2022&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=18&year2=2022&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=23&year2=2022&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=24&year2=2022&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=19&year2=2022&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=25&year2=2022&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=20&year2=2022&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=26&year2=2022&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=21&year2=2022&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=27&year2=2022&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=22&year2=2022&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=28&year2=2022&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=23&year2=2022&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=29&year2=2022&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=24&year2=2022&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=30&year2=2022&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=25&year2=2022&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=1&year2=2022&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=2&year2=2022&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=26&year2=2022&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=3&year2=2022&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=27&year2=2022&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=4&year2=2022&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=28&year2=2022&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=5&year2=2022&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=29&year2=2022&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=6&year2=2022&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=7&year2=2022&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=30&year2=2022&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=8&year2=2022&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=31&year2=2022&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=9&year2=2022&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=1&year2=2022&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=10&year2=2022&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=2&year2=2022&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=11&year2=2022&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=12&year2=2022&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=3&year2=2022&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=13&year2=2022&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=4&year2=2022&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=14&year2=2022&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=5&year2=2022&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=15&year2=2022&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=6&year2=2022&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=16&year2=2022&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=17&year2=2022&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=7&year2=2022&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=18&year2=2022&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=8&year2=2022&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=19&year2=2022&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=9&year2=2022&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=20&year2=2022&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=21&year2=2022&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=10&year2=2022&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=22&year2=2022&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=11&year2=2022&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=23&year2=2022&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=12&year2=2022&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=24&year2=2022&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=25&year2=2022&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=13&year2=2022&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=26&year2=2022&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=14&year2=2022&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=27&year2=2022&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=28&year2=2022&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=15&year2=2022&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=29&year2=2022&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=16&year2=2022&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=30&year2=2022&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=31&year2=2022&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=17&year2=2022&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=1&year2=2022&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=18&year2=2022&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=2&year2=2022&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=19&year2=2022&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=3&year2=2022&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=4&year2=2022&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=20&year2=2022&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=5&year2=2022&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=21&year2=2022&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=6&year2=2022&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=7&year2=2022&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=22&year2=2022&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=8&year2=2022&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=23&year2=2022&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=9&year2=2022&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=10&year2=2022&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=24&year2=2022&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=11&year2=2022&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=25&year2=2022&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=12&year2=2022&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=13&year2=2022&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=26&year2=2022&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=14&year2=2022&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=27&year2=2022&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=15&year2=2022&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=16&year2=2022&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=28&year2=2022&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=17&year2=2022&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=29&year2=2022&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=18&year2=2022&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=19&year2=2022&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=30&year2=2022&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=20&year2=2022&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=1&year2=2022&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=21&year2=2022&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=22&year2=2022&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=2&year2=2022&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=23&year2=2022&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=24&year2=2022&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=3&year2=2022&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=25&year2=2022&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=4&year2=2022&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=26&year2=2022&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=27&year2=2022&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=5&year2=2022&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=28&year2=2022&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=6&year2=2022&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=29&year2=2022&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=30&year2=2022&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=7&year2=2022&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=1&year2=2022&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=8&year2=2022&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=2&year2=2022&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=3&year2=2022&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=9&year2=2022&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=4&year2=2022&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=5&year2=2022&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=10&year2=2022&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=6&year2=2022&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=7&year2=2022&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=11&year2=2022&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=8&year2=2022&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=12&year2=2022&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=9&year2=2022&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=10&year2=2022&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=13&year2=2022&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=11&year2=2022&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=14&year2=2022&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=12&year2=2022&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=13&year2=2022&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=15&year2=2022&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=14&year2=2022&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=15&year2=2022&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=16&year2=2022&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=16&year2=2022&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=17&year2=2022&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=17&year2=2022&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=18&year2=2022&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=18&year2=2022&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=19&year2=2022&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=20&year2=2022&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=19&year2=2022&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=21&year2=2022&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=22&year2=2022&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=20&year2=2022&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=23&year2=2022&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=21&year2=2022&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=24&year2=2022&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=25&year2=2022&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=22&year2=2022&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=26&year2=2022&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=23&year2=2022&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=27&year2=2022&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=28&year2=2022&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=24&year2=2022&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=29&year2=2022&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=30&year2=2022&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=25&year2=2022&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=31&year2=2023&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=26&year2=2022&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=1&year2=2023&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=2&year2=2023&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=27&year2=2022&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=3&year2=2023&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=28&year2=2022&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=4&year2=2023&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=5&year2=2023&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=29&year2=2022&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=6&year2=2023&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=30&year2=2022&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=7&year2=2023&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=8&year2=2023&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=31&year2=2022&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=9&year2=2023&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=1&year2=2022&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=10&year2=2023&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=11&year2=2023&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=2&year2=2022&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=12&year2=2023&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=13&year2=2023&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=3&year2=2022&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=14&year2=2023&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=4&year2=2022&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=15&year2=2023&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=16&year2=2023&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=5&year2=2022&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=17&year2=2023&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=6&year2=2022&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=18&year2=2023&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=19&year2=2023&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=7&year2=2022&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=20&year2=2023&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=21&year2=2023&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=8&year2=2022&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=22&year2=2023&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=23&year2=2023&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=9&year2=2022&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=24&year2=2023&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=10&year2=2022&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=25&year2=2023&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=26&year2=2023&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=11&year2=2022&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=27&year2=2023&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=12&year2=2022&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=28&year2=2023&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=29&year2=2023&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=13&year2=2022&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=30&year2=2023&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=14&year2=2022&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=31&year2=2023&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=15&year2=2022&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=1&year2=2023&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=2&year2=2023&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=16&year2=2022&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=3&year2=2023&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=17&year2=2022&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=4&year2=2023&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=5&year2=2023&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=18&year2=2022&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=6&year2=2023&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=19&year2=2022&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=7&year2=2023&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=8&year2=2023&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=20&year2=2022&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=9&year2=2023&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=21&year2=2022&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=10&year2=2023&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=22&year2=2022&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=11&year2=2023&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=12&year2=2023&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=23&year2=2022&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=13&year2=2023&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=24&year2=2022&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=14&year2=2023&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=15&year2=2023&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=25&year2=2022&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=16&year2=2023&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=26&year2=2022&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=17&year2=2023&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=27&year2=2022&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=18&year2=2023&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=19&year2=2023&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=28&year2=2022&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=20&year2=2023&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=21&year2=2023&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=29&year2=2022&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=22&year2=2023&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=30&year2=2022&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=23&year2=2023&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=24&year2=2023&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=31&year2=2022&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=25&year2=2023&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=1&year2=2022&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=26&year2=2023&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=2&year2=2022&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=27&year2=2023&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=28&year2=2023&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=3&year2=2022&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=1&year2=2023&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=4&year2=2022&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=2&year2=2023&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=5&year2=2022&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=3&year2=2023&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=4&year2=2023&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=6&year2=2022&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=5&year2=2023&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=7&year2=2022&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=6&year2=2023&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=8&year2=2022&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=7&year2=2023&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=8&year2=2023&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=9&year2=2022&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=9&year2=2023&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=10&year2=2022&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=10&year2=2023&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=11&year2=2022&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=11&year2=2023&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=12&year2=2023&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=12&year2=2022&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=13&year2=2023&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=13&year2=2022&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=14&year2=2023&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=14&year2=2022&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=15&year2=2023&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=15&year2=2022&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=16&year2=2023&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=17&year2=2023&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=16&year2=2022&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=18&year2=2023&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=17&year2=2022&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=19&year2=2023&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=18&year2=2022&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=20&year2=2023&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=21&year2=2023&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=19&year2=2022&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=22&year2=2023&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=20&year2=2022&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=23&year2=2023&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=21&year2=2022&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=24&year2=2023&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=25&year2=2023&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=22&year2=2022&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=26&year2=2023&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=23&year2=2022&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=27&year2=2023&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=24&year2=2022&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=28&year2=2023&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=29&year2=2023&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=25&year2=2022&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=30&year2=2023&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=26&year2=2022&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=31&year2=2023&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=27&year2=2022&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=1&year2=2023&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=28&year2=2022&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=2&year2=2023&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=29&year2=2022&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=3&year2=2023&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=4&year2=2023&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=30&year2=2022&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=5&year2=2023&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=1&year2=2022&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=6&year2=2023&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=2&year2=2022&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=7&year2=2023&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=3&year2=2022&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=8&year2=2023&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=4&year2=2022&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=9&year2=2023&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=5&year2=2022&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=10&year2=2023&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=11&year2=2023&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=6&year2=2022&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=12&year2=2023&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=7&year2=2022&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=13&year2=2023&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=8&year2=2022&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=14&year2=2023&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=15&year2=2023&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=9&year2=2022&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=16&year2=2023&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=10&year2=2022&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=17&year2=2023&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=11&year2=2022&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=18&year2=2023&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=12&year2=2022&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=19&year2=2023&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=13&year2=2022&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=20&year2=2023&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=21&year2=2023&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=14&year2=2022&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=22&year2=2023&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=15&year2=2022&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=23&year2=2023&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=16&year2=2022&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=24&year2=2023&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=17&year2=2022&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=25&year2=2023&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=26&year2=2023&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=18&year2=2022&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=27&year2=2023&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=19&year2=2022&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=28&year2=2023&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=20&year2=2022&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=29&year2=2023&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=21&year2=2022&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=30&year2=2023&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=22&year2=2022&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=1&year2=2023&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=2&year2=2023&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=23&year2=2022&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=3&year2=2023&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=24&year2=2022&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=4&year2=2023&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=25&year2=2022&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=5&year2=2023&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=26&year2=2022&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=6&year2=2023&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=27&year2=2022&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=7&year2=2023&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=28&year2=2022&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=8&year2=2023&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=9&year2=2023&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=29&year2=2022&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=10&year2=2023&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=30&year2=2022&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=11&year2=2023&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=31&year2=2022&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=12&year2=2023&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=1&year2=2022&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=13&year2=2023&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=2&year2=2022&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=14&year2=2023&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=3&year2=2022&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=15&year2=2023&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=4&year2=2022&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=16&year2=2023&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=17&year2=2023&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=5&year2=2022&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=18&year2=2023&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=6&year2=2022&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=19&year2=2023&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=7&year2=2022&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=20&year2=2023&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=8&year2=2022&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=21&year2=2023&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=9&year2=2022&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=22&year2=2023&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=10&year2=2022&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=23&year2=2023&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=11&year2=2022&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=24&year2=2023&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=12&year2=2022&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=25&year2=2023&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=13&year2=2022&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=26&year2=2023&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=14&year2=2022&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=27&year2=2023&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=15&year2=2022&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=28&year2=2023&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=29&year2=2023&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=16&year2=2022&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=30&year2=2023&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=17&year2=2022&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=31&year2=2023&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=18&year2=2022&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=1&year2=2023&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=19&year2=2022&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=2&year2=2023&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=20&year2=2022&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=3&year2=2023&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=21&year2=2022&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=4&year2=2023&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=22&year2=2022&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=5&year2=2023&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=23&year2=2022&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=6&year2=2023&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=24&year2=2022&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=7&year2=2023&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=25&year2=2022&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=8&year2=2023&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=26&year2=2022&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=9&year2=2023&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=27&year2=2022&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=10&year2=2023&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=28&year2=2022&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=11&year2=2023&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=29&year2=2022&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=12&year2=2023&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=30&year2=2022&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=13&year2=2023&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=1&year2=2022&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=14&year2=2023&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=2&year2=2022&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=15&year2=2023&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=3&year2=2022&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=16&year2=2023&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=4&year2=2022&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=17&year2=2023&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=5&year2=2022&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=18&year2=2023&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=19&year2=2023&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=6&year2=2022&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=20&year2=2023&month2=6&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=7&year2=2022&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=21&year2=2023&month2=6&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=8&year2=2022&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=22&year2=2023&month2=6&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=9&year2=2022&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=23&year2=2023&month2=6&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=10&year2=2022&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=24&year2=2023&month2=6&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=11&year2=2022&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=12&year2=2022&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=25&year2=2023&month2=6&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=13&year2=2022&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=26&year2=2023&month2=6&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=14&year2=2022&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=27&year2=2023&month2=6&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=15&year2=2022&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=28&year2=2023&month2=6&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=16&year2=2022&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=29&year2=2023&month2=6&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=17&year2=2022&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=30&year2=2023&month2=7&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=18&year2=2022&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=1&year2=2023&month2=7&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=19&year2=2022&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=2&year2=2023&month2=7&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=20&year2=2022&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=3&year2=2023&month2=7&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=21&year2=2022&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=4&year2=2023&month2=7&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=22&year2=2022&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=5&year2=2023&month2=7&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=23&year2=2022&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=6&year2=2023&month2=7&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=24&year2=2022&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=7&year2=2023&month2=7&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=25&year2=2022&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=8&year2=2023&month2=7&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=26&year2=2022&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=9&year2=2023&month2=7&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=27&year2=2022&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=10&year2=2023&month2=7&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=28&year2=2022&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=11&year2=2023&month2=7&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=29&year2=2022&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=12&year2=2023&month2=7&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=30&year2=2022&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=13&year2=2023&month2=7&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=31&year2=2023&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=14&year2=2023&month2=7&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=1&year2=2023&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=15&year2=2023&month2=7&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=2&year2=2023&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=16&year2=2023&month2=7&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=3&year2=2023&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=17&year2=2023&month2=7&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=4&year2=2023&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=18&year2=2023&month2=7&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=5&year2=2023&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=19&year2=2023&month2=7&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=6&year2=2023&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=20&year2=2023&month2=7&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=7&year2=2023&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=21&year2=2023&month2=7&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=8&year2=2023&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=22&year2=2023&month2=7&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=9&year2=2023&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=23&year2=2023&month2=7&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=10&year2=2023&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=24&year2=2023&month2=7&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=11&year2=2023&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=25&year2=2023&month2=7&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=12&year2=2023&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=26&year2=2023&month2=7&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=13&year2=2023&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=27&year2=2023&month2=7&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=14&year2=2023&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=28&year2=2023&month2=7&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=15&year2=2023&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=29&year2=2023&month2=7&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=16&year2=2023&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=30&year2=2023&month2=7&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=17&year2=2023&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=31&year2=2023&month2=8&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=18&year2=2023&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=1&year2=2023&month2=8&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=19&year2=2023&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=2&year2=2023&month2=8&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=20&year2=2023&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=3&year2=2023&month2=8&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=21&year2=2023&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=4&year2=2023&month2=8&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=22&year2=2023&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=5&year2=2023&month2=8&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=23&year2=2023&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=6&year2=2023&month2=8&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=24&year2=2023&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=7&year2=2023&month2=8&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=8&year2=2023&month2=8&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=25&year2=2023&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=9&year2=2023&month2=8&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=26&year2=2023&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=10&year2=2023&month2=8&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=27&year2=2023&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=11&year2=2023&month2=8&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=28&year2=2023&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=12&year2=2023&month2=8&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=29&year2=2023&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=13&year2=2023&month2=8&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=30&year2=2023&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=14&year2=2023&month2=8&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=31&year2=2023&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=15&year2=2023&month2=8&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=16&year2=2023&month2=8&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=1&year2=2023&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=17&year2=2023&month2=8&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=2&year2=2023&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=18&year2=2023&month2=8&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=3&year2=2023&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=19&year2=2023&month2=8&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=4&year2=2023&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=20&year2=2023&month2=8&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=5&year2=2023&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=21&year2=2023&month2=8&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=6&year2=2023&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=22&year2=2023&month2=8&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=23&year2=2023&month2=8&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=7&year2=2023&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=24&year2=2023&month2=8&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=8&year2=2023&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=25&year2=2023&month2=8&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=9&year2=2023&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=26&year2=2023&month2=8&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=10&year2=2023&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=27&year2=2023&month2=8&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=28&year2=2023&month2=8&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=11&year2=2023&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=29&year2=2023&month2=8&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=12&year2=2023&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=30&year2=2023&month2=8&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=13&year2=2023&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=31&year2=2023&month2=9&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=1&year2=2023&month2=9&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=14&year2=2023&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=2&year2=2023&month2=9&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=15&year2=2023&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=3&year2=2023&month2=9&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=16&year2=2023&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=4&year2=2023&month2=9&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=17&year2=2023&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=5&year2=2023&month2=9&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=18&year2=2023&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=6&year2=2023&month2=9&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=19&year2=2023&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=7&year2=2023&month2=9&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=8&year2=2023&month2=9&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=20&year2=2023&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=9&year2=2023&month2=9&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=21&year2=2023&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=10&year2=2023&month2=9&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=22&year2=2023&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=11&year2=2023&month2=9&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=23&year2=2023&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=12&year2=2023&month2=9&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=13&year2=2023&month2=9&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=24&year2=2023&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=14&year2=2023&month2=9&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=25&year2=2023&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=15&year2=2023&month2=9&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=26&year2=2023&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=16&year2=2023&month2=9&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=17&year2=2023&month2=9&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=27&year2=2023&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=18&year2=2023&month2=9&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=28&year2=2023&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=19&year2=2023&month2=9&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=20&year2=2023&month2=9&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=1&year2=2023&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=21&year2=2023&month2=9&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=2&year2=2023&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=22&year2=2023&month2=9&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=23&year2=2023&month2=9&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=3&year2=2023&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=24&year2=2023&month2=9&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=4&year2=2023&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=25&year2=2023&month2=9&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=5&year2=2023&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=26&year2=2023&month2=9&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=27&year2=2023&month2=9&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=6&year2=2023&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=28&year2=2023&month2=9&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=7&year2=2023&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=29&year2=2023&month2=9&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=8&year2=2023&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=30&year2=2023&month2=10&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=9&year2=2023&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=1&year2=2023&month2=10&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=2&year2=2023&month2=10&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=10&year2=2023&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=3&year2=2023&month2=10&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=11&year2=2023&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=4&year2=2023&month2=10&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=12&year2=2023&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=5&year2=2023&month2=10&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=6&year2=2023&month2=10&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=13&year2=2023&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=7&year2=2023&month2=10&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=14&year2=2023&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=8&year2=2023&month2=10&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=15&year2=2023&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=9&year2=2023&month2=10&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=10&year2=2023&month2=10&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=16&year2=2023&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=11&year2=2023&month2=10&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=17&year2=2023&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=12&year2=2023&month2=10&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=13&year2=2023&month2=10&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=18&year2=2023&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=14&year2=2023&month2=10&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=19&year2=2023&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=15&year2=2023&month2=10&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=16&year2=2023&month2=10&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=20&year2=2023&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=17&year2=2023&month2=10&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=21&year2=2023&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=18&year2=2023&month2=10&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=22&year2=2023&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=19&year2=2023&month2=10&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=20&year2=2023&month2=10&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=23&year2=2023&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=21&year2=2023&month2=10&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=24&year2=2023&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=22&year2=2023&month2=10&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=23&year2=2023&month2=10&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=25&year2=2023&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=24&year2=2023&month2=10&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=26&year2=2023&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=25&year2=2023&month2=10&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=26&year2=2023&month2=10&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=27&year2=2023&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=27&year2=2023&month2=10&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=28&year2=2023&month2=10&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=28&year2=2023&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=29&year2=2023&month2=10&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=29&year2=2023&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=30&year2=2023&month2=10&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=31&year2=2023&month2=11&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=30&year2=2023&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=1&year2=2023&month2=11&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=31&year2=2023&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=2&year2=2023&month2=11&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=3&year2=2023&month2=11&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=1&year2=2023&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=4&year2=2023&month2=11&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=5&year2=2023&month2=11&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=2&year2=2023&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=6&year2=2023&month2=11&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=3&year2=2023&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=7&year2=2023&month2=11&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=8&year2=2023&month2=11&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=4&year2=2023&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=9&year2=2023&month2=11&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=10&year2=2023&month2=11&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=5&year2=2023&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=11&year2=2023&month2=11&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=12&year2=2023&month2=11&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=6&year2=2023&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=13&year2=2023&month2=11&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=7&year2=2023&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=14&year2=2023&month2=11&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=15&year2=2023&month2=11&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=8&year2=2023&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=16&year2=2023&month2=11&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=17&year2=2023&month2=11&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=9&year2=2023&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=18&year2=2023&month2=11&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=19&year2=2023&month2=11&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=10&year2=2023&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=20&year2=2023&month2=11&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=21&year2=2023&month2=11&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=11&year2=2023&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=22&year2=2023&month2=11&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=12&year2=2023&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=23&year2=2023&month2=11&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=24&year2=2023&month2=11&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=13&year2=2023&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=25&year2=2023&month2=11&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=26&year2=2023&month2=11&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=14&year2=2023&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=27&year2=2023&month2=11&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=28&year2=2023&month2=11&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=15&year2=2023&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=29&year2=2023&month2=11&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=30&year2=2023&month2=12&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=16&year2=2023&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=1&year2=2023&month2=12&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=2&year2=2023&month2=12&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=17&year2=2023&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=3&year2=2023&month2=12&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=18&year2=2023&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=4&year2=2023&month2=12&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=5&year2=2023&month2=12&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=19&year2=2023&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=6&year2=2023&month2=12&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=7&year2=2023&month2=12&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=20&year2=2023&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=8&year2=2023&month2=12&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=9&year2=2023&month2=12&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=21&year2=2023&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=10&year2=2023&month2=12&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=22&year2=2023&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=11&year2=2023&month2=12&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=12&year2=2023&month2=12&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=23&year2=2023&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=13&year2=2023&month2=12&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=24&year2=2023&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=14&year2=2023&month2=12&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=15&year2=2023&month2=12&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=25&year2=2023&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=16&year2=2023&month2=12&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=17&year2=2023&month2=12&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=26&year2=2023&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=18&year2=2023&month2=12&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=19&year2=2023&month2=12&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=27&year2=2023&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=20&year2=2023&month2=12&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=28&year2=2023&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=21&year2=2023&month2=12&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=22&year2=2023&month2=12&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=29&year2=2023&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=23&year2=2023&month2=12&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=24&year2=2023&month2=12&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=30&year2=2023&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=25&year2=2023&month2=12&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=1&year2=2023&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=26&year2=2023&month2=12&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=27&year2=2023&month2=12&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=2&year2=2023&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=28&year2=2023&month2=12&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=29&year2=2023&month2=12&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=3&year2=2023&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=30&year2=2023&month2=12&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=31&year2=2024&month2=1&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=4&year2=2023&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=1&year2=2024&month2=1&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=5&year2=2023&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=2&year2=2024&month2=1&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=3&year2=2024&month2=1&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=6&year2=2023&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=4&year2=2024&month2=1&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=5&year2=2024&month2=1&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=7&year2=2023&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=6&year2=2024&month2=1&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=7&year2=2024&month2=1&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=8&year2=2023&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=8&year2=2024&month2=1&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=9&year2=2023&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=9&year2=2024&month2=1&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=10&year2=2024&month2=1&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=10&year2=2023&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=11&year2=2024&month2=1&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=12&year2=2024&month2=1&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=11&year2=2023&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=13&year2=2024&month2=1&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=14&year2=2024&month2=1&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=12&year2=2023&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=15&year2=2024&month2=1&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=16&year2=2024&month2=1&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=13&year2=2023&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=17&year2=2024&month2=1&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=18&year2=2024&month2=1&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=14&year2=2023&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=19&year2=2024&month2=1&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=20&year2=2024&month2=1&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=15&year2=2023&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=21&year2=2024&month2=1&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=22&year2=2024&month2=1&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=16&year2=2023&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=23&year2=2024&month2=1&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=24&year2=2024&month2=1&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=25&year2=2024&month2=1&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=17&year2=2023&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=26&year2=2024&month2=1&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=27&year2=2024&month2=1&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=18&year2=2023&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=28&year2=2024&month2=1&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=29&year2=2024&month2=1&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=19&year2=2023&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=30&year2=2024&month2=1&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=31&year2=2024&month2=2&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=20&year2=2023&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=1&year2=2024&month2=2&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=2&year2=2024&month2=2&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=21&year2=2023&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=3&year2=2024&month2=2&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=4&year2=2024&month2=2&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=22&year2=2023&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=5&year2=2024&month2=2&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=6&year2=2024&month2=2&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=23&year2=2023&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=7&year2=2024&month2=2&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=8&year2=2024&month2=2&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=24&year2=2023&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=9&year2=2024&month2=2&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=10&year2=2024&month2=2&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=25&year2=2023&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=11&year2=2024&month2=2&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=12&year2=2024&month2=2&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=13&year2=2024&month2=2&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=26&year2=2023&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=14&year2=2024&month2=2&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=15&year2=2024&month2=2&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=27&year2=2023&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=16&year2=2024&month2=2&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=17&year2=2024&month2=2&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=28&year2=2023&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=18&year2=2024&month2=2&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=19&year2=2024&month2=2&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=29&year2=2023&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=20&year2=2024&month2=2&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=21&year2=2024&month2=2&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=22&year2=2024&month2=2&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=30&year2=2023&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=23&year2=2024&month2=2&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=24&year2=2024&month2=2&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=31&year2=2023&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=25&year2=2024&month2=2&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=26&year2=2024&month2=2&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=1&year2=2023&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=27&year2=2024&month2=2&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=28&year2=2024&month2=2&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=2&year2=2023&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=29&year2=2024&month2=3&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=1&year2=2024&month2=3&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=2&year2=2024&month2=3&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=3&year2=2023&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=3&year2=2024&month2=3&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=4&year2=2024&month2=3&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=4&year2=2023&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=5&year2=2024&month2=3&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=6&year2=2024&month2=3&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=5&year2=2023&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=7&year2=2024&month2=3&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=8&year2=2024&month2=3&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=6&year2=2023&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=9&year2=2024&month2=3&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=10&year2=2024&month2=3&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=7&year2=2023&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=11&year2=2024&month2=3&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=12&year2=2024&month2=3&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=8&year2=2023&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=13&year2=2024&month2=3&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=14&year2=2024&month2=3&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=9&year2=2023&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=15&year2=2024&month2=3&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=16&year2=2024&month2=3&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=10&year2=2023&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=17&year2=2024&month2=3&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=18&year2=2024&month2=3&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=11&year2=2023&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=19&year2=2024&month2=3&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=20&year2=2024&month2=3&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=21&year2=2024&month2=3&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=12&year2=2023&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=22&year2=2024&month2=3&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=23&year2=2024&month2=3&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=24&year2=2024&month2=3&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=13&year2=2023&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=25&year2=2024&month2=3&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=26&year2=2024&month2=3&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=27&year2=2024&month2=3&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=14&year2=2023&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=28&year2=2024&month2=3&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=29&year2=2024&month2=3&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=30&year2=2024&month2=3&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=15&year2=2023&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=31&year2=2024&month2=4&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=1&year2=2024&month2=4&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=2&year2=2024&month2=4&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=16&year2=2023&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=3&year2=2024&month2=4&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=4&year2=2024&month2=4&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=5&year2=2024&month2=4&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=17&year2=2023&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=6&year2=2024&month2=4&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=7&year2=2024&month2=4&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=8&year2=2024&month2=4&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=18&year2=2023&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=9&year2=2024&month2=4&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=10&year2=2024&month2=4&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=11&year2=2024&month2=4&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=12&year2=2024&month2=4&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=19&year2=2023&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=13&year2=2024&month2=4&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=14&year2=2024&month2=4&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=20&year2=2023&month2=6&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=15&year2=2024&month2=4&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=16&year2=2024&month2=4&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=17&year2=2024&month2=4&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=18&year2=2024&month2=4&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=21&year2=2023&month2=6&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=19&year2=2024&month2=4&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=20&year2=2024&month2=4&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=21&year2=2024&month2=4&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=22&year2=2023&month2=6&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=22&year2=2024&month2=4&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=23&year2=2024&month2=4&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=24&year2=2024&month2=4&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=25&year2=2024&month2=4&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=26&year2=2024&month2=4&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=23&year2=2023&month2=6&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=27&year2=2024&month2=4&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=28&year2=2024&month2=4&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=29&year2=2024&month2=4&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=30&year2=2024&month2=5&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=1&year2=2024&month2=5&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=2&year2=2024&month2=5&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=24&year2=2023&month2=6&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=3&year2=2024&month2=5&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=4&year2=2024&month2=5&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=5&year2=2024&month2=5&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=6&year2=2024&month2=5&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=7&year2=2024&month2=5&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=8&year2=2024&month2=5&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=25&year2=2023&month2=6&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=9&year2=2024&month2=5&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=10&year2=2024&month2=5&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=11&year2=2024&month2=5&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=12&year2=2024&month2=5&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=26&year2=2023&month2=6&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=13&year2=2024&month2=5&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=14&year2=2024&month2=5&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=15&year2=2024&month2=5&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=16&year2=2024&month2=5&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=17&year2=2024&month2=5&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=27&year2=2023&month2=6&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=18&year2=2024&month2=5&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=19&year2=2024&month2=5&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=20&year2=2024&month2=5&day2=21&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=21&year2=2024&month2=5&day2=22&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=22&year2=2024&month2=5&day2=23&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=23&year2=2024&month2=5&day2=24&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=28&year2=2023&month2=6&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=24&year2=2024&month2=5&day2=25&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=25&year2=2024&month2=5&day2=26&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=26&year2=2024&month2=5&day2=27&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=27&year2=2024&month2=5&day2=28&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=28&year2=2024&month2=5&day2=29&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=29&year2=2023&month2=6&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=29&year2=2024&month2=5&day2=30&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=30&year2=2024&month2=5&day2=31&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=31&year2=2024&month2=6&day2=1&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=1&year2=2024&month2=6&day2=2&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=2&year2=2024&month2=6&day2=3&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=30&year2=2023&month2=7&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=3&year2=2024&month2=6&day2=4&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=4&year2=2024&month2=6&day2=5&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=5&year2=2024&month2=6&day2=6&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=6&year2=2024&month2=6&day2=7&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=7&year2=2024&month2=6&day2=8&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=1&year2=2023&month2=7&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=8&year2=2024&month2=6&day2=9&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=9&year2=2024&month2=6&day2=10&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=10&year2=2024&month2=6&day2=11&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=11&year2=2024&month2=6&day2=12&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=12&year2=2024&month2=6&day2=13&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=2&year2=2023&month2=7&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=13&year2=2024&month2=6&day2=14&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=14&year2=2024&month2=6&day2=15&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=15&year2=2024&month2=6&day2=16&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=16&year2=2024&month2=6&day2=17&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=17&year2=2024&month2=6&day2=18&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=3&year2=2023&month2=7&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=18&year2=2024&month2=6&day2=19&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=19&year2=2024&month2=6&day2=20&AOD20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=4&year2=2023&month2=7&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=5&year2=2023&month2=7&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=6&year2=2023&month2=7&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=7&year2=2023&month2=7&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=8&year2=2023&month2=7&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=9&year2=2023&month2=7&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=10&year2=2023&month2=7&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=11&year2=2023&month2=7&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=12&year2=2023&month2=7&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=13&year2=2023&month2=7&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=14&year2=2023&month2=7&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=15&year2=2023&month2=7&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=16&year2=2023&month2=7&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=17&year2=2023&month2=7&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=18&year2=2023&month2=7&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=19&year2=2023&month2=7&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=20&year2=2023&month2=7&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=21&year2=2023&month2=7&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=22&year2=2023&month2=7&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=23&year2=2023&month2=7&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=24&year2=2023&month2=7&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=25&year2=2023&month2=7&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=26&year2=2023&month2=7&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=27&year2=2023&month2=7&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=28&year2=2023&month2=7&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=29&year2=2023&month2=7&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=30&year2=2023&month2=7&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=31&year2=2023&month2=8&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=1&year2=2023&month2=8&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=2&year2=2023&month2=8&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=3&year2=2023&month2=8&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=4&year2=2023&month2=8&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=5&year2=2023&month2=8&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=6&year2=2023&month2=8&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=7&year2=2023&month2=8&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=8&year2=2023&month2=8&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=9&year2=2023&month2=8&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=10&year2=2023&month2=8&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=11&year2=2023&month2=8&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=12&year2=2023&month2=8&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=13&year2=2023&month2=8&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=14&year2=2023&month2=8&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=15&year2=2023&month2=8&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=16&year2=2023&month2=8&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=17&year2=2023&month2=8&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=18&year2=2023&month2=8&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=19&year2=2023&month2=8&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=20&year2=2023&month2=8&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=21&year2=2023&month2=8&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=22&year2=2023&month2=8&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=23&year2=2023&month2=8&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=24&year2=2023&month2=8&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=25&year2=2023&month2=8&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=26&year2=2023&month2=8&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=27&year2=2023&month2=8&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=28&year2=2023&month2=8&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=29&year2=2023&month2=8&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=30&year2=2023&month2=8&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=31&year2=2023&month2=9&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=1&year2=2023&month2=9&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=2&year2=2023&month2=9&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=3&year2=2023&month2=9&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=4&year2=2023&month2=9&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=5&year2=2023&month2=9&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=6&year2=2023&month2=9&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=7&year2=2023&month2=9&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=8&year2=2023&month2=9&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=9&year2=2023&month2=9&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=10&year2=2023&month2=9&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=11&year2=2023&month2=9&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=12&year2=2023&month2=9&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=13&year2=2023&month2=9&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=14&year2=2023&month2=9&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=15&year2=2023&month2=9&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=16&year2=2023&month2=9&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=17&year2=2023&month2=9&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=18&year2=2023&month2=9&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=19&year2=2023&month2=9&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=20&year2=2023&month2=9&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=21&year2=2023&month2=9&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=22&year2=2023&month2=9&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=23&year2=2023&month2=9&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=24&year2=2023&month2=9&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=25&year2=2023&month2=9&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=26&year2=2023&month2=9&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=27&year2=2023&month2=9&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=28&year2=2023&month2=9&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=29&year2=2023&month2=9&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=30&year2=2023&month2=10&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=1&year2=2023&month2=10&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=2&year2=2023&month2=10&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=3&year2=2023&month2=10&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=4&year2=2023&month2=10&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=5&year2=2023&month2=10&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=6&year2=2023&month2=10&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=7&year2=2023&month2=10&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=8&year2=2023&month2=10&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=9&year2=2023&month2=10&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=10&year2=2023&month2=10&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=11&year2=2023&month2=10&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=12&year2=2023&month2=10&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=13&year2=2023&month2=10&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=14&year2=2023&month2=10&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=15&year2=2023&month2=10&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=16&year2=2023&month2=10&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=17&year2=2023&month2=10&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=18&year2=2023&month2=10&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=19&year2=2023&month2=10&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=20&year2=2023&month2=10&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=21&year2=2023&month2=10&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=22&year2=2023&month2=10&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=23&year2=2023&month2=10&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=24&year2=2023&month2=10&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=25&year2=2023&month2=10&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=26&year2=2023&month2=10&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=27&year2=2023&month2=10&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=28&year2=2023&month2=10&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=29&year2=2023&month2=10&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=30&year2=2023&month2=10&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=31&year2=2023&month2=11&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=1&year2=2023&month2=11&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=2&year2=2023&month2=11&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=3&year2=2023&month2=11&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=4&year2=2023&month2=11&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=5&year2=2023&month2=11&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=6&year2=2023&month2=11&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=7&year2=2023&month2=11&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=8&year2=2023&month2=11&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=9&year2=2023&month2=11&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=10&year2=2023&month2=11&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=11&year2=2023&month2=11&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=12&year2=2023&month2=11&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=13&year2=2023&month2=11&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=14&year2=2023&month2=11&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=15&year2=2023&month2=11&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=16&year2=2023&month2=11&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=17&year2=2023&month2=11&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=18&year2=2023&month2=11&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=19&year2=2023&month2=11&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=20&year2=2023&month2=11&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=21&year2=2023&month2=11&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=22&year2=2023&month2=11&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=23&year2=2023&month2=11&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=24&year2=2023&month2=11&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=25&year2=2023&month2=11&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=26&year2=2023&month2=11&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=27&year2=2023&month2=11&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=28&year2=2023&month2=11&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=29&year2=2023&month2=11&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=30&year2=2023&month2=12&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=1&year2=2023&month2=12&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=2&year2=2023&month2=12&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=3&year2=2023&month2=12&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=4&year2=2023&month2=12&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=5&year2=2023&month2=12&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=6&year2=2023&month2=12&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=7&year2=2023&month2=12&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=8&year2=2023&month2=12&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=9&year2=2023&month2=12&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=10&year2=2023&month2=12&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=11&year2=2023&month2=12&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=12&year2=2023&month2=12&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=13&year2=2023&month2=12&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=14&year2=2023&month2=12&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=15&year2=2023&month2=12&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=16&year2=2023&month2=12&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=17&year2=2023&month2=12&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=18&year2=2023&month2=12&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=19&year2=2023&month2=12&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=20&year2=2023&month2=12&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=21&year2=2023&month2=12&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=22&year2=2023&month2=12&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=23&year2=2023&month2=12&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=24&year2=2023&month2=12&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=25&year2=2023&month2=12&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=26&year2=2023&month2=12&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=27&year2=2023&month2=12&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=28&year2=2023&month2=12&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=29&year2=2023&month2=12&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=30&year2=2023&month2=12&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=31&year2=2024&month2=1&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=1&year2=2024&month2=1&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=2&year2=2024&month2=1&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=3&year2=2024&month2=1&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=4&year2=2024&month2=1&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=5&year2=2024&month2=1&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=6&year2=2024&month2=1&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=7&year2=2024&month2=1&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=8&year2=2024&month2=1&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=9&year2=2024&month2=1&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=10&year2=2024&month2=1&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=11&year2=2024&month2=1&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=12&year2=2024&month2=1&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=13&year2=2024&month2=1&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=14&year2=2024&month2=1&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=15&year2=2024&month2=1&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=16&year2=2024&month2=1&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=17&year2=2024&month2=1&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=18&year2=2024&month2=1&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=19&year2=2024&month2=1&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=20&year2=2024&month2=1&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=21&year2=2024&month2=1&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=22&year2=2024&month2=1&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=23&year2=2024&month2=1&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=24&year2=2024&month2=1&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=25&year2=2024&month2=1&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=26&year2=2024&month2=1&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=27&year2=2024&month2=1&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=28&year2=2024&month2=1&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=29&year2=2024&month2=1&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=30&year2=2024&month2=1&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=31&year2=2024&month2=2&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=1&year2=2024&month2=2&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=2&year2=2024&month2=2&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=3&year2=2024&month2=2&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=4&year2=2024&month2=2&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=5&year2=2024&month2=2&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=6&year2=2024&month2=2&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=7&year2=2024&month2=2&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=8&year2=2024&month2=2&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=9&year2=2024&month2=2&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=10&year2=2024&month2=2&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=11&year2=2024&month2=2&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=12&year2=2024&month2=2&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=13&year2=2024&month2=2&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=14&year2=2024&month2=2&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=15&year2=2024&month2=2&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=16&year2=2024&month2=2&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=17&year2=2024&month2=2&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=18&year2=2024&month2=2&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=19&year2=2024&month2=2&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=20&year2=2024&month2=2&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=21&year2=2024&month2=2&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=22&year2=2024&month2=2&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=23&year2=2024&month2=2&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=24&year2=2024&month2=2&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=25&year2=2024&month2=2&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=26&year2=2024&month2=2&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=27&year2=2024&month2=2&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=28&year2=2024&month2=2&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=29&year2=2024&month2=3&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=1&year2=2024&month2=3&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=2&year2=2024&month2=3&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=3&year2=2024&month2=3&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=4&year2=2024&month2=3&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=5&year2=2024&month2=3&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=6&year2=2024&month2=3&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=7&year2=2024&month2=3&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=8&year2=2024&month2=3&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=9&year2=2024&month2=3&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=10&year2=2024&month2=3&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=11&year2=2024&month2=3&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=12&year2=2024&month2=3&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=13&year2=2024&month2=3&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=14&year2=2024&month2=3&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=15&year2=2024&month2=3&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=16&year2=2024&month2=3&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=17&year2=2024&month2=3&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=18&year2=2024&month2=3&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=19&year2=2024&month2=3&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=20&year2=2024&month2=3&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=21&year2=2024&month2=3&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=22&year2=2024&month2=3&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=23&year2=2024&month2=3&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=24&year2=2024&month2=3&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=25&year2=2024&month2=3&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=26&year2=2024&month2=3&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=27&year2=2024&month2=3&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=28&year2=2024&month2=3&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=29&year2=2024&month2=3&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=30&year2=2024&month2=3&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=31&year2=2024&month2=4&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=1&year2=2024&month2=4&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=2&year2=2024&month2=4&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=3&year2=2024&month2=4&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=4&year2=2024&month2=4&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=5&year2=2024&month2=4&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=6&year2=2024&month2=4&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=7&year2=2024&month2=4&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=8&year2=2024&month2=4&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=9&year2=2024&month2=4&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=10&year2=2024&month2=4&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=11&year2=2024&month2=4&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=12&year2=2024&month2=4&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=13&year2=2024&month2=4&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=14&year2=2024&month2=4&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=15&year2=2024&month2=4&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=16&year2=2024&month2=4&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=17&year2=2024&month2=4&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=18&year2=2024&month2=4&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=19&year2=2024&month2=4&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=20&year2=2024&month2=4&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=21&year2=2024&month2=4&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=22&year2=2024&month2=4&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=23&year2=2024&month2=4&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=24&year2=2024&month2=4&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=25&year2=2024&month2=4&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=26&year2=2024&month2=4&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=27&year2=2024&month2=4&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=28&year2=2024&month2=4&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=29&year2=2024&month2=4&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=30&year2=2024&month2=5&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=1&year2=2024&month2=5&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=2&year2=2024&month2=5&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=3&year2=2024&month2=5&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=4&year2=2024&month2=5&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=5&year2=2024&month2=5&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=6&year2=2024&month2=5&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=7&year2=2024&month2=5&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=8&year2=2024&month2=5&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=9&year2=2024&month2=5&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=10&year2=2024&month2=5&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=11&year2=2024&month2=5&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=12&year2=2024&month2=5&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=13&year2=2024&month2=5&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=14&year2=2024&month2=5&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=15&year2=2024&month2=5&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=16&year2=2024&month2=5&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=17&year2=2024&month2=5&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=18&year2=2024&month2=5&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=19&year2=2024&month2=5&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=20&year2=2024&month2=5&day2=21&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=21&year2=2024&month2=5&day2=22&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=22&year2=2024&month2=5&day2=23&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=23&year2=2024&month2=5&day2=24&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=24&year2=2024&month2=5&day2=25&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=25&year2=2024&month2=5&day2=26&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=26&year2=2024&month2=5&day2=27&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=27&year2=2024&month2=5&day2=28&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=28&year2=2024&month2=5&day2=29&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=29&year2=2024&month2=5&day2=30&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=30&year2=2024&month2=5&day2=31&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=31&year2=2024&month2=6&day2=1&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=1&year2=2024&month2=6&day2=2&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=2&year2=2024&month2=6&day2=3&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=3&year2=2024&month2=6&day2=4&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=4&year2=2024&month2=6&day2=5&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=5&year2=2024&month2=6&day2=6&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=6&year2=2024&month2=6&day2=7&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=7&year2=2024&month2=6&day2=8&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=8&year2=2024&month2=6&day2=9&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=9&year2=2024&month2=6&day2=10&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=10&year2=2024&month2=6&day2=11&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=11&year2=2024&month2=6&day2=12&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=12&year2=2024&month2=6&day2=13&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=13&year2=2024&month2=6&day2=14&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=14&year2=2024&month2=6&day2=15&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=15&year2=2024&month2=6&day2=16&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=16&year2=2024&month2=6&day2=17&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=17&year2=2024&month2=6&day2=18&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=18&year2=2024&month2=6&day2=19&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=19&year2=2024&month2=6&day2=20&AOD15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&SDA20=1&AVG=10Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&SDA15=1&AVG=10 + +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=21&year2=2015&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=22&year2=2015&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=23&year2=2015&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=24&year2=2015&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=25&year2=2015&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=26&year2=2015&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=27&year2=2015&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=28&year2=2015&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=29&year2=2015&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=30&year2=2015&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=31&year2=2015&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=1&year2=2015&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=2&year2=2015&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=3&year2=2015&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=4&year2=2015&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=5&year2=2015&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=6&year2=2015&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=7&year2=2015&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=8&year2=2015&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=9&year2=2015&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=10&year2=2015&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=11&year2=2015&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=12&year2=2015&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=13&year2=2015&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=14&year2=2015&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=15&year2=2015&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=16&year2=2015&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=17&year2=2015&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=18&year2=2015&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=19&year2=2015&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=20&year2=2015&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=21&year2=2015&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=22&year2=2015&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=23&year2=2015&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=24&year2=2015&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=25&year2=2015&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=26&year2=2015&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=27&year2=2015&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=28&year2=2015&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=29&year2=2015&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=30&year2=2015&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=1&year2=2015&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=2&year2=2015&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=3&year2=2015&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=4&year2=2015&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=5&year2=2015&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=6&year2=2015&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=7&year2=2015&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=8&year2=2015&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=9&year2=2015&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=10&year2=2015&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=11&year2=2015&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=12&year2=2015&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=13&year2=2015&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=14&year2=2015&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=15&year2=2015&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=16&year2=2015&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=17&year2=2015&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=18&year2=2015&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=19&year2=2015&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=20&year2=2015&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=21&year2=2015&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=22&year2=2015&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=23&year2=2015&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=24&year2=2015&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=25&year2=2015&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=26&year2=2015&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=27&year2=2015&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=28&year2=2015&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=29&year2=2015&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=30&year2=2015&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=31&year2=2016&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=1&year2=2016&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=2&year2=2016&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=3&year2=2016&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=4&year2=2016&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=5&year2=2016&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=6&year2=2016&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=7&year2=2016&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=8&year2=2016&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=9&year2=2016&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=10&year2=2016&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=11&year2=2016&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=12&year2=2016&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=13&year2=2016&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=14&year2=2016&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=15&year2=2016&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=16&year2=2016&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=17&year2=2016&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=18&year2=2016&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=19&year2=2016&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=20&year2=2016&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=21&year2=2016&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=22&year2=2016&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=23&year2=2016&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=24&year2=2016&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=25&year2=2016&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=26&year2=2016&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=27&year2=2016&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=28&year2=2016&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=29&year2=2016&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=30&year2=2016&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=31&year2=2016&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=1&year2=2016&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=2&year2=2016&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=3&year2=2016&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=4&year2=2016&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=5&year2=2016&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=6&year2=2016&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=7&year2=2016&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=8&year2=2016&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=9&year2=2016&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=10&year2=2016&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=11&year2=2016&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=12&year2=2016&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=13&year2=2016&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=14&year2=2016&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=15&year2=2016&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=16&year2=2016&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=17&year2=2016&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=18&year2=2016&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=19&year2=2016&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=20&year2=2016&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=21&year2=2016&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=22&year2=2016&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=23&year2=2016&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=24&year2=2016&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=25&year2=2016&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=26&year2=2016&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=27&year2=2016&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=28&year2=2016&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=29&year2=2016&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=1&year2=2016&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=2&year2=2016&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=3&year2=2016&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=4&year2=2016&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=5&year2=2016&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=6&year2=2016&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=7&year2=2016&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=8&year2=2016&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=9&year2=2016&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=10&year2=2016&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=11&year2=2016&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=12&year2=2016&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=13&year2=2016&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=14&year2=2016&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=15&year2=2016&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=16&year2=2016&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=17&year2=2016&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=18&year2=2016&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=19&year2=2016&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=20&year2=2016&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=21&year2=2016&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=22&year2=2016&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=23&year2=2016&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=24&year2=2016&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=25&year2=2016&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=26&year2=2016&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=27&year2=2016&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=28&year2=2016&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=29&year2=2016&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=30&year2=2016&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=31&year2=2016&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=1&year2=2016&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=2&year2=2016&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=3&year2=2016&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=4&year2=2016&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=5&year2=2016&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=6&year2=2016&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=7&year2=2016&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=8&year2=2016&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=9&year2=2016&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=10&year2=2016&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=11&year2=2016&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=12&year2=2016&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=13&year2=2016&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=14&year2=2016&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=15&year2=2016&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=16&year2=2016&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=17&year2=2016&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=18&year2=2016&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=19&year2=2016&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=20&year2=2016&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=21&year2=2016&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=22&year2=2016&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=23&year2=2016&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=24&year2=2016&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=25&year2=2016&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=26&year2=2016&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=27&year2=2016&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=28&year2=2016&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=29&year2=2016&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=30&year2=2016&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=1&year2=2016&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=2&year2=2016&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=3&year2=2016&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=4&year2=2016&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=5&year2=2016&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=6&year2=2016&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=7&year2=2016&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=8&year2=2016&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=9&year2=2016&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=10&year2=2016&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=11&year2=2016&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=12&year2=2016&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=13&year2=2016&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=14&year2=2016&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=15&year2=2016&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=16&year2=2016&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=17&year2=2016&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=18&year2=2016&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=19&year2=2016&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=20&year2=2016&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=21&year2=2016&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=22&year2=2016&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=23&year2=2016&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=24&year2=2016&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=25&year2=2016&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=26&year2=2016&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=27&year2=2016&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=28&year2=2016&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=29&year2=2016&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=30&year2=2016&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=31&year2=2016&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=1&year2=2016&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=2&year2=2016&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=3&year2=2016&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=4&year2=2016&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=5&year2=2016&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=6&year2=2016&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=7&year2=2016&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=8&year2=2016&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=9&year2=2016&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=10&year2=2016&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=11&year2=2016&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=12&year2=2016&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=13&year2=2016&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=14&year2=2016&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=15&year2=2016&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=16&year2=2016&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=17&year2=2016&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=18&year2=2016&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=19&year2=2016&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=20&year2=2016&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=21&year2=2016&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=22&year2=2016&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=23&year2=2016&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=24&year2=2016&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=25&year2=2016&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=26&year2=2016&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=27&year2=2016&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=28&year2=2016&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=29&year2=2016&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=30&year2=2016&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=1&year2=2016&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=2&year2=2016&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=3&year2=2016&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=4&year2=2016&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=5&year2=2016&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=6&year2=2016&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=7&year2=2016&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=8&year2=2016&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=9&year2=2016&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=10&year2=2016&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=11&year2=2016&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=12&year2=2016&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=13&year2=2016&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=14&year2=2016&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=15&year2=2016&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=16&year2=2016&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=17&year2=2016&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=18&year2=2016&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=19&year2=2016&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=20&year2=2016&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=21&year2=2016&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=22&year2=2016&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=23&year2=2016&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=24&year2=2016&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=25&year2=2016&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=26&year2=2016&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=27&year2=2016&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=28&year2=2016&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=29&year2=2016&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=30&year2=2016&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=31&year2=2016&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=1&year2=2016&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=2&year2=2016&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=3&year2=2016&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=4&year2=2016&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=5&year2=2016&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=6&year2=2016&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=7&year2=2016&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=8&year2=2016&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=9&year2=2016&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=10&year2=2016&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=11&year2=2016&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=12&year2=2016&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=13&year2=2016&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=14&year2=2016&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=15&year2=2016&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=16&year2=2016&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=17&year2=2016&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=18&year2=2016&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=19&year2=2016&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=20&year2=2016&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=21&year2=2016&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=22&year2=2016&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=23&year2=2016&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=24&year2=2016&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=25&year2=2016&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=26&year2=2016&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=27&year2=2016&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=28&year2=2016&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=29&year2=2016&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=30&year2=2016&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=31&year2=2016&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=1&year2=2016&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=2&year2=2016&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=3&year2=2016&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=4&year2=2016&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=5&year2=2016&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=6&year2=2016&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=7&year2=2016&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=8&year2=2016&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=9&year2=2016&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=10&year2=2016&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=11&year2=2016&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=12&year2=2016&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=13&year2=2016&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=14&year2=2016&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=15&year2=2016&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=16&year2=2016&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=17&year2=2016&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=18&year2=2016&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=19&year2=2016&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=20&year2=2016&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=21&year2=2016&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=22&year2=2016&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=23&year2=2016&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=24&year2=2016&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=25&year2=2016&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=26&year2=2016&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=27&year2=2016&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=28&year2=2016&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=29&year2=2016&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=30&year2=2016&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=1&year2=2016&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=2&year2=2016&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=3&year2=2016&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=4&year2=2016&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=5&year2=2016&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=6&year2=2016&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=7&year2=2016&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=8&year2=2016&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=9&year2=2016&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=10&year2=2016&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=11&year2=2016&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=12&year2=2016&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=13&year2=2016&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=14&year2=2016&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=15&year2=2016&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=16&year2=2016&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=17&year2=2016&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=18&year2=2016&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=19&year2=2016&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=20&year2=2016&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=21&year2=2016&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=22&year2=2016&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=23&year2=2016&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=24&year2=2016&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=25&year2=2016&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=26&year2=2016&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=27&year2=2016&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=28&year2=2016&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=29&year2=2016&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=30&year2=2016&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=31&year2=2016&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=1&year2=2016&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=2&year2=2016&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=3&year2=2016&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=4&year2=2016&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=5&year2=2016&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=6&year2=2016&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=7&year2=2016&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=8&year2=2016&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=9&year2=2016&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=10&year2=2016&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=11&year2=2016&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=12&year2=2016&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=13&year2=2016&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=14&year2=2016&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=15&year2=2016&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=16&year2=2016&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=17&year2=2016&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=18&year2=2016&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=19&year2=2016&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=20&year2=2016&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=21&year2=2016&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=22&year2=2016&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=23&year2=2016&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=24&year2=2016&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=25&year2=2016&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=26&year2=2016&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=27&year2=2016&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=28&year2=2016&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=29&year2=2016&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=30&year2=2016&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=1&year2=2016&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=2&year2=2016&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=3&year2=2016&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=4&year2=2016&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=5&year2=2016&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=6&year2=2016&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=7&year2=2016&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=8&year2=2016&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=9&year2=2016&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=10&year2=2016&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=11&year2=2016&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=12&year2=2016&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=13&year2=2016&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=14&year2=2016&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=15&year2=2016&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=16&year2=2016&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=17&year2=2016&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=18&year2=2016&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=19&year2=2016&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=20&year2=2016&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=21&year2=2016&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=22&year2=2016&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=23&year2=2016&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=24&year2=2016&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=25&year2=2016&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=26&year2=2016&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=27&year2=2016&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=28&year2=2016&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=29&year2=2016&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=30&year2=2016&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=31&year2=2017&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=1&year2=2017&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=2&year2=2017&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=3&year2=2017&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=4&year2=2017&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=5&year2=2017&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=6&year2=2017&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=7&year2=2017&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=8&year2=2017&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=9&year2=2017&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=10&year2=2017&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=11&year2=2017&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=12&year2=2017&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=13&year2=2017&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=14&year2=2017&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=15&year2=2017&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=16&year2=2017&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=17&year2=2017&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=18&year2=2017&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=19&year2=2017&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=20&year2=2017&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=21&year2=2017&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=22&year2=2017&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=23&year2=2017&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=24&year2=2017&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=25&year2=2017&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=26&year2=2017&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=27&year2=2017&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=28&year2=2017&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=29&year2=2017&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=30&year2=2017&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=31&year2=2017&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=1&year2=2017&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=2&year2=2017&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=3&year2=2017&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=4&year2=2017&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=5&year2=2017&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=6&year2=2017&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=7&year2=2017&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=8&year2=2017&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=9&year2=2017&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=10&year2=2017&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=11&year2=2017&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=12&year2=2017&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=13&year2=2017&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=14&year2=2017&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=15&year2=2017&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=16&year2=2017&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=17&year2=2017&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=18&year2=2017&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=19&year2=2017&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=20&year2=2017&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=21&year2=2017&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=22&year2=2017&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=23&year2=2017&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=24&year2=2017&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=25&year2=2017&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=26&year2=2017&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=27&year2=2017&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=28&year2=2017&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=1&year2=2017&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=2&year2=2017&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=3&year2=2017&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=4&year2=2017&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=5&year2=2017&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=6&year2=2017&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=7&year2=2017&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=8&year2=2017&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=9&year2=2017&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=10&year2=2017&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=11&year2=2017&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=12&year2=2017&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=13&year2=2017&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=14&year2=2017&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=15&year2=2017&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=16&year2=2017&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=17&year2=2017&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=18&year2=2017&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=19&year2=2017&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=20&year2=2017&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=21&year2=2017&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=22&year2=2017&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=23&year2=2017&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=24&year2=2017&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=25&year2=2017&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=26&year2=2017&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=27&year2=2017&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=28&year2=2017&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=29&year2=2017&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=30&year2=2017&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=31&year2=2017&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=1&year2=2017&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=2&year2=2017&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=3&year2=2017&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=4&year2=2017&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=5&year2=2017&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=6&year2=2017&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=7&year2=2017&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=8&year2=2017&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=9&year2=2017&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=10&year2=2017&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=11&year2=2017&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=12&year2=2017&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=13&year2=2017&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=14&year2=2017&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=15&year2=2017&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=16&year2=2017&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=17&year2=2017&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=18&year2=2017&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=19&year2=2017&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=20&year2=2017&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=21&year2=2017&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=22&year2=2017&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=23&year2=2017&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=24&year2=2017&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=25&year2=2017&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=26&year2=2017&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=27&year2=2017&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=28&year2=2017&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=29&year2=2017&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=30&year2=2017&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=1&year2=2017&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=2&year2=2017&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=3&year2=2017&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=4&year2=2017&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=5&year2=2017&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=6&year2=2017&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=7&year2=2017&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=8&year2=2017&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=9&year2=2017&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=10&year2=2017&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=11&year2=2017&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=12&year2=2017&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=13&year2=2017&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=14&year2=2017&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=15&year2=2017&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=16&year2=2017&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=17&year2=2017&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=18&year2=2017&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=19&year2=2017&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=20&year2=2017&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=21&year2=2017&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=22&year2=2017&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=23&year2=2017&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=24&year2=2017&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=25&year2=2017&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=26&year2=2017&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=27&year2=2017&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=28&year2=2017&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=29&year2=2017&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=30&year2=2017&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=31&year2=2017&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=1&year2=2017&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=2&year2=2017&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=3&year2=2017&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=4&year2=2017&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=5&year2=2017&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=6&year2=2017&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=7&year2=2017&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=8&year2=2017&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=9&year2=2017&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=10&year2=2017&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=11&year2=2017&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=12&year2=2017&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=13&year2=2017&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=14&year2=2017&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=15&year2=2017&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=16&year2=2017&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=17&year2=2017&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=18&year2=2017&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=19&year2=2017&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=20&year2=2017&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=21&year2=2017&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=22&year2=2017&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=23&year2=2017&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=24&year2=2017&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=25&year2=2017&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=26&year2=2017&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=27&year2=2017&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=28&year2=2017&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=29&year2=2017&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=30&year2=2017&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=1&year2=2017&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=2&year2=2017&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=3&year2=2017&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=4&year2=2017&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=5&year2=2017&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=6&year2=2017&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=7&year2=2017&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=8&year2=2017&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=9&year2=2017&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=10&year2=2017&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=11&year2=2017&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=12&year2=2017&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=13&year2=2017&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=14&year2=2017&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=15&year2=2017&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=16&year2=2017&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=17&year2=2017&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=18&year2=2017&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=21&year2=2015&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=19&year2=2017&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=22&year2=2015&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=20&year2=2017&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=23&year2=2015&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=21&year2=2017&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=24&year2=2015&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=25&year2=2015&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=22&year2=2017&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=26&year2=2015&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=23&year2=2017&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=27&year2=2015&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=24&year2=2017&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=28&year2=2015&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=25&year2=2017&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=29&year2=2015&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=26&year2=2017&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=30&year2=2015&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=27&year2=2017&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=10&day=31&year2=2015&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=1&year2=2015&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=28&year2=2017&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=2&year2=2015&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=29&year2=2017&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=3&year2=2015&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=30&year2=2017&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=4&year2=2015&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=31&year2=2017&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=5&year2=2015&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=1&year2=2017&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=6&year2=2015&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=7&year2=2015&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=2&year2=2017&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=3&year2=2017&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=8&year2=2015&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=9&year2=2015&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=4&year2=2017&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=10&year2=2015&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=5&year2=2017&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=11&year2=2015&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=6&year2=2017&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=12&year2=2015&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=7&year2=2017&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=13&year2=2015&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=8&year2=2017&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=14&year2=2015&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=9&year2=2017&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=15&year2=2015&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=16&year2=2015&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=10&year2=2017&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=17&year2=2015&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=11&year2=2017&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=18&year2=2015&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=12&year2=2017&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=19&year2=2015&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=13&year2=2017&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=20&year2=2015&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=14&year2=2017&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=21&year2=2015&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=15&year2=2017&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=22&year2=2015&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=23&year2=2015&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=16&year2=2017&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=24&year2=2015&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=17&year2=2017&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=25&year2=2015&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=18&year2=2017&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=26&year2=2015&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=19&year2=2017&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=27&year2=2015&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=20&year2=2017&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=28&year2=2015&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=29&year2=2015&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=21&year2=2017&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=11&day=30&year2=2015&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=22&year2=2017&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=1&year2=2015&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=23&year2=2017&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=2&year2=2015&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=24&year2=2017&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=3&year2=2015&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=25&year2=2017&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=4&year2=2015&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=26&year2=2017&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=5&year2=2015&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=6&year2=2015&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=27&year2=2017&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=7&year2=2015&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=28&year2=2017&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=8&year2=2015&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=29&year2=2017&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=9&year2=2015&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=30&year2=2017&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=10&year2=2015&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=11&year2=2015&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=31&year2=2017&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=12&year2=2015&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=1&year2=2017&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=13&year2=2015&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=2&year2=2017&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=14&year2=2015&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=3&year2=2017&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=15&year2=2015&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=16&year2=2015&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=4&year2=2017&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=17&year2=2015&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=5&year2=2017&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=18&year2=2015&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=6&year2=2017&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=19&year2=2015&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=7&year2=2017&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=20&year2=2015&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=21&year2=2015&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=8&year2=2017&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=22&year2=2015&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=9&year2=2017&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=23&year2=2015&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=10&year2=2017&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=24&year2=2015&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=11&year2=2017&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=25&year2=2015&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=12&year2=2017&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=26&year2=2015&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=27&year2=2015&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=13&year2=2017&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=28&year2=2015&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=14&year2=2017&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=29&year2=2015&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=15&year2=2017&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=30&year2=2015&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=16&year2=2017&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2015&month=12&day=31&year2=2016&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=17&year2=2017&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=1&year2=2016&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=2&year2=2016&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=18&year2=2017&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=3&year2=2016&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=19&year2=2017&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=4&year2=2016&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=20&year2=2017&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=5&year2=2016&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=21&year2=2017&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=6&year2=2016&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=22&year2=2017&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=7&year2=2016&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=8&year2=2016&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=23&year2=2017&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=9&year2=2016&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=24&year2=2017&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=10&year2=2016&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=25&year2=2017&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=11&year2=2016&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=26&year2=2017&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=12&year2=2016&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=27&year2=2017&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=13&year2=2016&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=14&year2=2016&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=28&year2=2017&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=15&year2=2016&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=29&year2=2017&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=16&year2=2016&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=30&year2=2017&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=17&year2=2016&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=1&year2=2017&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=18&year2=2016&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=2&year2=2017&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=19&year2=2016&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=3&year2=2017&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=20&year2=2016&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=4&year2=2017&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=21&year2=2016&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=22&year2=2016&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=5&year2=2017&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=23&year2=2016&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=6&year2=2017&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=24&year2=2016&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=7&year2=2017&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=25&year2=2016&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=8&year2=2017&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=26&year2=2016&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=9&year2=2017&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=27&year2=2016&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=10&year2=2017&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=28&year2=2016&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=11&year2=2017&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=29&year2=2016&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=12&year2=2017&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=30&year2=2016&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=1&day=31&year2=2016&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=13&year2=2017&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=1&year2=2016&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=14&year2=2017&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=2&year2=2016&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=15&year2=2017&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=3&year2=2016&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=16&year2=2017&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=4&year2=2016&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=17&year2=2017&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=5&year2=2016&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=18&year2=2017&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=6&year2=2016&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=19&year2=2017&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=7&year2=2016&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=20&year2=2017&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=8&year2=2016&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=21&year2=2017&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=9&year2=2016&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=22&year2=2017&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=10&year2=2016&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=23&year2=2017&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=11&year2=2016&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=24&year2=2017&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=12&year2=2016&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=25&year2=2017&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=13&year2=2016&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=26&year2=2017&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=14&year2=2016&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=27&year2=2017&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=15&year2=2016&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=28&year2=2017&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=16&year2=2016&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=29&year2=2017&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=17&year2=2016&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=30&year2=2017&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=18&year2=2016&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=19&year2=2016&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=31&year2=2017&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=20&year2=2016&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=1&year2=2017&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=21&year2=2016&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=2&year2=2017&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=22&year2=2016&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=3&year2=2017&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=4&year2=2017&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=23&year2=2016&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=5&year2=2017&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=24&year2=2016&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=6&year2=2017&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=25&year2=2016&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=7&year2=2017&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=26&year2=2016&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=8&year2=2017&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=27&year2=2016&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=9&year2=2017&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=28&year2=2016&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=10&year2=2017&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=2&day=29&year2=2016&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=11&year2=2017&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=1&year2=2016&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=12&year2=2017&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=2&year2=2016&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=13&year2=2017&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=3&year2=2016&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=14&year2=2017&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=4&year2=2016&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=5&year2=2016&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=15&year2=2017&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=6&year2=2016&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=16&year2=2017&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=7&year2=2016&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=17&year2=2017&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=8&year2=2016&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=18&year2=2017&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=9&year2=2016&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=19&year2=2017&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=10&year2=2016&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=20&year2=2017&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=11&year2=2016&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=21&year2=2017&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=12&year2=2016&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=22&year2=2017&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=13&year2=2016&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=23&year2=2017&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=14&year2=2016&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=24&year2=2017&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=25&year2=2017&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=15&year2=2016&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=26&year2=2017&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=16&year2=2016&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=27&year2=2017&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=17&year2=2016&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=28&year2=2017&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=18&year2=2016&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=29&year2=2017&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=19&year2=2016&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=30&year2=2017&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=20&year2=2016&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=1&year2=2017&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=21&year2=2016&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=2&year2=2017&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=22&year2=2016&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=3&year2=2017&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=23&year2=2016&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=4&year2=2017&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=24&year2=2016&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=5&year2=2017&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=25&year2=2016&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=6&year2=2017&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=26&year2=2016&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=7&year2=2017&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=27&year2=2016&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=8&year2=2017&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=28&year2=2016&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=9&year2=2017&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=10&year2=2017&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=29&year2=2016&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=30&year2=2016&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=11&year2=2017&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=3&day=31&year2=2016&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=12&year2=2017&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=1&year2=2016&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=13&year2=2017&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=14&year2=2017&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=2&year2=2016&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=3&year2=2016&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=15&year2=2017&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=4&year2=2016&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=16&year2=2017&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=17&year2=2017&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=5&year2=2016&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=18&year2=2017&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=6&year2=2016&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=19&year2=2017&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=7&year2=2016&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=20&year2=2017&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=8&year2=2016&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=21&year2=2017&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=9&year2=2016&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=22&year2=2017&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=10&year2=2016&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=23&year2=2017&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=11&year2=2016&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=24&year2=2017&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=12&year2=2016&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=25&year2=2017&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=26&year2=2017&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=13&year2=2016&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=27&year2=2017&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=14&year2=2016&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=28&year2=2017&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=15&year2=2016&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=29&year2=2017&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=16&year2=2016&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=30&year2=2017&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=31&year2=2018&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=17&year2=2016&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=1&year2=2018&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=18&year2=2016&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=2&year2=2018&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=19&year2=2016&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=3&year2=2018&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=4&year2=2018&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=20&year2=2016&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=5&year2=2018&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=21&year2=2016&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=6&year2=2018&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=22&year2=2016&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=7&year2=2018&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=23&year2=2016&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=8&year2=2018&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=9&year2=2018&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=24&year2=2016&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=10&year2=2018&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=25&year2=2016&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=11&year2=2018&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=26&year2=2016&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=12&year2=2018&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=27&year2=2016&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=13&year2=2018&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=28&year2=2016&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=14&year2=2018&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=29&year2=2016&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=15&year2=2018&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=16&year2=2018&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=4&day=30&year2=2016&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=17&year2=2018&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=1&year2=2016&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=18&year2=2018&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=2&year2=2016&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=19&year2=2018&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=3&year2=2016&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=20&year2=2018&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=21&year2=2018&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=4&year2=2016&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=22&year2=2018&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=5&year2=2016&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=23&year2=2018&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=6&year2=2016&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=24&year2=2018&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=7&year2=2016&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=25&year2=2018&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=8&year2=2016&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=26&year2=2018&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=9&year2=2016&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=27&year2=2018&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=10&year2=2016&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=28&year2=2018&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=11&year2=2016&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=29&year2=2018&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=30&year2=2018&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=12&year2=2016&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=31&year2=2018&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=13&year2=2016&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=1&year2=2018&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=14&year2=2016&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=2&year2=2018&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=15&year2=2016&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=3&year2=2018&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=16&year2=2016&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=4&year2=2018&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=5&year2=2018&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=17&year2=2016&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=6&year2=2018&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=18&year2=2016&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=7&year2=2018&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=19&year2=2016&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=8&year2=2018&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=20&year2=2016&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=9&year2=2018&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=21&year2=2016&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=10&year2=2018&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=11&year2=2018&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=22&year2=2016&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=12&year2=2018&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=23&year2=2016&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=13&year2=2018&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=24&year2=2016&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=14&year2=2018&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=25&year2=2016&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=15&year2=2018&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=26&year2=2016&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=16&year2=2018&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=27&year2=2016&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=17&year2=2018&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=28&year2=2016&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=18&year2=2018&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=19&year2=2018&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=29&year2=2016&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=20&year2=2018&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=30&year2=2016&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=21&year2=2018&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=5&day=31&year2=2016&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=22&year2=2018&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=1&year2=2016&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=23&year2=2018&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=2&year2=2016&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=24&year2=2018&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=3&year2=2016&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=25&year2=2018&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=4&year2=2016&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=26&year2=2018&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=27&year2=2018&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=5&year2=2016&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=28&year2=2018&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=6&year2=2016&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=1&year2=2018&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=7&year2=2016&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=2&year2=2018&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=8&year2=2016&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=3&year2=2018&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=9&year2=2016&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=4&year2=2018&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=10&year2=2016&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=5&year2=2018&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=11&year2=2016&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=6&year2=2018&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=12&year2=2016&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=7&year2=2018&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=13&year2=2016&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=8&year2=2018&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=9&year2=2018&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=14&year2=2016&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=10&year2=2018&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=15&year2=2016&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=11&year2=2018&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=16&year2=2016&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=12&year2=2018&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=17&year2=2016&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=13&year2=2018&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=18&year2=2016&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=14&year2=2018&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=19&year2=2016&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=15&year2=2018&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=20&year2=2016&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=16&year2=2018&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=17&year2=2018&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=21&year2=2016&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=18&year2=2018&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=22&year2=2016&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=19&year2=2018&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=23&year2=2016&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=20&year2=2018&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=24&year2=2016&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=21&year2=2018&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=25&year2=2016&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=22&year2=2018&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=26&year2=2016&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=23&year2=2018&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=27&year2=2016&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=24&year2=2018&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=28&year2=2016&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=25&year2=2018&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=26&year2=2018&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=29&year2=2016&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=27&year2=2018&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=6&day=30&year2=2016&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=28&year2=2018&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=1&year2=2016&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=29&year2=2018&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=2&year2=2016&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=30&year2=2018&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=3&year2=2016&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=31&year2=2018&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=4&year2=2016&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=1&year2=2018&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=5&year2=2016&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=2&year2=2018&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=6&year2=2016&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=3&year2=2018&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=7&year2=2016&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=4&year2=2018&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=5&year2=2018&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=8&year2=2016&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=6&year2=2018&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=9&year2=2016&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=7&year2=2018&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=10&year2=2016&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=8&year2=2018&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=11&year2=2016&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=9&year2=2018&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=12&year2=2016&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=10&year2=2018&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=13&year2=2016&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=11&year2=2018&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=14&year2=2016&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=12&year2=2018&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=15&year2=2016&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=13&year2=2018&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=14&year2=2018&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=16&year2=2016&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=15&year2=2018&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=17&year2=2016&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=16&year2=2018&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=18&year2=2016&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=17&year2=2018&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=19&year2=2016&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=18&year2=2018&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=20&year2=2016&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=19&year2=2018&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=21&year2=2016&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=20&year2=2018&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=22&year2=2016&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=21&year2=2018&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=23&year2=2016&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=22&year2=2018&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=24&year2=2016&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=23&year2=2018&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=25&year2=2016&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=24&year2=2018&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=26&year2=2016&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=25&year2=2018&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=27&year2=2016&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=26&year2=2018&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=28&year2=2016&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=27&year2=2018&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=29&year2=2016&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=28&year2=2018&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=30&year2=2016&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=29&year2=2018&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=7&day=31&year2=2016&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=30&year2=2018&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=1&year2=2016&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=1&year2=2018&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=2&year2=2016&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=2&year2=2018&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=3&year2=2016&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=3&year2=2018&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=4&year2=2016&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=4&year2=2018&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=5&year2=2016&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=5&year2=2018&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=6&year2=2016&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=6&year2=2018&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=7&year2=2016&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=7&year2=2018&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=8&year2=2016&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=8&year2=2018&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=9&year2=2016&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=9&year2=2018&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=10&year2=2016&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=10&year2=2018&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=11&year2=2016&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=11&year2=2018&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=12&year2=2016&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=12&year2=2018&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=13&year2=2016&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=13&year2=2018&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=14&year2=2016&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=14&year2=2018&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=15&year2=2016&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=15&year2=2018&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=16&year2=2016&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=16&year2=2018&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=17&year2=2016&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=17&year2=2018&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=18&year2=2018&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=18&year2=2016&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=19&year2=2016&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=19&year2=2018&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=20&year2=2016&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=20&year2=2018&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=21&year2=2018&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=21&year2=2016&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=22&year2=2018&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=22&year2=2016&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=23&year2=2018&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=23&year2=2016&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=24&year2=2018&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=24&year2=2016&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=25&year2=2018&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=25&year2=2016&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=26&year2=2018&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=26&year2=2016&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=27&year2=2018&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=27&year2=2016&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=28&year2=2018&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=28&year2=2016&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=29&year2=2018&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=29&year2=2016&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=30&year2=2018&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=30&year2=2016&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=31&year2=2018&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=8&day=31&year2=2016&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=1&year2=2018&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=1&year2=2016&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=2&year2=2018&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=2&year2=2016&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=3&year2=2018&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=4&year2=2018&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=3&year2=2016&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=4&year2=2016&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=5&year2=2018&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=5&year2=2016&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=6&year2=2018&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=6&year2=2016&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=7&year2=2018&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=8&year2=2018&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=7&year2=2016&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=9&year2=2018&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=8&year2=2016&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=10&year2=2018&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=9&year2=2016&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=11&year2=2018&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=10&year2=2016&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=12&year2=2018&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=11&year2=2016&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=13&year2=2018&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=12&year2=2016&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=14&year2=2018&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=13&year2=2016&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=15&year2=2018&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=14&year2=2016&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=16&year2=2018&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=15&year2=2016&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=17&year2=2018&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=16&year2=2016&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=18&year2=2018&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=17&year2=2016&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=19&year2=2018&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=18&year2=2016&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=20&year2=2018&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=19&year2=2016&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=21&year2=2018&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=20&year2=2016&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=22&year2=2018&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=21&year2=2016&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=23&year2=2018&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=22&year2=2016&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=24&year2=2018&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=23&year2=2016&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=25&year2=2018&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=24&year2=2016&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=25&year2=2016&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=26&year2=2018&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=26&year2=2016&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=27&year2=2018&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=27&year2=2016&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=28&year2=2018&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=28&year2=2016&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=29&year2=2018&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=29&year2=2016&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=30&year2=2018&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=9&day=30&year2=2016&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=1&year2=2018&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=1&year2=2016&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=2&year2=2018&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=2&year2=2016&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=3&year2=2016&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=3&year2=2018&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=4&year2=2016&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=4&year2=2018&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=5&year2=2016&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=5&year2=2018&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=6&year2=2016&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=6&year2=2018&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=7&year2=2016&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=7&year2=2018&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=8&year2=2016&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=8&year2=2018&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=9&year2=2016&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=10&year2=2016&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=9&year2=2018&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=11&year2=2016&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=10&year2=2018&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=12&year2=2016&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=11&year2=2018&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=13&year2=2016&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=12&year2=2018&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=14&year2=2016&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=13&year2=2018&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=15&year2=2016&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=16&year2=2016&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=14&year2=2018&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=17&year2=2016&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=15&year2=2018&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=18&year2=2016&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=16&year2=2018&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=19&year2=2016&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=17&year2=2018&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=20&year2=2016&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=21&year2=2016&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=18&year2=2018&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=22&year2=2016&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=19&year2=2018&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=23&year2=2016&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=20&year2=2018&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=24&year2=2016&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=25&year2=2016&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=21&year2=2018&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=26&year2=2016&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=22&year2=2018&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=27&year2=2016&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=23&year2=2018&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=28&year2=2016&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=29&year2=2016&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=24&year2=2018&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=30&year2=2016&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=25&year2=2018&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=10&day=31&year2=2016&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=26&year2=2018&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=1&year2=2016&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=27&year2=2018&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=2&year2=2016&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=3&year2=2016&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=28&year2=2018&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=4&year2=2016&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=29&year2=2018&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=5&year2=2016&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=30&year2=2018&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=6&year2=2016&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=31&year2=2018&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=7&year2=2016&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=1&year2=2018&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=8&year2=2016&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=9&year2=2016&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=2&year2=2018&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=10&year2=2016&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=3&year2=2018&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=11&year2=2016&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=4&year2=2018&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=12&year2=2016&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=5&year2=2018&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=13&year2=2016&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=14&year2=2016&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=6&year2=2018&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=15&year2=2016&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=7&year2=2018&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=16&year2=2016&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=8&year2=2018&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=17&year2=2016&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=9&year2=2018&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=18&year2=2016&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=10&year2=2018&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=19&year2=2016&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=20&year2=2016&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=11&year2=2018&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=21&year2=2016&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=12&year2=2018&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=22&year2=2016&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=13&year2=2018&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=23&year2=2016&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=14&year2=2018&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=24&year2=2016&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=25&year2=2016&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=15&year2=2018&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=26&year2=2016&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=16&year2=2018&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=27&year2=2016&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=17&year2=2018&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=28&year2=2016&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=29&year2=2016&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=18&year2=2018&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=11&day=30&year2=2016&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=19&year2=2018&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=1&year2=2016&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=20&year2=2018&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=2&year2=2016&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=21&year2=2018&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=3&year2=2016&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=4&year2=2016&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=22&year2=2018&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=5&year2=2016&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=23&year2=2018&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=6&year2=2016&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=24&year2=2018&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=7&year2=2016&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=8&year2=2016&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=25&year2=2018&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=9&year2=2016&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=26&year2=2018&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=10&year2=2016&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=27&year2=2018&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=11&year2=2016&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=28&year2=2018&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=12&year2=2016&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=13&year2=2016&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=29&year2=2018&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=14&year2=2016&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=30&year2=2018&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=15&year2=2016&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=31&year2=2018&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=16&year2=2016&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=17&year2=2016&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=1&year2=2018&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=18&year2=2016&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=2&year2=2018&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=19&year2=2016&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=20&year2=2016&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=3&year2=2018&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=21&year2=2016&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=4&year2=2018&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=22&year2=2016&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=5&year2=2018&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=23&year2=2016&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=24&year2=2016&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=6&year2=2018&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=25&year2=2016&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=7&year2=2018&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=26&year2=2016&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=8&year2=2018&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=27&year2=2016&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=9&year2=2018&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=28&year2=2016&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=10&year2=2018&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=29&year2=2016&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=30&year2=2016&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=11&year2=2018&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2016&month=12&day=31&year2=2017&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=12&year2=2018&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=1&year2=2017&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=13&year2=2018&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=2&year2=2017&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=14&year2=2018&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=3&year2=2017&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=4&year2=2017&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=15&year2=2018&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=5&year2=2017&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=16&year2=2018&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=6&year2=2017&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=17&year2=2018&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=7&year2=2017&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=8&year2=2017&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=18&year2=2018&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=9&year2=2017&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=19&year2=2018&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=10&year2=2017&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=20&year2=2018&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=11&year2=2017&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=21&year2=2018&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=12&year2=2017&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=13&year2=2017&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=22&year2=2018&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=14&year2=2017&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=23&year2=2018&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=15&year2=2017&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=24&year2=2018&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=16&year2=2017&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=25&year2=2018&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=17&year2=2017&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=18&year2=2017&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=26&year2=2018&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=19&year2=2017&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=27&year2=2018&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=20&year2=2017&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=28&year2=2018&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=21&year2=2017&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=29&year2=2018&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=22&year2=2017&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=23&year2=2017&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=30&year2=2018&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=24&year2=2017&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=1&year2=2018&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=25&year2=2017&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=2&year2=2018&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=26&year2=2017&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=3&year2=2018&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=27&year2=2017&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=28&year2=2017&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=4&year2=2018&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=29&year2=2017&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=5&year2=2018&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=30&year2=2017&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=6&year2=2018&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=1&day=31&year2=2017&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=7&year2=2018&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=1&year2=2017&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=8&year2=2018&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=2&year2=2017&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=9&year2=2018&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=3&year2=2017&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=4&year2=2017&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=10&year2=2018&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=5&year2=2017&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=11&year2=2018&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=6&year2=2017&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=12&year2=2018&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=7&year2=2017&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=13&year2=2018&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=8&year2=2017&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=9&year2=2017&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=14&year2=2018&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=10&year2=2017&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=15&year2=2018&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=11&year2=2017&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=16&year2=2018&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=12&year2=2017&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=17&year2=2018&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=13&year2=2017&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=18&year2=2018&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=14&year2=2017&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=19&year2=2018&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=15&year2=2017&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=16&year2=2017&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=20&year2=2018&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=17&year2=2017&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=21&year2=2018&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=18&year2=2017&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=22&year2=2018&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=19&year2=2017&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=23&year2=2018&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=20&year2=2017&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=24&year2=2018&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=21&year2=2017&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=25&year2=2018&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=22&year2=2017&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=26&year2=2018&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=23&year2=2017&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=27&year2=2018&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=24&year2=2017&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=28&year2=2018&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=25&year2=2017&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=29&year2=2018&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=30&year2=2018&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=31&year2=2018&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=26&year2=2017&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=1&year2=2018&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=27&year2=2017&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=2&year2=2018&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=2&day=28&year2=2017&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=3&year2=2018&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=1&year2=2017&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=4&year2=2018&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=2&year2=2017&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=5&year2=2018&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=3&year2=2017&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=6&year2=2018&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=4&year2=2017&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=7&year2=2018&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=5&year2=2017&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=8&year2=2018&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=6&year2=2017&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=9&year2=2018&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=7&year2=2017&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=10&year2=2018&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=8&year2=2017&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=11&year2=2018&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=9&year2=2017&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=12&year2=2018&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=10&year2=2017&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=13&year2=2018&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=11&year2=2017&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=14&year2=2018&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=12&year2=2017&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=15&year2=2018&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=13&year2=2017&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=16&year2=2018&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=14&year2=2017&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=17&year2=2018&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=15&year2=2017&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=18&year2=2018&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=16&year2=2017&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=19&year2=2018&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=17&year2=2017&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=20&year2=2018&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=18&year2=2017&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=21&year2=2018&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=19&year2=2017&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=22&year2=2018&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=20&year2=2017&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=23&year2=2018&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=21&year2=2017&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=24&year2=2018&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=22&year2=2017&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=25&year2=2018&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=23&year2=2017&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=26&year2=2018&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=24&year2=2017&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=27&year2=2018&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=25&year2=2017&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=28&year2=2018&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=26&year2=2017&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=29&year2=2018&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=27&year2=2017&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=30&year2=2018&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=28&year2=2017&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=1&year2=2018&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=29&year2=2017&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=2&year2=2018&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=30&year2=2017&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=3&year2=2018&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=3&day=31&year2=2017&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=4&year2=2018&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=1&year2=2017&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=5&year2=2018&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=2&year2=2017&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=6&year2=2018&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=3&year2=2017&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=7&year2=2018&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=4&year2=2017&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=8&year2=2018&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=5&year2=2017&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=9&year2=2018&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=6&year2=2017&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=10&year2=2018&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=7&year2=2017&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=11&year2=2018&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=8&year2=2017&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=12&year2=2018&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=9&year2=2017&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=13&year2=2018&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=14&year2=2018&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=10&year2=2017&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=15&year2=2018&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=11&year2=2017&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=16&year2=2018&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=12&year2=2017&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=17&year2=2018&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=13&year2=2017&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=18&year2=2018&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=14&year2=2017&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=19&year2=2018&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=15&year2=2017&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=20&year2=2018&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=16&year2=2017&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=21&year2=2018&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=17&year2=2017&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=22&year2=2018&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=18&year2=2017&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=23&year2=2018&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=19&year2=2017&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=24&year2=2018&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=20&year2=2017&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=25&year2=2018&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=21&year2=2017&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=26&year2=2018&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=22&year2=2017&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=27&year2=2018&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=23&year2=2017&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=28&year2=2018&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=24&year2=2017&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=29&year2=2018&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=25&year2=2017&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=30&year2=2018&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=26&year2=2017&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=31&year2=2019&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=27&year2=2017&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=1&year2=2019&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=28&year2=2017&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=2&year2=2019&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=29&year2=2017&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=3&year2=2019&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=4&day=30&year2=2017&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=4&year2=2019&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=1&year2=2017&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=5&year2=2019&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=2&year2=2017&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=6&year2=2019&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=7&year2=2019&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=3&year2=2017&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=8&year2=2019&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=4&year2=2017&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=9&year2=2019&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=5&year2=2017&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=10&year2=2019&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=6&year2=2017&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=11&year2=2019&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=7&year2=2017&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=12&year2=2019&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=8&year2=2017&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=13&year2=2019&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=9&year2=2017&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=14&year2=2019&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=10&year2=2017&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=15&year2=2019&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=11&year2=2017&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=16&year2=2019&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=12&year2=2017&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=17&year2=2019&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=13&year2=2017&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=18&year2=2019&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=14&year2=2017&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=19&year2=2019&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=15&year2=2017&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=20&year2=2019&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=16&year2=2017&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=21&year2=2019&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=17&year2=2017&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=22&year2=2019&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=18&year2=2017&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=23&year2=2019&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=24&year2=2019&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=19&year2=2017&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=25&year2=2019&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=20&year2=2017&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=26&year2=2019&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=21&year2=2017&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=27&year2=2019&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=22&year2=2017&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=28&year2=2019&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=23&year2=2017&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=29&year2=2019&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=24&year2=2017&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=30&year2=2019&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=25&year2=2017&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=31&year2=2019&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=1&year2=2019&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=26&year2=2017&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=2&year2=2019&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=27&year2=2017&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=3&year2=2019&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=28&year2=2017&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=4&year2=2019&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=29&year2=2017&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=5&year2=2019&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=30&year2=2017&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=6&year2=2019&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=5&day=31&year2=2017&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=7&year2=2019&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=1&year2=2017&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=8&year2=2019&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=2&year2=2017&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=9&year2=2019&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=3&year2=2017&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=10&year2=2019&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=4&year2=2017&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=11&year2=2019&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=5&year2=2017&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=12&year2=2019&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=13&year2=2019&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=6&year2=2017&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=14&year2=2019&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=7&year2=2017&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=15&year2=2019&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=8&year2=2017&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=16&year2=2019&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=9&year2=2017&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=17&year2=2019&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=10&year2=2017&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=18&year2=2019&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=11&year2=2017&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=19&year2=2019&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=12&year2=2017&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=20&year2=2019&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=13&year2=2017&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=21&year2=2019&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=14&year2=2017&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=22&year2=2019&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=15&year2=2017&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=23&year2=2019&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=16&year2=2017&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=24&year2=2019&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=17&year2=2017&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=25&year2=2019&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=18&year2=2017&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=26&year2=2019&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=19&year2=2017&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=27&year2=2019&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=20&year2=2017&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=28&year2=2019&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=21&year2=2017&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=1&year2=2019&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=22&year2=2017&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=2&year2=2019&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=23&year2=2017&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=3&year2=2019&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=24&year2=2017&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=4&year2=2019&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=25&year2=2017&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=5&year2=2019&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=26&year2=2017&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=6&year2=2019&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=27&year2=2017&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=7&year2=2019&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=28&year2=2017&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=8&year2=2019&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=29&year2=2017&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=9&year2=2019&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=6&day=30&year2=2017&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=10&year2=2019&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=1&year2=2017&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=11&year2=2019&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=2&year2=2017&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=12&year2=2019&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=3&year2=2017&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=13&year2=2019&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=4&year2=2017&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=14&year2=2019&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=5&year2=2017&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=15&year2=2019&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=6&year2=2017&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=16&year2=2019&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=7&year2=2017&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=17&year2=2019&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=8&year2=2017&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=18&year2=2019&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=9&year2=2017&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=19&year2=2019&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=10&year2=2017&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=11&year2=2017&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=20&year2=2019&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=12&year2=2017&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=21&year2=2019&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=13&year2=2017&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=22&year2=2019&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=14&year2=2017&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=23&year2=2019&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=15&year2=2017&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=24&year2=2019&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=16&year2=2017&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=25&year2=2019&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=17&year2=2017&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=26&year2=2019&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=18&year2=2017&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=27&year2=2019&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=19&year2=2017&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=28&year2=2019&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=20&year2=2017&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=29&year2=2019&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=21&year2=2017&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=30&year2=2019&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=22&year2=2017&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=31&year2=2019&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=23&year2=2017&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=1&year2=2019&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=24&year2=2017&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=2&year2=2019&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=25&year2=2017&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=3&year2=2019&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=26&year2=2017&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=4&year2=2019&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=27&year2=2017&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=5&year2=2019&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=28&year2=2017&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=6&year2=2019&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=29&year2=2017&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=7&year2=2019&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=30&year2=2017&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=8&year2=2019&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=9&year2=2019&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=7&day=31&year2=2017&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=10&year2=2019&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=1&year2=2017&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=11&year2=2019&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=2&year2=2017&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=12&year2=2019&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=3&year2=2017&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=13&year2=2019&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=4&year2=2017&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=14&year2=2019&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=5&year2=2017&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=6&year2=2017&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=15&year2=2019&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=7&year2=2017&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=16&year2=2019&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=8&year2=2017&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=17&year2=2019&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=9&year2=2017&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=18&year2=2019&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=10&year2=2017&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=19&year2=2019&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=11&year2=2017&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=20&year2=2019&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=12&year2=2017&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=21&year2=2019&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=13&year2=2017&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=22&year2=2019&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=14&year2=2017&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=15&year2=2017&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=23&year2=2019&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=16&year2=2017&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=24&year2=2019&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=17&year2=2017&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=25&year2=2019&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=18&year2=2017&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=26&year2=2019&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=19&year2=2017&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=27&year2=2019&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=20&year2=2017&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=28&year2=2019&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=21&year2=2017&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=29&year2=2019&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=22&year2=2017&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=30&year2=2019&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=23&year2=2017&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=1&year2=2019&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=24&year2=2017&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=2&year2=2019&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=25&year2=2017&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=3&year2=2019&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=26&year2=2017&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=4&year2=2019&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=5&year2=2019&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=27&year2=2017&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=6&year2=2019&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=28&year2=2017&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=7&year2=2019&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=29&year2=2017&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=8&year2=2019&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=30&year2=2017&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=9&year2=2019&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=8&day=31&year2=2017&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=10&year2=2019&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=1&year2=2017&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=11&year2=2019&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=2&year2=2017&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=3&year2=2017&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=12&year2=2019&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=4&year2=2017&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=13&year2=2019&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=5&year2=2017&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=14&year2=2019&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=6&year2=2017&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=15&year2=2019&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=7&year2=2017&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=16&year2=2019&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=8&year2=2017&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=17&year2=2019&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=9&year2=2017&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=18&year2=2019&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=10&year2=2017&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=19&year2=2019&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=11&year2=2017&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=20&year2=2019&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=12&year2=2017&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=21&year2=2019&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=13&year2=2017&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=22&year2=2019&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=14&year2=2017&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=23&year2=2019&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=15&year2=2017&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=16&year2=2017&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=24&year2=2019&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=17&year2=2017&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=25&year2=2019&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=18&year2=2017&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=26&year2=2019&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=19&year2=2017&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=27&year2=2019&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=20&year2=2017&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=28&year2=2019&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=21&year2=2017&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=29&year2=2019&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=22&year2=2017&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=30&year2=2019&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=23&year2=2017&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=24&year2=2017&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=31&year2=2019&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=25&year2=2017&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=1&year2=2019&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=26&year2=2017&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=2&year2=2019&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=27&year2=2017&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=3&year2=2019&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=28&year2=2017&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=4&year2=2019&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=29&year2=2017&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=9&day=30&year2=2017&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=5&year2=2019&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=1&year2=2017&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=6&year2=2019&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=2&year2=2017&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=7&year2=2019&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=3&year2=2017&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=8&year2=2019&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=4&year2=2017&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=9&year2=2019&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=5&year2=2017&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=10&year2=2019&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=6&year2=2017&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=7&year2=2017&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=11&year2=2019&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=8&year2=2017&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=12&year2=2019&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=9&year2=2017&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=13&year2=2019&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=10&year2=2017&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=14&year2=2019&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=11&year2=2017&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=15&year2=2019&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=12&year2=2017&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=16&year2=2019&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=13&year2=2017&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=17&year2=2019&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=14&year2=2017&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=15&year2=2017&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=18&year2=2019&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=16&year2=2017&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=19&year2=2019&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=17&year2=2017&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=20&year2=2019&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=18&year2=2017&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=21&year2=2019&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=19&year2=2017&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=22&year2=2019&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=20&year2=2017&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=21&year2=2017&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=23&year2=2019&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=22&year2=2017&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=24&year2=2019&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=23&year2=2017&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=25&year2=2019&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=24&year2=2017&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=25&year2=2017&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=26&year2=2019&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=26&year2=2017&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=27&year2=2019&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=27&year2=2017&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=28&year2=2019&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=28&year2=2017&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=29&year2=2019&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=29&year2=2017&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=30&year2=2017&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=30&year2=2019&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=10&day=31&year2=2017&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=1&year2=2019&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=1&year2=2017&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=2&year2=2019&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=2&year2=2017&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=3&year2=2017&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=3&year2=2019&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=4&year2=2017&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=4&year2=2019&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=5&year2=2017&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=5&year2=2019&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=6&year2=2017&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=6&year2=2019&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=7&year2=2017&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=7&year2=2019&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=8&year2=2017&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=8&year2=2019&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=9&year2=2017&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=10&year2=2017&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=9&year2=2019&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=11&year2=2017&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=10&year2=2019&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=12&year2=2017&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=13&year2=2017&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=11&year2=2019&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=14&year2=2017&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=12&year2=2019&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=15&year2=2017&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=13&year2=2019&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=16&year2=2017&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=14&year2=2019&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=17&year2=2017&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=18&year2=2017&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=15&year2=2019&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=19&year2=2017&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=16&year2=2019&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=20&year2=2017&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=17&year2=2019&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=21&year2=2017&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=18&year2=2019&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=22&year2=2017&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=23&year2=2017&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=19&year2=2019&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=24&year2=2017&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=20&year2=2019&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=25&year2=2017&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=26&year2=2017&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=21&year2=2019&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=27&year2=2017&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=22&year2=2019&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=28&year2=2017&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=23&year2=2019&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=29&year2=2017&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=11&day=30&year2=2017&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=24&year2=2019&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=1&year2=2017&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=25&year2=2019&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=2&year2=2017&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=3&year2=2017&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=26&year2=2019&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=4&year2=2017&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=27&year2=2019&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=5&year2=2017&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=28&year2=2019&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=6&year2=2017&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=7&year2=2017&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=29&year2=2019&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=8&year2=2017&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=30&year2=2019&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=9&year2=2017&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=10&year2=2017&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=31&year2=2019&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=11&year2=2017&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=1&year2=2019&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=12&year2=2017&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=2&year2=2019&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=13&year2=2017&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=14&year2=2017&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=3&year2=2019&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=15&year2=2017&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=4&year2=2019&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=16&year2=2017&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=5&year2=2019&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=17&year2=2017&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=18&year2=2017&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=6&year2=2019&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=19&year2=2017&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=7&year2=2019&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=20&year2=2017&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=8&year2=2019&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=21&year2=2017&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=9&year2=2019&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=22&year2=2017&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=23&year2=2017&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=10&year2=2019&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=24&year2=2017&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=11&year2=2019&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=25&year2=2017&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=26&year2=2017&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=12&year2=2019&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=27&year2=2017&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=13&year2=2019&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=28&year2=2017&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=14&year2=2019&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=29&year2=2017&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=30&year2=2017&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=15&year2=2019&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2017&month=12&day=31&year2=2018&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=16&year2=2019&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=1&year2=2018&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=2&year2=2018&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=17&year2=2019&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=3&year2=2018&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=18&year2=2019&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=4&year2=2018&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=19&year2=2019&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=5&year2=2018&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=6&year2=2018&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=20&year2=2019&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=7&year2=2018&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=21&year2=2019&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=8&year2=2018&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=9&year2=2018&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=22&year2=2019&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=10&year2=2018&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=23&year2=2019&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=11&year2=2018&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=24&year2=2019&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=12&year2=2018&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=13&year2=2018&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=25&year2=2019&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=14&year2=2018&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=26&year2=2019&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=15&year2=2018&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=16&year2=2018&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=27&year2=2019&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=17&year2=2018&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=28&year2=2019&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=18&year2=2018&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=29&year2=2019&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=19&year2=2018&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=20&year2=2018&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=30&year2=2019&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=21&year2=2018&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=31&year2=2019&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=22&year2=2018&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=23&year2=2018&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=1&year2=2019&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=24&year2=2018&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=2&year2=2019&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=25&year2=2018&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=26&year2=2018&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=3&year2=2019&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=27&year2=2018&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=4&year2=2019&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=28&year2=2018&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=5&year2=2019&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=29&year2=2018&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=6&year2=2019&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=30&year2=2018&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=7&year2=2019&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=1&day=31&year2=2018&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=8&year2=2019&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=1&year2=2018&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=2&year2=2018&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=9&year2=2019&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=3&year2=2018&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=10&year2=2019&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=4&year2=2018&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=11&year2=2019&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=5&year2=2018&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=6&year2=2018&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=12&year2=2019&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=7&year2=2018&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=13&year2=2019&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=8&year2=2018&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=14&year2=2019&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=9&year2=2018&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=15&year2=2019&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=10&year2=2018&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=11&year2=2018&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=16&year2=2019&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=12&year2=2018&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=17&year2=2019&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=13&year2=2018&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=18&year2=2019&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=14&year2=2018&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=19&year2=2019&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=15&year2=2018&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=16&year2=2018&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=20&year2=2019&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=17&year2=2018&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=21&year2=2019&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=18&year2=2018&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=22&year2=2019&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=19&year2=2018&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=23&year2=2019&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=20&year2=2018&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=21&year2=2018&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=24&year2=2019&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=22&year2=2018&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=25&year2=2019&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=23&year2=2018&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=26&year2=2019&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=24&year2=2018&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=27&year2=2019&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=25&year2=2018&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=28&year2=2019&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=26&year2=2018&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=29&year2=2019&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=27&year2=2018&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=2&day=28&year2=2018&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=30&year2=2019&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=1&year2=2018&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=1&year2=2019&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=2&year2=2018&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=2&year2=2019&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=3&year2=2018&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=3&year2=2019&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=4&year2=2018&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=5&year2=2018&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=4&year2=2019&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=6&year2=2018&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=5&year2=2019&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=7&year2=2018&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=6&year2=2019&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=8&year2=2018&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=7&year2=2019&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=9&year2=2018&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=8&year2=2019&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=10&year2=2018&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=9&year2=2019&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=11&year2=2018&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=12&year2=2018&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=10&year2=2019&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=13&year2=2018&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=11&year2=2019&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=14&year2=2018&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=12&year2=2019&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=15&year2=2018&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=13&year2=2019&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=16&year2=2018&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=14&year2=2019&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=17&year2=2018&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=15&year2=2019&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=18&year2=2018&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=16&year2=2019&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=19&year2=2018&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=20&year2=2018&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=17&year2=2019&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=21&year2=2018&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=18&year2=2019&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=22&year2=2018&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=19&year2=2019&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=23&year2=2018&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=20&year2=2019&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=24&year2=2018&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=21&year2=2019&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=25&year2=2018&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=22&year2=2019&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=26&year2=2018&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=23&year2=2019&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=27&year2=2018&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=24&year2=2019&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=28&year2=2018&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=25&year2=2019&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=29&year2=2018&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=30&year2=2018&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=26&year2=2019&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=3&day=31&year2=2018&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=27&year2=2019&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=1&year2=2018&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=28&year2=2019&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=2&year2=2018&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=29&year2=2019&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=3&year2=2018&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=30&year2=2019&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=4&year2=2018&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=31&year2=2019&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=5&year2=2018&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=1&year2=2019&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=6&year2=2018&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=2&year2=2019&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=7&year2=2018&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=3&year2=2019&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=8&year2=2018&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=4&year2=2019&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=9&year2=2018&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=5&year2=2019&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=10&year2=2018&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=11&year2=2018&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=6&year2=2019&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=12&year2=2018&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=7&year2=2019&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=13&year2=2018&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=8&year2=2019&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=14&year2=2018&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=9&year2=2019&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=15&year2=2018&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=10&year2=2019&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=16&year2=2018&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=11&year2=2019&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=12&year2=2019&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=17&year2=2018&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=13&year2=2019&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=18&year2=2018&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=14&year2=2019&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=19&year2=2018&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=15&year2=2019&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=20&year2=2018&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=16&year2=2019&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=21&year2=2018&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=17&year2=2019&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=22&year2=2018&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=18&year2=2019&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=19&year2=2019&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=23&year2=2018&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=20&year2=2019&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=24&year2=2018&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=21&year2=2019&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=25&year2=2018&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=22&year2=2019&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=26&year2=2018&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=23&year2=2019&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=27&year2=2018&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=24&year2=2019&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=28&year2=2018&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=25&year2=2019&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=29&year2=2018&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=26&year2=2019&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=4&day=30&year2=2018&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=27&year2=2019&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=1&year2=2018&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=28&year2=2019&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=29&year2=2019&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=2&year2=2018&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=30&year2=2019&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=3&year2=2018&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=1&year2=2019&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=4&year2=2018&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=2&year2=2019&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=5&year2=2018&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=3&year2=2019&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=6&year2=2018&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=4&year2=2019&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=7&year2=2018&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=5&year2=2019&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=8&year2=2018&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=6&year2=2019&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=7&year2=2019&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=9&year2=2018&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=8&year2=2019&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=10&year2=2018&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=9&year2=2019&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=11&year2=2018&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=10&year2=2019&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=12&year2=2018&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=11&year2=2019&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=13&year2=2018&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=12&year2=2019&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=14&year2=2018&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=13&year2=2019&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=15&year2=2018&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=14&year2=2019&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=15&year2=2019&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=16&year2=2018&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=16&year2=2019&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=17&year2=2018&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=17&year2=2019&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=18&year2=2018&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=18&year2=2019&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=19&year2=2018&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=19&year2=2019&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=20&year2=2018&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=20&year2=2019&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=21&year2=2018&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=21&year2=2019&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=22&year2=2018&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=22&year2=2019&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=23&year2=2019&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=23&year2=2018&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=24&year2=2019&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=24&year2=2018&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=25&year2=2019&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=25&year2=2018&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=26&year2=2019&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=26&year2=2018&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=27&year2=2019&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=27&year2=2018&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=28&year2=2019&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=28&year2=2018&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=29&year2=2019&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=29&year2=2018&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=30&year2=2019&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=30&year2=2018&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=31&year2=2020&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=1&year2=2020&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=5&day=31&year2=2018&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=2&year2=2020&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=1&year2=2018&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=3&year2=2020&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=2&year2=2018&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=4&year2=2020&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=3&year2=2018&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=5&year2=2020&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=4&year2=2018&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=6&year2=2020&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=5&year2=2018&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=7&year2=2020&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=6&year2=2018&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=8&year2=2020&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=7&year2=2018&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=9&year2=2020&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=8&year2=2018&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=10&year2=2020&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=9&year2=2018&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=11&year2=2020&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=10&year2=2018&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=12&year2=2020&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=11&year2=2018&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=13&year2=2020&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=12&year2=2018&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=14&year2=2020&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=13&year2=2018&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=15&year2=2020&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=14&year2=2018&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=16&year2=2020&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=15&year2=2018&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=17&year2=2020&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=16&year2=2018&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=18&year2=2020&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=19&year2=2020&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=17&year2=2018&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=20&year2=2020&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=18&year2=2018&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=21&year2=2020&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=19&year2=2018&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=22&year2=2020&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=20&year2=2018&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=23&year2=2020&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=21&year2=2018&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=24&year2=2020&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=22&year2=2018&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=25&year2=2020&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=23&year2=2018&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=26&year2=2020&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=27&year2=2020&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=24&year2=2018&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=28&year2=2020&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=25&year2=2018&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=29&year2=2020&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=26&year2=2018&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=30&year2=2020&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=27&year2=2018&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=31&year2=2020&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=28&year2=2018&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=1&year2=2020&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=29&year2=2018&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=2&year2=2020&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=6&day=30&year2=2018&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=3&year2=2020&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=1&year2=2018&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=4&year2=2020&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=2&year2=2018&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=5&year2=2020&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=3&year2=2018&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=6&year2=2020&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=4&year2=2018&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=7&year2=2020&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=5&year2=2018&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=8&year2=2020&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=9&year2=2020&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=6&year2=2018&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=10&year2=2020&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=7&year2=2018&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=11&year2=2020&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=8&year2=2018&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=12&year2=2020&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=9&year2=2018&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=13&year2=2020&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=10&year2=2018&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=14&year2=2020&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=11&year2=2018&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=15&year2=2020&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=12&year2=2018&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=16&year2=2020&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=13&year2=2018&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=17&year2=2020&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=18&year2=2020&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=14&year2=2018&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=19&year2=2020&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=15&year2=2018&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=20&year2=2020&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=16&year2=2018&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=21&year2=2020&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=17&year2=2018&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=22&year2=2020&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=18&year2=2018&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=23&year2=2020&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=19&year2=2018&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=24&year2=2020&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=20&year2=2018&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=25&year2=2020&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=21&year2=2018&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=26&year2=2020&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=22&year2=2018&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=27&year2=2020&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=23&year2=2018&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=28&year2=2020&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=24&year2=2018&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=29&year2=2020&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=1&year2=2020&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=25&year2=2018&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=2&year2=2020&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=26&year2=2018&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=3&year2=2020&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=27&year2=2018&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=4&year2=2020&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=28&year2=2018&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=5&year2=2020&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=29&year2=2018&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=6&year2=2020&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=30&year2=2018&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=7&year2=2020&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=7&day=31&year2=2018&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=8&year2=2020&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=1&year2=2018&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=9&year2=2020&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=2&year2=2018&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=10&year2=2020&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=3&year2=2018&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=11&year2=2020&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=12&year2=2020&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=4&year2=2018&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=13&year2=2020&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=5&year2=2018&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=14&year2=2020&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=6&year2=2018&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=15&year2=2020&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=7&year2=2018&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=16&year2=2020&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=8&year2=2018&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=17&year2=2020&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=9&year2=2018&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=18&year2=2020&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=10&year2=2018&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=19&year2=2020&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=11&year2=2018&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=20&year2=2020&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=12&year2=2018&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=21&year2=2020&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=13&year2=2018&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=22&year2=2020&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=14&year2=2018&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=23&year2=2020&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=15&year2=2018&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=24&year2=2020&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=16&year2=2018&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=25&year2=2020&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=26&year2=2020&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=17&year2=2018&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=27&year2=2020&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=18&year2=2018&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=28&year2=2020&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=19&year2=2018&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=29&year2=2020&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=20&year2=2018&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=30&year2=2020&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=21&year2=2018&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=31&year2=2020&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=22&year2=2018&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=1&year2=2020&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=23&year2=2018&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=2&year2=2020&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=24&year2=2018&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=25&year2=2018&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=3&year2=2020&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=26&year2=2018&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=4&year2=2020&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=27&year2=2018&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=5&year2=2020&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=28&year2=2018&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=6&year2=2020&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=29&year2=2018&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=7&year2=2020&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=30&year2=2018&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=8&year2=2020&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=8&day=31&year2=2018&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=9&year2=2020&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=1&year2=2018&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=10&year2=2020&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=2&year2=2018&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=11&year2=2020&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=3&year2=2018&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=12&year2=2020&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=4&year2=2018&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=13&year2=2020&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=5&year2=2018&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=14&year2=2020&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=6&year2=2018&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=15&year2=2020&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=7&year2=2018&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=16&year2=2020&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=17&year2=2020&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=8&year2=2018&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=18&year2=2020&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=9&year2=2018&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=19&year2=2020&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=10&year2=2018&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=20&year2=2020&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=11&year2=2018&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=21&year2=2020&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=12&year2=2018&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=22&year2=2020&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=13&year2=2018&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=23&year2=2020&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=14&year2=2018&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=24&year2=2020&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=15&year2=2018&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=25&year2=2020&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=16&year2=2018&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=26&year2=2020&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=17&year2=2018&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=27&year2=2020&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=18&year2=2018&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=28&year2=2020&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=19&year2=2018&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=29&year2=2020&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=20&year2=2018&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=30&year2=2020&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=21&year2=2018&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=1&year2=2020&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=22&year2=2018&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=2&year2=2020&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=23&year2=2018&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=3&year2=2020&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=24&year2=2018&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=4&year2=2020&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=25&year2=2018&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=5&year2=2020&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=26&year2=2018&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=6&year2=2020&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=27&year2=2018&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=7&year2=2020&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=28&year2=2018&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=8&year2=2020&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=29&year2=2018&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=9&year2=2020&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=9&day=30&year2=2018&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=10&year2=2020&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=1&year2=2018&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=11&year2=2020&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=2&year2=2018&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=12&year2=2020&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=3&year2=2018&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=13&year2=2020&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=4&year2=2018&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=14&year2=2020&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=5&year2=2018&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=15&year2=2020&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=6&year2=2018&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=16&year2=2020&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=7&year2=2018&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=17&year2=2020&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=8&year2=2018&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=18&year2=2020&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=9&year2=2018&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=19&year2=2020&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=10&year2=2018&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=20&year2=2020&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=11&year2=2018&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=21&year2=2020&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=12&year2=2018&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=22&year2=2020&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=13&year2=2018&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=23&year2=2020&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=14&year2=2018&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=24&year2=2020&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=15&year2=2018&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=25&year2=2020&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=16&year2=2018&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=26&year2=2020&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=17&year2=2018&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=27&year2=2020&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=18&year2=2018&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=28&year2=2020&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=19&year2=2018&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=29&year2=2020&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=20&year2=2018&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=30&year2=2020&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=21&year2=2018&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=22&year2=2018&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=31&year2=2020&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=23&year2=2018&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=1&year2=2020&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=24&year2=2018&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=2&year2=2020&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=25&year2=2018&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=3&year2=2020&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=26&year2=2018&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=4&year2=2020&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=27&year2=2018&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=5&year2=2020&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=28&year2=2018&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=6&year2=2020&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=29&year2=2018&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=7&year2=2020&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=30&year2=2018&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=8&year2=2020&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=10&day=31&year2=2018&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=9&year2=2020&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=1&year2=2018&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=10&year2=2020&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=2&year2=2018&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=11&year2=2020&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=3&year2=2018&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=4&year2=2018&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=12&year2=2020&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=5&year2=2018&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=13&year2=2020&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=6&year2=2018&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=14&year2=2020&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=7&year2=2018&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=15&year2=2020&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=8&year2=2018&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=16&year2=2020&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=9&year2=2018&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=17&year2=2020&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=10&year2=2018&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=18&year2=2020&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=11&year2=2018&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=19&year2=2020&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=12&year2=2018&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=20&year2=2020&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=13&year2=2018&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=14&year2=2018&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=21&year2=2020&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=15&year2=2018&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=22&year2=2020&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=16&year2=2018&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=23&year2=2020&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=17&year2=2018&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=24&year2=2020&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=18&year2=2018&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=19&year2=2018&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=25&year2=2020&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=20&year2=2018&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=26&year2=2020&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=21&year2=2018&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=27&year2=2020&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=22&year2=2018&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=28&year2=2020&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=23&year2=2018&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=29&year2=2020&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=24&year2=2018&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=30&year2=2020&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=25&year2=2018&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=26&year2=2018&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=1&year2=2020&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=27&year2=2018&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=2&year2=2020&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=28&year2=2018&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=3&year2=2020&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=29&year2=2018&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=11&day=30&year2=2018&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=4&year2=2020&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=1&year2=2018&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=5&year2=2020&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=2&year2=2018&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=6&year2=2020&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=3&year2=2018&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=7&year2=2020&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=4&year2=2018&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=5&year2=2018&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=8&year2=2020&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=6&year2=2018&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=9&year2=2020&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=7&year2=2018&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=10&year2=2020&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=8&year2=2018&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=11&year2=2020&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=9&year2=2018&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=12&year2=2020&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=10&year2=2018&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=11&year2=2018&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=13&year2=2020&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=12&year2=2018&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=14&year2=2020&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=13&year2=2018&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=15&year2=2020&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=14&year2=2018&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=16&year2=2020&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=15&year2=2018&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=17&year2=2020&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=16&year2=2018&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=17&year2=2018&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=18&year2=2020&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=18&year2=2018&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=19&year2=2020&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=19&year2=2018&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=20&year2=2020&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=20&year2=2018&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=21&year2=2020&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=21&year2=2018&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=22&year2=2020&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=22&year2=2018&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=23&year2=2018&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=23&year2=2020&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=24&year2=2018&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=24&year2=2020&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=25&year2=2018&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=25&year2=2020&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=26&year2=2018&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=26&year2=2020&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=27&year2=2018&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=27&year2=2020&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=28&year2=2018&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=29&year2=2018&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=28&year2=2020&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=30&year2=2018&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=29&year2=2020&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2018&month=12&day=31&year2=2019&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=30&year2=2020&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=1&year2=2019&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=2&year2=2019&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=31&year2=2020&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=3&year2=2019&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=1&year2=2020&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=4&year2=2019&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=2&year2=2020&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=5&year2=2019&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=3&year2=2020&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=6&year2=2019&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=7&year2=2019&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=4&year2=2020&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=8&year2=2019&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=5&year2=2020&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=9&year2=2019&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=6&year2=2020&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=10&year2=2019&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=7&year2=2020&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=11&year2=2019&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=12&year2=2019&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=8&year2=2020&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=13&year2=2019&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=9&year2=2020&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=14&year2=2019&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=10&year2=2020&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=15&year2=2019&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=11&year2=2020&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=16&year2=2019&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=17&year2=2019&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=12&year2=2020&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=18&year2=2019&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=13&year2=2020&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=19&year2=2019&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=14&year2=2020&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=20&year2=2019&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=15&year2=2020&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=21&year2=2019&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=16&year2=2020&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=22&year2=2019&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=23&year2=2019&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=17&year2=2020&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=24&year2=2019&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=18&year2=2020&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=25&year2=2019&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=19&year2=2020&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=26&year2=2019&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=20&year2=2020&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=27&year2=2019&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=21&year2=2020&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=28&year2=2019&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=29&year2=2019&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=22&year2=2020&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=30&year2=2019&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=23&year2=2020&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=1&day=31&year2=2019&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=24&year2=2020&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=1&year2=2019&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=2&year2=2019&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=25&year2=2020&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=3&year2=2019&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=26&year2=2020&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=4&year2=2019&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=27&year2=2020&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=5&year2=2019&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=28&year2=2020&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=6&year2=2019&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=29&year2=2020&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=7&year2=2019&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=30&year2=2020&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=8&year2=2019&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=31&year2=2020&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=9&year2=2019&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=1&year2=2020&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=10&year2=2019&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=11&year2=2019&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=2&year2=2020&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=12&year2=2019&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=3&year2=2020&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=13&year2=2019&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=4&year2=2020&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=14&year2=2019&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=5&year2=2020&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=15&year2=2019&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=16&year2=2019&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=6&year2=2020&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=17&year2=2019&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=7&year2=2020&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=18&year2=2019&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=8&year2=2020&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=19&year2=2019&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=9&year2=2020&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=20&year2=2019&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=10&year2=2020&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=21&year2=2019&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=11&year2=2020&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=22&year2=2019&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=12&year2=2020&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=23&year2=2019&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=13&year2=2020&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=24&year2=2019&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=14&year2=2020&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=25&year2=2019&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=15&year2=2020&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=26&year2=2019&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=27&year2=2019&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=16&year2=2020&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=2&day=28&year2=2019&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=17&year2=2020&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=1&year2=2019&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=18&year2=2020&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=2&year2=2019&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=19&year2=2020&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=3&year2=2019&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=20&year2=2020&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=4&year2=2019&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=21&year2=2020&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=5&year2=2019&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=22&year2=2020&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=6&year2=2019&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=23&year2=2020&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=7&year2=2019&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=24&year2=2020&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=8&year2=2019&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=25&year2=2020&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=9&year2=2019&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=10&year2=2019&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=26&year2=2020&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=11&year2=2019&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=27&year2=2020&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=12&year2=2019&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=28&year2=2020&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=13&year2=2019&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=29&year2=2020&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=14&year2=2019&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=30&year2=2020&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=15&year2=2019&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=1&year2=2020&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=16&year2=2019&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=2&year2=2020&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=17&year2=2019&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=3&year2=2020&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=18&year2=2019&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=4&year2=2020&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=19&year2=2019&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=5&year2=2020&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=6&year2=2020&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=20&year2=2019&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=7&year2=2020&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=21&year2=2019&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=8&year2=2020&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=22&year2=2019&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=9&year2=2020&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=23&year2=2019&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=10&year2=2020&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=24&year2=2019&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=11&year2=2020&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=25&year2=2019&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=12&year2=2020&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=26&year2=2019&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=13&year2=2020&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=27&year2=2019&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=14&year2=2020&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=28&year2=2019&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=15&year2=2020&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=29&year2=2019&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=16&year2=2020&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=30&year2=2019&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=17&year2=2020&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=3&day=31&year2=2019&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=18&year2=2020&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=1&year2=2019&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=19&year2=2020&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=2&year2=2019&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=20&year2=2020&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=3&year2=2019&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=21&year2=2020&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=4&year2=2019&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=22&year2=2020&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=5&year2=2019&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=23&year2=2020&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=6&year2=2019&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=24&year2=2020&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=7&year2=2019&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=25&year2=2020&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=8&year2=2019&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=26&year2=2020&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=9&year2=2019&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=27&year2=2020&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=10&year2=2019&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=28&year2=2020&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=11&year2=2019&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=29&year2=2020&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=12&year2=2019&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=30&year2=2020&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=13&year2=2019&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=31&year2=2020&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=14&year2=2019&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=1&year2=2020&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=15&year2=2019&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=2&year2=2020&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=16&year2=2019&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=3&year2=2020&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=17&year2=2019&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=4&year2=2020&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=18&year2=2019&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=5&year2=2020&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=19&year2=2019&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=6&year2=2020&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=20&year2=2019&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=7&year2=2020&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=21&year2=2019&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=8&year2=2020&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=22&year2=2019&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=9&year2=2020&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=23&year2=2019&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=10&year2=2020&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=24&year2=2019&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=11&year2=2020&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=12&year2=2020&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=25&year2=2019&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=13&year2=2020&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=26&year2=2019&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=14&year2=2020&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=27&year2=2019&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=15&year2=2020&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=28&year2=2019&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=16&year2=2020&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=29&year2=2019&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=17&year2=2020&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=4&day=30&year2=2019&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=18&year2=2020&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=1&year2=2019&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=19&year2=2020&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=2&year2=2019&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=20&year2=2020&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=3&year2=2019&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=21&year2=2020&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=22&year2=2020&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=4&year2=2019&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=23&year2=2020&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=5&year2=2019&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=24&year2=2020&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=6&year2=2019&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=25&year2=2020&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=7&year2=2019&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=26&year2=2020&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=8&year2=2019&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=27&year2=2020&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=9&year2=2019&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=28&year2=2020&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=10&year2=2019&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=29&year2=2020&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=11&year2=2019&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=30&year2=2020&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=12&year2=2019&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=1&year2=2020&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=13&year2=2019&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=2&year2=2020&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=14&year2=2019&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=3&year2=2020&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=15&year2=2019&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=4&year2=2020&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=16&year2=2019&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=5&year2=2020&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=17&year2=2019&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=6&year2=2020&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=7&year2=2020&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=18&year2=2019&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=8&year2=2020&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=19&year2=2019&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=9&year2=2020&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=20&year2=2019&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=10&year2=2020&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=21&year2=2019&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=11&year2=2020&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=22&year2=2019&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=12&year2=2020&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=13&year2=2020&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=23&year2=2019&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=14&year2=2020&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=24&year2=2019&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=15&year2=2020&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=25&year2=2019&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=16&year2=2020&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=26&year2=2019&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=17&year2=2020&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=18&year2=2020&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=27&year2=2019&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=19&year2=2020&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=28&year2=2019&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=20&year2=2020&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=29&year2=2019&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=21&year2=2020&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=30&year2=2019&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=22&year2=2020&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=23&year2=2020&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=5&day=31&year2=2019&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=24&year2=2020&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=1&year2=2019&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=25&year2=2020&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=2&year2=2019&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=26&year2=2020&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=27&year2=2020&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=3&year2=2019&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=28&year2=2020&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=4&year2=2019&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=29&year2=2020&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=5&year2=2019&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=30&year2=2020&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=31&year2=2021&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=6&year2=2019&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=1&year2=2021&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=7&year2=2019&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=2&year2=2021&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=8&year2=2019&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=3&year2=2021&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=9&year2=2019&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=4&year2=2021&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=10&year2=2019&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=5&year2=2021&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=11&year2=2019&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=6&year2=2021&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=12&year2=2019&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=7&year2=2021&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=13&year2=2019&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=8&year2=2021&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=9&year2=2021&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=14&year2=2019&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=10&year2=2021&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=15&year2=2019&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=11&year2=2021&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=16&year2=2019&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=12&year2=2021&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=13&year2=2021&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=17&year2=2019&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=14&year2=2021&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=18&year2=2019&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=15&year2=2021&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=19&year2=2019&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=16&year2=2021&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=20&year2=2019&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=17&year2=2021&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=21&year2=2019&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=18&year2=2021&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=19&year2=2021&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=22&year2=2019&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=20&year2=2021&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=23&year2=2019&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=21&year2=2021&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=24&year2=2019&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=22&year2=2021&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=25&year2=2019&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=23&year2=2021&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=24&year2=2021&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=26&year2=2019&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=25&year2=2021&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=27&year2=2019&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=26&year2=2021&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=27&year2=2021&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=28&year2=2019&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=28&year2=2021&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=29&year2=2019&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=29&year2=2021&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=6&day=30&year2=2019&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=30&year2=2021&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=31&year2=2021&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=1&year2=2019&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=1&year2=2021&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=2&year2=2019&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=2&year2=2021&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=3&year2=2019&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=3&year2=2021&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=4&year2=2019&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=4&year2=2021&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=5&year2=2019&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=5&year2=2021&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=6&year2=2021&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=6&year2=2019&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=7&year2=2021&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=7&year2=2019&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=8&year2=2021&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=8&year2=2019&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=9&year2=2021&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=9&year2=2019&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=10&year2=2021&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=10&year2=2019&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=11&year2=2021&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=12&year2=2021&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=11&year2=2019&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=13&year2=2021&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=12&year2=2019&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=14&year2=2021&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=13&year2=2019&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=15&year2=2021&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=16&year2=2021&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=14&year2=2019&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=17&year2=2021&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=15&year2=2019&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=18&year2=2021&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=16&year2=2019&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=19&year2=2021&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=17&year2=2019&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=20&year2=2021&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=18&year2=2019&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=21&year2=2021&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=19&year2=2019&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=22&year2=2021&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=20&year2=2019&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=23&year2=2021&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=21&year2=2019&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=24&year2=2021&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=22&year2=2019&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=25&year2=2021&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=23&year2=2019&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=26&year2=2021&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=27&year2=2021&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=24&year2=2019&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=28&year2=2021&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=25&year2=2019&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=26&year2=2019&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=27&year2=2019&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=28&year2=2019&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=29&year2=2019&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=30&year2=2019&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=7&day=31&year2=2019&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=1&year2=2019&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=2&year2=2019&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=3&year2=2019&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=12&year2=2021&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=4&year2=2019&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=13&year2=2021&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=5&year2=2019&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=14&year2=2021&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=6&year2=2019&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=15&year2=2021&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=7&year2=2019&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=16&year2=2021&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=8&year2=2019&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=17&year2=2021&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=9&year2=2019&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=18&year2=2021&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=19&year2=2021&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=10&year2=2019&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=20&year2=2021&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=11&year2=2019&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=21&year2=2021&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=12&year2=2019&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=22&year2=2021&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=13&year2=2019&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=23&year2=2021&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=14&year2=2019&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=24&year2=2021&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=15&year2=2019&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=25&year2=2021&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=16&year2=2019&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=26&year2=2021&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=17&year2=2019&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=27&year2=2021&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=28&year2=2021&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=18&year2=2019&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=29&year2=2021&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=19&year2=2019&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=30&year2=2021&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=20&year2=2019&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=31&year2=2021&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=21&year2=2019&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=22&year2=2019&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=1&year2=2021&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=23&year2=2019&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=2&year2=2021&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=24&year2=2019&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=3&year2=2021&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=25&year2=2019&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=4&year2=2021&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=5&year2=2021&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=26&year2=2019&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=6&year2=2021&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=27&year2=2019&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=7&year2=2021&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=28&year2=2019&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=8&year2=2021&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=29&year2=2019&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=9&year2=2021&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=30&year2=2019&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=10&year2=2021&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=8&day=31&year2=2019&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=11&year2=2021&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=1&year2=2019&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=12&year2=2021&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=2&year2=2019&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=13&year2=2021&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=3&year2=2019&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=14&year2=2021&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=15&year2=2021&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=4&year2=2019&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=16&year2=2021&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=5&year2=2019&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=6&year2=2019&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=17&year2=2021&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=7&year2=2019&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=18&year2=2021&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=8&year2=2019&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=19&year2=2021&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=9&year2=2019&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=20&year2=2021&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=10&year2=2019&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=21&year2=2021&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=11&year2=2019&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=22&year2=2021&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=12&year2=2019&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=23&year2=2021&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=13&year2=2019&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=24&year2=2021&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=14&year2=2019&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=25&year2=2021&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=15&year2=2019&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=26&year2=2021&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=16&year2=2019&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=27&year2=2021&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=28&year2=2021&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=17&year2=2019&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=29&year2=2021&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=18&year2=2019&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=30&year2=2021&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=19&year2=2019&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=1&year2=2021&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=20&year2=2019&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=2&year2=2021&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=21&year2=2019&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=3&year2=2021&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=22&year2=2019&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=4&year2=2021&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=23&year2=2019&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=5&year2=2021&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=24&year2=2019&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=6&year2=2021&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=25&year2=2019&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=26&year2=2019&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=7&year2=2021&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=27&year2=2019&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=8&year2=2021&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=28&year2=2019&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=9&year2=2021&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=29&year2=2019&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=10&year2=2021&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=9&day=30&year2=2019&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=11&year2=2021&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=1&year2=2019&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=12&year2=2021&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=2&year2=2019&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=13&year2=2021&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=3&year2=2019&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=14&year2=2021&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=4&year2=2019&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=15&year2=2021&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=5&year2=2019&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=16&year2=2021&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=6&year2=2019&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=17&year2=2021&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=7&year2=2019&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=18&year2=2021&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=8&year2=2019&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=19&year2=2021&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=9&year2=2019&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=20&year2=2021&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=10&year2=2019&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=21&year2=2021&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=11&year2=2019&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=22&year2=2021&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=12&year2=2019&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=23&year2=2021&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=13&year2=2019&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=24&year2=2021&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=14&year2=2019&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=25&year2=2021&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=15&year2=2019&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=26&year2=2021&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=16&year2=2019&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=27&year2=2021&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=17&year2=2019&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=28&year2=2021&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=18&year2=2019&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=19&year2=2019&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=29&year2=2021&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=20&year2=2019&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=30&year2=2021&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=21&year2=2019&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=31&year2=2021&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=22&year2=2019&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=1&year2=2021&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=23&year2=2019&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=2&year2=2021&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=24&year2=2019&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=3&year2=2021&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=25&year2=2019&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=26&year2=2019&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=4&year2=2021&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=27&year2=2019&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=5&year2=2021&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=28&year2=2019&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=6&year2=2021&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=29&year2=2019&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=7&year2=2021&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=30&year2=2019&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=10&day=31&year2=2019&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=8&year2=2021&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=1&year2=2019&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=9&year2=2021&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=2&year2=2019&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=10&year2=2021&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=3&year2=2019&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=11&year2=2021&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=4&year2=2019&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=12&year2=2021&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=5&year2=2019&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=13&year2=2021&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=6&year2=2019&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=7&year2=2019&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=14&year2=2021&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=8&year2=2019&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=15&year2=2021&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=9&year2=2019&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=16&year2=2021&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=10&year2=2019&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=17&year2=2021&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=11&year2=2019&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=12&year2=2019&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=18&year2=2021&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=13&year2=2019&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=19&year2=2021&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=14&year2=2019&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=20&year2=2021&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=15&year2=2019&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=21&year2=2021&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=16&year2=2019&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=22&year2=2021&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=17&year2=2019&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=18&year2=2019&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=23&year2=2021&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=19&year2=2019&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=24&year2=2021&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=20&year2=2019&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=25&year2=2021&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=21&year2=2019&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=26&year2=2021&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=22&year2=2019&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=23&year2=2019&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=27&year2=2021&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=24&year2=2019&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=28&year2=2021&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=25&year2=2019&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=29&year2=2021&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=26&year2=2019&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=30&year2=2021&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=27&year2=2019&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=28&year2=2019&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=1&year2=2021&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=29&year2=2019&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=2&year2=2021&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=11&day=30&year2=2019&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=3&year2=2021&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=1&year2=2019&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=2&year2=2019&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=4&year2=2021&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=3&year2=2019&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=5&year2=2021&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=4&year2=2019&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=6&year2=2021&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=5&year2=2019&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=7&year2=2021&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=6&year2=2019&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=7&year2=2019&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=8&year2=2021&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=8&year2=2019&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=9&year2=2021&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=9&year2=2019&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=10&year2=2019&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=10&year2=2021&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=11&year2=2019&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=11&year2=2021&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=12&year2=2019&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=12&year2=2021&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=13&year2=2019&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=14&year2=2019&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=13&year2=2021&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=15&year2=2019&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=14&year2=2021&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=16&year2=2019&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=15&year2=2021&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=17&year2=2019&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=16&year2=2021&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=18&year2=2019&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=19&year2=2019&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=17&year2=2021&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=20&year2=2019&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=18&year2=2021&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=21&year2=2019&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=22&year2=2019&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=19&year2=2021&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=23&year2=2019&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=20&year2=2021&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=24&year2=2019&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=25&year2=2019&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=21&year2=2021&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=26&year2=2019&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=22&year2=2021&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=27&year2=2019&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=23&year2=2021&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=28&year2=2019&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=29&year2=2019&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=24&year2=2021&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=30&year2=2019&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=25&year2=2021&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2019&month=12&day=31&year2=2020&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=26&year2=2021&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=1&year2=2020&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=2&year2=2020&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=27&year2=2021&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=3&year2=2020&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=28&year2=2021&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=4&year2=2020&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=29&year2=2021&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=5&year2=2020&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=6&year2=2020&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=30&year2=2021&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=7&year2=2020&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=31&year2=2021&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=8&year2=2020&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=1&year2=2021&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=9&year2=2020&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=10&year2=2020&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=2&year2=2021&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=11&year2=2020&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=3&year2=2021&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=12&year2=2020&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=4&year2=2021&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=13&year2=2020&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=5&year2=2021&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=14&year2=2020&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=15&year2=2020&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=6&year2=2021&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=16&year2=2020&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=7&year2=2021&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=17&year2=2020&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=8&year2=2021&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=18&year2=2020&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=9&year2=2021&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=19&year2=2020&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=20&year2=2020&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=10&year2=2021&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=21&year2=2020&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=11&year2=2021&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=22&year2=2020&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=12&year2=2021&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=23&year2=2020&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=24&year2=2020&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=13&year2=2021&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=25&year2=2020&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=14&year2=2021&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=26&year2=2020&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=15&year2=2021&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=27&year2=2020&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=16&year2=2021&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=28&year2=2020&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=29&year2=2020&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=17&year2=2021&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=30&year2=2020&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=18&year2=2021&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=1&day=31&year2=2020&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=19&year2=2021&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=1&year2=2020&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=20&year2=2021&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=2&year2=2020&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=3&year2=2020&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=21&year2=2021&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=4&year2=2020&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=22&year2=2021&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=5&year2=2020&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=23&year2=2021&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=6&year2=2020&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=24&year2=2021&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=7&year2=2020&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=8&year2=2020&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=25&year2=2021&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=9&year2=2020&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=26&year2=2021&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=10&year2=2020&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=27&year2=2021&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=11&year2=2020&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=28&year2=2021&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=12&year2=2020&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=13&year2=2020&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=29&year2=2021&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=14&year2=2020&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=30&year2=2021&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=15&year2=2020&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=31&year2=2021&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=16&year2=2020&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=1&year2=2021&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=17&year2=2020&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=2&year2=2021&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=18&year2=2020&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=3&year2=2021&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=19&year2=2020&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=4&year2=2021&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=20&year2=2020&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=21&year2=2020&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=5&year2=2021&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=22&year2=2020&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=6&year2=2021&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=23&year2=2020&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=7&year2=2021&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=24&year2=2020&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=8&year2=2021&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=25&year2=2020&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=9&year2=2021&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=26&year2=2020&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=10&year2=2021&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=27&year2=2020&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=28&year2=2020&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=11&year2=2021&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=2&day=29&year2=2020&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=12&year2=2021&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=1&year2=2020&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=13&year2=2021&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=2&year2=2020&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=14&year2=2021&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=3&year2=2020&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=15&year2=2021&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=4&year2=2020&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=5&year2=2020&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=16&year2=2021&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=6&year2=2020&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=17&year2=2021&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=7&year2=2020&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=18&year2=2021&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=8&year2=2020&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=19&year2=2021&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=9&year2=2020&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=10&year2=2020&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=20&year2=2021&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=11&year2=2020&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=21&year2=2021&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=12&year2=2020&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=22&year2=2021&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=13&year2=2020&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=23&year2=2021&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=14&year2=2020&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=24&year2=2021&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=15&year2=2020&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=25&year2=2021&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=16&year2=2020&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=17&year2=2020&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=26&year2=2021&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=18&year2=2020&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=27&year2=2021&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=19&year2=2020&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=28&year2=2021&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=20&year2=2020&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=29&year2=2021&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=21&year2=2020&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=30&year2=2021&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=22&year2=2020&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=1&year2=2021&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=23&year2=2020&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=2&year2=2021&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=24&year2=2020&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=3&year2=2021&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=25&year2=2020&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=4&year2=2021&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=26&year2=2020&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=5&year2=2021&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=27&year2=2020&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=6&year2=2021&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=28&year2=2020&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=7&year2=2021&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=29&year2=2020&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=30&year2=2020&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=8&year2=2021&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=3&day=31&year2=2020&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=9&year2=2021&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=1&year2=2020&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=10&year2=2021&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=2&year2=2020&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=11&year2=2021&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=3&year2=2020&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=12&year2=2021&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=4&year2=2020&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=13&year2=2021&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=5&year2=2020&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=14&year2=2021&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=6&year2=2020&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=15&year2=2021&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=7&year2=2020&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=16&year2=2021&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=17&year2=2021&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=8&year2=2020&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=18&year2=2021&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=9&year2=2020&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=19&year2=2021&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=10&year2=2020&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=20&year2=2021&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=11&year2=2020&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=21&year2=2021&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=12&year2=2020&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=22&year2=2021&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=13&year2=2020&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=23&year2=2021&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=14&year2=2020&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=24&year2=2021&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=15&year2=2020&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=25&year2=2021&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=16&year2=2020&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=26&year2=2021&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=17&year2=2020&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=18&year2=2020&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=27&year2=2021&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=19&year2=2020&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=28&year2=2021&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=20&year2=2020&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=29&year2=2021&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=21&year2=2020&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=30&year2=2021&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=31&year2=2021&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=22&year2=2020&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=1&year2=2021&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=23&year2=2020&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=2&year2=2021&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=24&year2=2020&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=3&year2=2021&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=25&year2=2020&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=4&year2=2021&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=26&year2=2020&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=5&year2=2021&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=27&year2=2020&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=6&year2=2021&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=28&year2=2020&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=7&year2=2021&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=29&year2=2020&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=8&year2=2021&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=4&day=30&year2=2020&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=9&year2=2021&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=1&year2=2020&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=10&year2=2021&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=2&year2=2020&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=11&year2=2021&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=3&year2=2020&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=12&year2=2021&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=4&year2=2020&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=13&year2=2021&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=5&year2=2020&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=14&year2=2021&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=6&year2=2020&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=15&year2=2021&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=7&year2=2020&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=16&year2=2021&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=17&year2=2021&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=8&year2=2020&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=18&year2=2021&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=9&year2=2020&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=19&year2=2021&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=10&year2=2020&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=20&year2=2021&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=11&year2=2020&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=21&year2=2021&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=12&year2=2020&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=22&year2=2021&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=13&year2=2020&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=23&year2=2021&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=14&year2=2020&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=24&year2=2021&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=15&year2=2020&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=25&year2=2021&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=16&year2=2020&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=26&year2=2021&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=17&year2=2020&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=27&year2=2021&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=18&year2=2020&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=28&year2=2021&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=19&year2=2020&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=29&year2=2021&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=20&year2=2020&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=30&year2=2021&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=21&year2=2020&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=1&year2=2021&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=22&year2=2020&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=2&year2=2021&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=23&year2=2020&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=3&year2=2021&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=24&year2=2020&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=4&year2=2021&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=5&year2=2021&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=25&year2=2020&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=6&year2=2021&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=26&year2=2020&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=7&year2=2021&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=27&year2=2020&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=8&year2=2021&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=28&year2=2020&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=9&year2=2021&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=10&year2=2021&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=29&year2=2020&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=11&year2=2021&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=30&year2=2020&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=12&year2=2021&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=5&day=31&year2=2020&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=13&year2=2021&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=1&year2=2020&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=14&year2=2021&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=2&year2=2020&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=15&year2=2021&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=3&year2=2020&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=16&year2=2021&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=4&year2=2020&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=17&year2=2021&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=5&year2=2020&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=18&year2=2021&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=6&year2=2020&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=19&year2=2021&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=7&year2=2020&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=20&year2=2021&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=8&year2=2020&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=21&year2=2021&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=9&year2=2020&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=22&year2=2021&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=10&year2=2020&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=23&year2=2021&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=24&year2=2021&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=11&year2=2020&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=25&year2=2021&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=12&year2=2020&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=26&year2=2021&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=13&year2=2020&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=27&year2=2021&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=14&year2=2020&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=28&year2=2021&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=29&year2=2021&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=15&year2=2020&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=30&year2=2021&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=16&year2=2020&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=31&year2=2022&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=17&year2=2020&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=1&year2=2022&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=18&year2=2020&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=2&year2=2022&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=19&year2=2020&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=3&year2=2022&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=20&year2=2020&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=4&year2=2022&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=21&year2=2020&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=5&year2=2022&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=22&year2=2020&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=6&year2=2022&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=23&year2=2020&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=7&year2=2022&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=8&year2=2022&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=24&year2=2020&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=9&year2=2022&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=25&year2=2020&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=10&year2=2022&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=26&year2=2020&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=11&year2=2022&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=27&year2=2020&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=12&year2=2022&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=28&year2=2020&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=13&year2=2022&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=29&year2=2020&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=14&year2=2022&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=6&day=30&year2=2020&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=15&year2=2022&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=1&year2=2020&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=16&year2=2022&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=17&year2=2022&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=2&year2=2020&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=18&year2=2022&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=3&year2=2020&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=19&year2=2022&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=4&year2=2020&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=20&year2=2022&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=5&year2=2020&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=21&year2=2022&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=6&year2=2020&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=22&year2=2022&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=23&year2=2022&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=7&year2=2020&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=24&year2=2022&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=8&year2=2020&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=25&year2=2022&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=9&year2=2020&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=26&year2=2022&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=10&year2=2020&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=27&year2=2022&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=11&year2=2020&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=28&year2=2022&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=12&year2=2020&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=29&year2=2022&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=13&year2=2020&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=30&year2=2022&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=31&year2=2022&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=14&year2=2020&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=1&year2=2022&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=15&year2=2020&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=2&year2=2022&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=16&year2=2020&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=3&year2=2022&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=17&year2=2020&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=4&year2=2022&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=18&year2=2020&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=5&year2=2022&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=19&year2=2020&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=6&year2=2022&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=20&year2=2020&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=7&year2=2022&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=21&year2=2020&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=8&year2=2022&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=22&year2=2020&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=9&year2=2022&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=23&year2=2020&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=10&year2=2022&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=24&year2=2020&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=11&year2=2022&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=25&year2=2020&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=12&year2=2022&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=26&year2=2020&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=13&year2=2022&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=27&year2=2020&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=14&year2=2022&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=15&year2=2022&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=28&year2=2020&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=16&year2=2022&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=29&year2=2020&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=17&year2=2022&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=30&year2=2020&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=18&year2=2022&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=7&day=31&year2=2020&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=19&year2=2022&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=1&year2=2020&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=20&year2=2022&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=2&year2=2020&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=21&year2=2022&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=22&year2=2022&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=3&year2=2020&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=23&year2=2022&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=4&year2=2020&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=24&year2=2022&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=5&year2=2020&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=25&year2=2022&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=6&year2=2020&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=26&year2=2022&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=7&year2=2020&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=27&year2=2022&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=8&year2=2020&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=9&year2=2020&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=1&year2=2022&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=10&year2=2020&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=2&year2=2022&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=11&year2=2020&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=3&year2=2022&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=12&year2=2020&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=4&year2=2022&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=5&year2=2022&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=13&year2=2020&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=6&year2=2022&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=14&year2=2020&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=7&year2=2022&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=15&year2=2020&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=8&year2=2022&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=16&year2=2020&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=9&year2=2022&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=17&year2=2020&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=10&year2=2022&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=18&year2=2020&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=11&year2=2022&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=19&year2=2020&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=12&year2=2022&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=20&year2=2020&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=13&year2=2022&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=21&year2=2020&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=14&year2=2022&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=22&year2=2020&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=15&year2=2022&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=23&year2=2020&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=16&year2=2022&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=24&year2=2020&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=17&year2=2022&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=18&year2=2022&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=25&year2=2020&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=19&year2=2022&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=26&year2=2020&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=20&year2=2022&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=27&year2=2020&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=28&year2=2020&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=21&year2=2022&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=29&year2=2020&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=22&year2=2022&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=30&year2=2020&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=23&year2=2022&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=8&day=31&year2=2020&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=24&year2=2022&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=1&year2=2020&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=25&year2=2022&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=2&year2=2020&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=26&year2=2022&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=3&year2=2020&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=27&year2=2022&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=4&year2=2020&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=28&year2=2022&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=29&year2=2022&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=5&year2=2020&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=30&year2=2022&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=6&year2=2020&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=31&year2=2022&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=7&year2=2020&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=1&year2=2022&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=8&year2=2020&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=2&year2=2022&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=9&year2=2020&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=3&year2=2022&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=10&year2=2020&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=4&year2=2022&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=11&year2=2020&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=5&year2=2022&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=12&year2=2020&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=6&year2=2022&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=13&year2=2020&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=7&year2=2022&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=14&year2=2020&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=8&year2=2022&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=15&year2=2020&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=9&year2=2022&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=16&year2=2020&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=10&year2=2022&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=17&year2=2020&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=11&year2=2022&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=18&year2=2020&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=12&year2=2022&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=19&year2=2020&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=13&year2=2022&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=20&year2=2020&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=14&year2=2022&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=21&year2=2020&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=15&year2=2022&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=22&year2=2020&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=16&year2=2022&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=23&year2=2020&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=17&year2=2022&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=24&year2=2020&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=18&year2=2022&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=25&year2=2020&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=19&year2=2022&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=26&year2=2020&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=20&year2=2022&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=27&year2=2020&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=21&year2=2022&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=28&year2=2020&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=22&year2=2022&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=29&year2=2020&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=23&year2=2022&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=9&day=30&year2=2020&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=24&year2=2022&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=1&year2=2020&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=25&year2=2022&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=2&year2=2020&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=26&year2=2022&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=3&year2=2020&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=27&year2=2022&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=4&year2=2020&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=28&year2=2022&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=5&year2=2020&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=29&year2=2022&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=6&year2=2020&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=30&year2=2022&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=7&year2=2020&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=1&year2=2022&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=8&year2=2020&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=2&year2=2022&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=9&year2=2020&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=3&year2=2022&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=10&year2=2020&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=4&year2=2022&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=11&year2=2020&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=5&year2=2022&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=12&year2=2020&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=6&year2=2022&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=13&year2=2020&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=7&year2=2022&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=14&year2=2020&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=8&year2=2022&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=15&year2=2020&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=9&year2=2022&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=16&year2=2020&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=10&year2=2022&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=17&year2=2020&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=11&year2=2022&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=18&year2=2020&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=19&year2=2020&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=12&year2=2022&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=20&year2=2020&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=13&year2=2022&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=21&year2=2020&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=14&year2=2022&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=22&year2=2020&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=15&year2=2022&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=23&year2=2020&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=16&year2=2022&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=24&year2=2020&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=17&year2=2022&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=25&year2=2020&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=26&year2=2020&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=18&year2=2022&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=27&year2=2020&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=19&year2=2022&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=28&year2=2020&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=20&year2=2022&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=29&year2=2020&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=21&year2=2022&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=30&year2=2020&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=22&year2=2022&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=10&day=31&year2=2020&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=23&year2=2022&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=1&year2=2020&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=24&year2=2022&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=2&year2=2020&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=25&year2=2022&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=3&year2=2020&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=26&year2=2022&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=4&year2=2020&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=27&year2=2022&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=5&year2=2020&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=28&year2=2022&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=6&year2=2020&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=29&year2=2022&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=7&year2=2020&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=30&year2=2022&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=8&year2=2020&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=31&year2=2022&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=9&year2=2020&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=1&year2=2022&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=10&year2=2020&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=2&year2=2022&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=11&year2=2020&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=12&year2=2020&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=3&year2=2022&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=13&year2=2020&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=4&year2=2022&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=14&year2=2020&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=5&year2=2022&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=15&year2=2020&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=6&year2=2022&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=16&year2=2020&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=7&year2=2022&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=17&year2=2020&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=8&year2=2022&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=18&year2=2020&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=9&year2=2022&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=19&year2=2020&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=10&year2=2022&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=20&year2=2020&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=11&year2=2022&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=21&year2=2020&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=12&year2=2022&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=22&year2=2020&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=13&year2=2022&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=23&year2=2020&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=14&year2=2022&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=24&year2=2020&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=15&year2=2022&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=25&year2=2020&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=16&year2=2022&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=26&year2=2020&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=27&year2=2020&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=17&year2=2022&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=28&year2=2020&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=18&year2=2022&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=29&year2=2020&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=19&year2=2022&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=11&day=30&year2=2020&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=20&year2=2022&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=1&year2=2020&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=21&year2=2022&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=2&year2=2020&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=22&year2=2022&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=3&year2=2020&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=23&year2=2022&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=4&year2=2020&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=24&year2=2022&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=5&year2=2020&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=6&year2=2020&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=25&year2=2022&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=7&year2=2020&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=26&year2=2022&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=8&year2=2020&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=27&year2=2022&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=9&year2=2020&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=28&year2=2022&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=10&year2=2020&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=29&year2=2022&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=11&year2=2020&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=12&year2=2020&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=30&year2=2022&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=13&year2=2020&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=1&year2=2022&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=14&year2=2020&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=2&year2=2022&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=15&year2=2020&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=16&year2=2020&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=3&year2=2022&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=17&year2=2020&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=4&year2=2022&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=18&year2=2020&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=5&year2=2022&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=19&year2=2020&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=6&year2=2022&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=20&year2=2020&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=7&year2=2022&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=21&year2=2020&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=22&year2=2020&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=8&year2=2022&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=23&year2=2020&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=9&year2=2022&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=24&year2=2020&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=10&year2=2022&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=25&year2=2020&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=11&year2=2022&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=26&year2=2020&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=27&year2=2020&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=12&year2=2022&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=28&year2=2020&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=13&year2=2022&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=29&year2=2020&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=14&year2=2022&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=30&year2=2020&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=15&year2=2022&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2020&month=12&day=31&year2=2021&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=1&year2=2021&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=16&year2=2022&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=2&year2=2021&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=17&year2=2022&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=3&year2=2021&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=18&year2=2022&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=4&year2=2021&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=19&year2=2022&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=5&year2=2021&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=6&year2=2021&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=20&year2=2022&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=7&year2=2021&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=21&year2=2022&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=8&year2=2021&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=22&year2=2022&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=9&year2=2021&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=10&year2=2021&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=23&year2=2022&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=11&year2=2021&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=24&year2=2022&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=12&year2=2021&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=25&year2=2022&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=13&year2=2021&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=26&year2=2022&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=14&year2=2021&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=27&year2=2022&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=15&year2=2021&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=16&year2=2021&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=28&year2=2022&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=17&year2=2021&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=29&year2=2022&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=18&year2=2021&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=30&year2=2022&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=19&year2=2021&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=31&year2=2022&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=20&year2=2021&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=1&year2=2022&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=21&year2=2021&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=2&year2=2022&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=22&year2=2021&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=3&year2=2022&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=23&year2=2021&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=4&year2=2022&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=24&year2=2021&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=25&year2=2021&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=5&year2=2022&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=26&year2=2021&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=6&year2=2022&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=27&year2=2021&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=7&year2=2022&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=28&year2=2021&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=8&year2=2022&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=29&year2=2021&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=30&year2=2021&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=9&year2=2022&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=1&day=31&year2=2021&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=10&year2=2022&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=1&year2=2021&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=11&year2=2022&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=2&year2=2021&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=12&year2=2022&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=3&year2=2021&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=13&year2=2022&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=4&year2=2021&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=14&year2=2022&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=5&year2=2021&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=6&year2=2021&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=15&year2=2022&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=7&year2=2021&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=16&year2=2022&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=8&year2=2021&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=17&year2=2022&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=9&year2=2021&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=18&year2=2022&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=10&year2=2021&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=19&year2=2022&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=11&year2=2021&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=20&year2=2022&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=12&year2=2021&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=21&year2=2022&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=13&year2=2021&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=22&year2=2022&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=14&year2=2021&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=15&year2=2021&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=23&year2=2022&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=16&year2=2021&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=24&year2=2022&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=17&year2=2021&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=25&year2=2022&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=18&year2=2021&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=26&year2=2022&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=19&year2=2021&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=27&year2=2022&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=20&year2=2021&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=28&year2=2022&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=21&year2=2021&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=29&year2=2022&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=22&year2=2021&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=30&year2=2022&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=23&year2=2021&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=31&year2=2022&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=24&year2=2021&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=1&year2=2022&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=25&year2=2021&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=2&year2=2022&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=26&year2=2021&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=3&year2=2022&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=27&year2=2021&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=4&year2=2022&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=2&day=28&year2=2021&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=5&year2=2022&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=6&year2=2022&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=7&year2=2022&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=8&year2=2022&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=9&year2=2022&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=10&year2=2022&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=11&year2=2022&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=12&year2=2022&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=13&year2=2022&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=14&year2=2022&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=15&year2=2022&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=16&year2=2022&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=11&year2=2021&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=17&year2=2022&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=12&year2=2021&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=18&year2=2022&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=13&year2=2021&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=19&year2=2022&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=14&year2=2021&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=20&year2=2022&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=15&year2=2021&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=21&year2=2022&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=16&year2=2021&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=22&year2=2022&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=17&year2=2021&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=23&year2=2022&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=18&year2=2021&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=24&year2=2022&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=19&year2=2021&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=25&year2=2022&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=20&year2=2021&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=26&year2=2022&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=21&year2=2021&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=27&year2=2022&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=28&year2=2022&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=22&year2=2021&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=29&year2=2022&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=23&year2=2021&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=30&year2=2022&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=24&year2=2021&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=1&year2=2022&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=25&year2=2021&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=2&year2=2022&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=26&year2=2021&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=3&year2=2022&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=27&year2=2021&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=4&year2=2022&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=28&year2=2021&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=5&year2=2022&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=29&year2=2021&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=6&year2=2022&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=7&year2=2022&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=30&year2=2021&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=8&year2=2022&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=3&day=31&year2=2021&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=9&year2=2022&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=1&year2=2021&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=10&year2=2022&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=2&year2=2021&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=11&year2=2022&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=3&year2=2021&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=12&year2=2022&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=13&year2=2022&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=4&year2=2021&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=14&year2=2022&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=5&year2=2021&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=15&year2=2022&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=6&year2=2021&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=16&year2=2022&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=7&year2=2021&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=17&year2=2022&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=8&year2=2021&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=18&year2=2022&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=9&year2=2021&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=19&year2=2022&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=20&year2=2022&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=10&year2=2021&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=21&year2=2022&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=11&year2=2021&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=22&year2=2022&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=12&year2=2021&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=23&year2=2022&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=13&year2=2021&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=24&year2=2022&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=14&year2=2021&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=25&year2=2022&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=26&year2=2022&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=15&year2=2021&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=27&year2=2022&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=16&year2=2021&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=28&year2=2022&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=17&year2=2021&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=29&year2=2022&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=18&year2=2021&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=30&year2=2022&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=31&year2=2022&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=19&year2=2021&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=1&year2=2022&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=20&year2=2021&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=2&year2=2022&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=21&year2=2021&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=3&year2=2022&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=4&year2=2022&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=22&year2=2021&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=5&year2=2022&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=23&year2=2021&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=6&year2=2022&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=24&year2=2021&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=7&year2=2022&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=25&year2=2021&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=8&year2=2022&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=9&year2=2022&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=26&year2=2021&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=10&year2=2022&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=27&year2=2021&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=11&year2=2022&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=28&year2=2021&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=12&year2=2022&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=29&year2=2021&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=13&year2=2022&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=4&day=30&year2=2021&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=14&year2=2022&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=1&year2=2021&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=15&year2=2022&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=16&year2=2022&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=2&year2=2021&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=17&year2=2022&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=3&year2=2021&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=18&year2=2022&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=4&year2=2021&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=19&year2=2022&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=5&year2=2021&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=20&year2=2022&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=6&year2=2021&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=21&year2=2022&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=7&year2=2021&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=22&year2=2022&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=23&year2=2022&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=8&year2=2021&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=24&year2=2022&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=9&year2=2021&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=25&year2=2022&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=10&year2=2021&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=26&year2=2022&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=27&year2=2022&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=11&year2=2021&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=28&year2=2022&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=29&year2=2022&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=12&year2=2021&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=30&year2=2022&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=13&year2=2021&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=1&year2=2022&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=14&year2=2021&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=2&year2=2022&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=3&year2=2022&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=15&year2=2021&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=4&year2=2022&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=16&year2=2021&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=5&year2=2022&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=17&year2=2021&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=6&year2=2022&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=7&year2=2022&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=18&year2=2021&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=8&year2=2022&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=19&year2=2021&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=9&year2=2022&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=20&year2=2021&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=10&year2=2022&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=11&year2=2022&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=21&year2=2021&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=12&year2=2022&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=22&year2=2021&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=13&year2=2022&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=23&year2=2021&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=14&year2=2022&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=24&year2=2021&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=15&year2=2022&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=16&year2=2022&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=25&year2=2021&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=17&year2=2022&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=26&year2=2021&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=18&year2=2022&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=19&year2=2022&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=27&year2=2021&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=20&year2=2022&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=28&year2=2021&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=21&year2=2022&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=29&year2=2021&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=22&year2=2022&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=23&year2=2022&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=30&year2=2021&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=24&year2=2022&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=5&day=31&year2=2021&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=25&year2=2022&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=26&year2=2022&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=1&year2=2021&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=27&year2=2022&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=2&year2=2021&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=28&year2=2022&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=3&year2=2021&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=29&year2=2022&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=30&year2=2022&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=4&year2=2021&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=31&year2=2023&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=5&year2=2021&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=1&year2=2023&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=2&year2=2023&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=6&year2=2021&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=3&year2=2023&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=7&year2=2021&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=4&year2=2023&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=8&year2=2021&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=5&year2=2023&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=6&year2=2023&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=9&year2=2021&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=7&year2=2023&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=10&year2=2021&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=8&year2=2023&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=9&year2=2023&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=11&year2=2021&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=10&year2=2023&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=12&year2=2021&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=11&year2=2023&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=12&year2=2023&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=13&year2=2021&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=13&year2=2023&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=14&year2=2021&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=14&year2=2023&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=15&year2=2023&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=15&year2=2021&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=16&year2=2023&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=16&year2=2021&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=17&year2=2023&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=18&year2=2023&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=17&year2=2021&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=19&year2=2023&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=18&year2=2021&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=20&year2=2023&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=19&year2=2021&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=21&year2=2023&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=20&year2=2021&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=22&year2=2023&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=23&year2=2023&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=21&year2=2021&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=24&year2=2023&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=22&year2=2021&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=25&year2=2023&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=26&year2=2023&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=23&year2=2021&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=27&year2=2023&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=24&year2=2021&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=28&year2=2023&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=25&year2=2021&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=29&year2=2023&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=26&year2=2021&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=30&year2=2023&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=31&year2=2023&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=27&year2=2021&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=1&year2=2023&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=28&year2=2021&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=2&year2=2023&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=29&year2=2021&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=3&year2=2023&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=4&year2=2023&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=6&day=30&year2=2021&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=5&year2=2023&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=1&year2=2021&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=6&year2=2023&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=2&year2=2021&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=7&year2=2023&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=3&year2=2021&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=8&year2=2023&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=9&year2=2023&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=4&year2=2021&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=10&year2=2023&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=5&year2=2021&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=11&year2=2023&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=6&year2=2021&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=12&year2=2023&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=7&year2=2021&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=13&year2=2023&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=14&year2=2023&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=8&year2=2021&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=15&year2=2023&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=9&year2=2021&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=16&year2=2023&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=10&year2=2021&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=17&year2=2023&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=18&year2=2023&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=11&year2=2021&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=19&year2=2023&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=12&year2=2021&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=20&year2=2023&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=13&year2=2021&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=21&year2=2023&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=22&year2=2023&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=14&year2=2021&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=23&year2=2023&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=15&year2=2021&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=24&year2=2023&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=25&year2=2023&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=16&year2=2021&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=26&year2=2023&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=17&year2=2021&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=27&year2=2023&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=28&year2=2023&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=18&year2=2021&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=1&year2=2023&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=19&year2=2021&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=2&year2=2023&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=20&year2=2021&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=3&year2=2023&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=4&year2=2023&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=21&year2=2021&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=5&year2=2023&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=22&year2=2021&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=6&year2=2023&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=7&year2=2023&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=23&year2=2021&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=8&year2=2023&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=24&year2=2021&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=9&year2=2023&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=25&year2=2021&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=10&year2=2023&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=11&year2=2023&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=26&year2=2021&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=12&year2=2023&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=27&year2=2021&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=13&year2=2023&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=14&year2=2023&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=28&year2=2021&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=15&year2=2023&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=29&year2=2021&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=16&year2=2023&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=30&year2=2021&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=17&year2=2023&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=18&year2=2023&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=7&day=31&year2=2021&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=19&year2=2023&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=1&year2=2021&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=20&year2=2023&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=2&year2=2021&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=21&year2=2023&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=22&year2=2023&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=3&year2=2021&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=23&year2=2023&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=4&year2=2021&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=24&year2=2023&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=5&year2=2021&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=25&year2=2023&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=26&year2=2023&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=6&year2=2021&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=27&year2=2023&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=7&year2=2021&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=28&year2=2023&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=8&year2=2021&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=29&year2=2023&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=9&year2=2021&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=30&year2=2023&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=31&year2=2023&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=10&year2=2021&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=1&year2=2023&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=11&year2=2021&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=2&year2=2023&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=12&year2=2021&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=3&year2=2023&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=4&year2=2023&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=13&year2=2021&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=5&year2=2023&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=14&year2=2021&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=6&year2=2023&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=15&year2=2021&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=7&year2=2023&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=16&year2=2021&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=8&year2=2023&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=9&year2=2023&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=17&year2=2021&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=10&year2=2023&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=18&year2=2021&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=11&year2=2023&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=19&year2=2021&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=12&year2=2023&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=20&year2=2021&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=13&year2=2023&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=14&year2=2023&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=21&year2=2021&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=15&year2=2023&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=22&year2=2021&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=16&year2=2023&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=23&year2=2021&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=17&year2=2023&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=18&year2=2023&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=24&year2=2021&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=19&year2=2023&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=25&year2=2021&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=20&year2=2023&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=26&year2=2021&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=21&year2=2023&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=27&year2=2021&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=22&year2=2023&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=23&year2=2023&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=28&year2=2021&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=24&year2=2023&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=29&year2=2021&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=25&year2=2023&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=30&year2=2021&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=26&year2=2023&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=27&year2=2023&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=8&day=31&year2=2021&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=28&year2=2023&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=1&year2=2021&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=29&year2=2023&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=2&year2=2021&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=30&year2=2023&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=1&year2=2023&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=3&year2=2021&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=2&year2=2023&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=4&year2=2021&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=3&year2=2023&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=5&year2=2021&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=4&year2=2023&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=5&year2=2023&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=6&year2=2021&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=6&year2=2023&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=7&year2=2021&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=7&year2=2023&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=8&year2=2021&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=8&year2=2023&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=9&year2=2023&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=9&year2=2021&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=10&year2=2023&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=10&year2=2021&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=11&year2=2023&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=11&year2=2021&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=12&year2=2023&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=12&year2=2021&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=13&year2=2023&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=14&year2=2023&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=13&year2=2021&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=15&year2=2023&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=14&year2=2021&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=16&year2=2023&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=15&year2=2021&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=17&year2=2023&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=16&year2=2021&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=18&year2=2023&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=17&year2=2021&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=19&year2=2023&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=20&year2=2023&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=18&year2=2021&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=21&year2=2023&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=19&year2=2021&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=22&year2=2023&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=20&year2=2021&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=23&year2=2023&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=21&year2=2021&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=24&year2=2023&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=22&year2=2021&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=25&year2=2023&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=23&year2=2021&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=26&year2=2023&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=27&year2=2023&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=24&year2=2021&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=28&year2=2023&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=25&year2=2021&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=29&year2=2023&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=26&year2=2021&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=30&year2=2023&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=27&year2=2021&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=31&year2=2023&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=1&year2=2023&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=28&year2=2021&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=2&year2=2023&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=29&year2=2021&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=3&year2=2023&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=9&day=30&year2=2021&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=4&year2=2023&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=1&year2=2021&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=5&year2=2023&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=2&year2=2021&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=6&year2=2023&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=7&year2=2023&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=3&year2=2021&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=8&year2=2023&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=4&year2=2021&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=9&year2=2023&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=5&year2=2021&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=10&year2=2023&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=6&year2=2021&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=11&year2=2023&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=7&year2=2021&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=12&year2=2023&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=8&year2=2021&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=13&year2=2023&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=14&year2=2023&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=9&year2=2021&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=15&year2=2023&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=10&year2=2021&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=16&year2=2023&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=11&year2=2021&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=17&year2=2023&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=12&year2=2021&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=18&year2=2023&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=13&year2=2021&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=19&year2=2023&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=14&year2=2021&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=20&year2=2023&month2=6&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=21&year2=2023&month2=6&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=15&year2=2021&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=22&year2=2023&month2=6&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=16&year2=2021&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=23&year2=2023&month2=6&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=17&year2=2021&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=24&year2=2023&month2=6&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=18&year2=2021&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=25&year2=2023&month2=6&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=19&year2=2021&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=26&year2=2023&month2=6&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=20&year2=2021&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=27&year2=2023&month2=6&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=21&year2=2021&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=28&year2=2023&month2=6&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=22&year2=2021&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=29&year2=2023&month2=6&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=23&year2=2021&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=30&year2=2023&month2=7&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=24&year2=2021&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=1&year2=2023&month2=7&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=25&year2=2021&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=2&year2=2023&month2=7&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=3&year2=2023&month2=7&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=26&year2=2021&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=4&year2=2023&month2=7&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=27&year2=2021&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=5&year2=2023&month2=7&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=28&year2=2021&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=6&year2=2023&month2=7&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=29&year2=2021&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=7&year2=2023&month2=7&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=30&year2=2021&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=8&year2=2023&month2=7&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=10&day=31&year2=2021&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=9&year2=2023&month2=7&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=1&year2=2021&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=10&year2=2023&month2=7&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=2&year2=2021&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=11&year2=2023&month2=7&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=3&year2=2021&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=12&year2=2023&month2=7&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=4&year2=2021&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=13&year2=2023&month2=7&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=5&year2=2021&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=14&year2=2023&month2=7&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=6&year2=2021&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=15&year2=2023&month2=7&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=16&year2=2023&month2=7&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=7&year2=2021&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=17&year2=2023&month2=7&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=8&year2=2021&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=18&year2=2023&month2=7&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=9&year2=2021&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=19&year2=2023&month2=7&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=10&year2=2021&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=20&year2=2023&month2=7&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=11&year2=2021&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=21&year2=2023&month2=7&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=12&year2=2021&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=22&year2=2023&month2=7&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=13&year2=2021&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=23&year2=2023&month2=7&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=14&year2=2021&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=24&year2=2023&month2=7&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=15&year2=2021&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=25&year2=2023&month2=7&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=16&year2=2021&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=26&year2=2023&month2=7&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=17&year2=2021&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=27&year2=2023&month2=7&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=18&year2=2021&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=28&year2=2023&month2=7&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=19&year2=2021&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=29&year2=2023&month2=7&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=20&year2=2021&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=30&year2=2023&month2=7&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=21&year2=2021&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=31&year2=2023&month2=8&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=22&year2=2021&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=1&year2=2023&month2=8&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=23&year2=2021&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=2&year2=2023&month2=8&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=24&year2=2021&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=3&year2=2023&month2=8&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=4&year2=2023&month2=8&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=25&year2=2021&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=5&year2=2023&month2=8&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=26&year2=2021&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=6&year2=2023&month2=8&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=27&year2=2021&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=7&year2=2023&month2=8&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=28&year2=2021&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=8&year2=2023&month2=8&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=29&year2=2021&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=9&year2=2023&month2=8&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=11&day=30&year2=2021&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=10&year2=2023&month2=8&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=1&year2=2021&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=11&year2=2023&month2=8&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=2&year2=2021&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=12&year2=2023&month2=8&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=13&year2=2023&month2=8&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=3&year2=2021&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=14&year2=2023&month2=8&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=4&year2=2021&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=15&year2=2023&month2=8&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=5&year2=2021&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=16&year2=2023&month2=8&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=6&year2=2021&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=17&year2=2023&month2=8&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=7&year2=2021&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=18&year2=2023&month2=8&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=8&year2=2021&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=19&year2=2023&month2=8&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=9&year2=2021&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=20&year2=2023&month2=8&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=10&year2=2021&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=21&year2=2023&month2=8&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=11&year2=2021&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=22&year2=2023&month2=8&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=12&year2=2021&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=23&year2=2023&month2=8&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=13&year2=2021&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=24&year2=2023&month2=8&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=25&year2=2023&month2=8&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=14&year2=2021&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=26&year2=2023&month2=8&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=15&year2=2021&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=27&year2=2023&month2=8&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=16&year2=2021&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=28&year2=2023&month2=8&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=17&year2=2021&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=29&year2=2023&month2=8&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=18&year2=2021&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=30&year2=2023&month2=8&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=19&year2=2021&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=31&year2=2023&month2=9&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=20&year2=2021&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=1&year2=2023&month2=9&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=21&year2=2021&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=2&year2=2023&month2=9&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=22&year2=2021&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=3&year2=2023&month2=9&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=23&year2=2021&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=4&year2=2023&month2=9&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=24&year2=2021&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=5&year2=2023&month2=9&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=25&year2=2021&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=6&year2=2023&month2=9&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=26&year2=2021&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=7&year2=2023&month2=9&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=27&year2=2021&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=8&year2=2023&month2=9&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=28&year2=2021&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=9&year2=2023&month2=9&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=29&year2=2021&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=10&year2=2023&month2=9&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=30&year2=2021&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=11&year2=2023&month2=9&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=12&year2=2023&month2=9&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2021&month=12&day=31&year2=2022&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=13&year2=2023&month2=9&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=1&year2=2022&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=14&year2=2023&month2=9&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=2&year2=2022&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=15&year2=2023&month2=9&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=3&year2=2022&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=16&year2=2023&month2=9&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=4&year2=2022&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=17&year2=2023&month2=9&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=5&year2=2022&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=18&year2=2023&month2=9&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=6&year2=2022&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=19&year2=2023&month2=9&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=20&year2=2023&month2=9&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=7&year2=2022&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=21&year2=2023&month2=9&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=8&year2=2022&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=22&year2=2023&month2=9&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=9&year2=2022&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=23&year2=2023&month2=9&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=10&year2=2022&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=24&year2=2023&month2=9&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=11&year2=2022&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=25&year2=2023&month2=9&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=12&year2=2022&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=26&year2=2023&month2=9&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=27&year2=2023&month2=9&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=13&year2=2022&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=28&year2=2023&month2=9&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=14&year2=2022&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=29&year2=2023&month2=9&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=15&year2=2022&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=30&year2=2023&month2=10&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=16&year2=2022&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=1&year2=2023&month2=10&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=17&year2=2022&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=2&year2=2023&month2=10&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=3&year2=2023&month2=10&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=18&year2=2022&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=4&year2=2023&month2=10&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=19&year2=2022&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=5&year2=2023&month2=10&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=20&year2=2022&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=6&year2=2023&month2=10&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=21&year2=2022&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=7&year2=2023&month2=10&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=22&year2=2022&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=8&year2=2023&month2=10&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=9&year2=2023&month2=10&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=23&year2=2022&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=10&year2=2023&month2=10&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=24&year2=2022&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=11&year2=2023&month2=10&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=25&year2=2022&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=12&year2=2023&month2=10&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=13&year2=2023&month2=10&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=26&year2=2022&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=14&year2=2023&month2=10&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=27&year2=2022&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=15&year2=2023&month2=10&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=28&year2=2022&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=16&year2=2023&month2=10&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=17&year2=2023&month2=10&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=29&year2=2022&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=18&year2=2023&month2=10&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=30&year2=2022&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=19&year2=2023&month2=10&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=1&day=31&year2=2022&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=20&year2=2023&month2=10&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=1&year2=2022&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=21&year2=2023&month2=10&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=22&year2=2023&month2=10&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=2&year2=2022&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=23&year2=2023&month2=10&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=3&year2=2022&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=24&year2=2023&month2=10&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=4&year2=2022&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=25&year2=2023&month2=10&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=26&year2=2023&month2=10&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=5&year2=2022&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=27&year2=2023&month2=10&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=6&year2=2022&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=28&year2=2023&month2=10&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=7&year2=2022&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=29&year2=2023&month2=10&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=30&year2=2023&month2=10&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=8&year2=2022&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=31&year2=2023&month2=11&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=9&year2=2022&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=1&year2=2023&month2=11&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=2&year2=2023&month2=11&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=10&year2=2022&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=3&year2=2023&month2=11&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=11&year2=2022&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=4&year2=2023&month2=11&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=5&year2=2023&month2=11&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=12&year2=2022&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=6&year2=2023&month2=11&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=13&year2=2022&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=7&year2=2023&month2=11&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=14&year2=2022&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=8&year2=2023&month2=11&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=9&year2=2023&month2=11&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=15&year2=2022&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=10&year2=2023&month2=11&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=16&year2=2022&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=11&year2=2023&month2=11&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=12&year2=2023&month2=11&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=17&year2=2022&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=13&year2=2023&month2=11&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=18&year2=2022&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=14&year2=2023&month2=11&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=15&year2=2023&month2=11&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=19&year2=2022&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=16&year2=2023&month2=11&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=20&year2=2022&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=17&year2=2023&month2=11&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=21&year2=2022&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=18&year2=2023&month2=11&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=19&year2=2023&month2=11&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=22&year2=2022&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=20&year2=2023&month2=11&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=23&year2=2022&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=21&year2=2023&month2=11&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=24&year2=2022&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=22&year2=2023&month2=11&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=23&year2=2023&month2=11&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=25&year2=2022&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=24&year2=2023&month2=11&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=26&year2=2022&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=25&year2=2023&month2=11&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=26&year2=2023&month2=11&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=27&year2=2022&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=27&year2=2023&month2=11&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=2&day=28&year2=2022&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=28&year2=2023&month2=11&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=29&year2=2023&month2=11&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=1&year2=2022&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=30&year2=2023&month2=12&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=2&year2=2022&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=1&year2=2023&month2=12&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=2&year2=2023&month2=12&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=3&year2=2022&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=3&year2=2023&month2=12&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=4&year2=2022&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=4&year2=2023&month2=12&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=5&year2=2022&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=5&year2=2023&month2=12&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=6&year2=2023&month2=12&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=6&year2=2022&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=7&year2=2023&month2=12&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=7&year2=2022&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=8&year2=2023&month2=12&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=9&year2=2023&month2=12&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=8&year2=2022&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=10&year2=2023&month2=12&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=9&year2=2022&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=11&year2=2023&month2=12&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=12&year2=2023&month2=12&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=10&year2=2022&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=13&year2=2023&month2=12&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=11&year2=2022&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=14&year2=2023&month2=12&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=15&year2=2023&month2=12&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=12&year2=2022&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=16&year2=2023&month2=12&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=13&year2=2022&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=17&year2=2023&month2=12&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=18&year2=2023&month2=12&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=14&year2=2022&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=19&year2=2023&month2=12&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=15&year2=2022&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=20&year2=2023&month2=12&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=21&year2=2023&month2=12&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=16&year2=2022&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=22&year2=2023&month2=12&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=17&year2=2022&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=23&year2=2023&month2=12&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=24&year2=2023&month2=12&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=18&year2=2022&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=25&year2=2023&month2=12&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=19&year2=2022&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=26&year2=2023&month2=12&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=27&year2=2023&month2=12&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=20&year2=2022&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=28&year2=2023&month2=12&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=21&year2=2022&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=29&year2=2023&month2=12&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=30&year2=2023&month2=12&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=22&year2=2022&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=31&year2=2024&month2=1&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=23&year2=2022&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=1&year2=2024&month2=1&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=2&year2=2024&month2=1&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=24&year2=2022&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=3&year2=2024&month2=1&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=4&year2=2024&month2=1&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=25&year2=2022&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=5&year2=2024&month2=1&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=26&year2=2022&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=6&year2=2024&month2=1&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=7&year2=2024&month2=1&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=27&year2=2022&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=8&year2=2024&month2=1&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=28&year2=2022&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=9&year2=2024&month2=1&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=10&year2=2024&month2=1&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=29&year2=2022&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=11&year2=2024&month2=1&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=30&year2=2022&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=12&year2=2024&month2=1&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=13&year2=2024&month2=1&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=3&day=31&year2=2022&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=14&year2=2024&month2=1&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=1&year2=2022&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=15&year2=2024&month2=1&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=16&year2=2024&month2=1&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=2&year2=2022&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=17&year2=2024&month2=1&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=3&year2=2022&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=18&year2=2024&month2=1&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=19&year2=2024&month2=1&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=4&year2=2022&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=20&year2=2024&month2=1&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=21&year2=2024&month2=1&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=5&year2=2022&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=22&year2=2024&month2=1&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=23&year2=2024&month2=1&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=6&year2=2022&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=24&year2=2024&month2=1&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=25&year2=2024&month2=1&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=7&year2=2022&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=26&year2=2024&month2=1&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=8&year2=2022&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=27&year2=2024&month2=1&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=28&year2=2024&month2=1&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=9&year2=2022&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=29&year2=2024&month2=1&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=30&year2=2024&month2=1&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=10&year2=2022&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=31&year2=2024&month2=2&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=11&year2=2022&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=1&year2=2024&month2=2&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=2&year2=2024&month2=2&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=12&year2=2022&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=3&year2=2024&month2=2&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=13&year2=2022&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=4&year2=2024&month2=2&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=5&year2=2024&month2=2&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=14&year2=2022&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=6&year2=2024&month2=2&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=7&year2=2024&month2=2&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=15&year2=2022&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=8&year2=2024&month2=2&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=9&year2=2024&month2=2&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=16&year2=2022&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=10&year2=2024&month2=2&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=17&year2=2022&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=11&year2=2024&month2=2&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=12&year2=2024&month2=2&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=18&year2=2022&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=13&year2=2024&month2=2&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=14&year2=2024&month2=2&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=19&year2=2022&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=15&year2=2024&month2=2&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=16&year2=2024&month2=2&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=20&year2=2022&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=17&year2=2024&month2=2&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=21&year2=2022&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=18&year2=2024&month2=2&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=19&year2=2024&month2=2&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=22&year2=2022&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=20&year2=2024&month2=2&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=21&year2=2024&month2=2&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=23&year2=2022&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=22&year2=2024&month2=2&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=23&year2=2024&month2=2&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=24&year2=2022&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=24&year2=2024&month2=2&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=25&year2=2022&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=25&year2=2024&month2=2&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=26&year2=2024&month2=2&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=26&year2=2022&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=27&year2=2024&month2=2&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=28&year2=2024&month2=2&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=27&year2=2022&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=29&year2=2024&month2=3&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=1&year2=2024&month2=3&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=28&year2=2022&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=2&year2=2024&month2=3&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=3&year2=2024&month2=3&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=29&year2=2022&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=4&year2=2024&month2=3&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=5&year2=2024&month2=3&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=4&day=30&year2=2022&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=6&year2=2024&month2=3&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=7&year2=2024&month2=3&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=1&year2=2022&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=8&year2=2024&month2=3&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=2&year2=2022&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=9&year2=2024&month2=3&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=10&year2=2024&month2=3&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=3&year2=2022&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=11&year2=2024&month2=3&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=12&year2=2024&month2=3&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=4&year2=2022&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=13&year2=2024&month2=3&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=5&year2=2022&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=14&year2=2024&month2=3&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=15&year2=2024&month2=3&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=6&year2=2022&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=16&year2=2024&month2=3&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=17&year2=2024&month2=3&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=7&year2=2022&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=18&year2=2024&month2=3&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=19&year2=2024&month2=3&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=8&year2=2022&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=20&year2=2024&month2=3&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=21&year2=2024&month2=3&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=22&year2=2024&month2=3&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=9&year2=2022&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=23&year2=2024&month2=3&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=24&year2=2024&month2=3&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=10&year2=2022&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=25&year2=2024&month2=3&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=26&year2=2024&month2=3&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=27&year2=2024&month2=3&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=11&year2=2022&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=28&year2=2024&month2=3&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=29&year2=2024&month2=3&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=12&year2=2022&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=30&year2=2024&month2=3&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=31&year2=2024&month2=4&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=1&year2=2024&month2=4&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=13&year2=2022&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=2&year2=2024&month2=4&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=3&year2=2024&month2=4&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=4&year2=2024&month2=4&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=14&year2=2022&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=5&year2=2024&month2=4&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=6&year2=2024&month2=4&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=7&year2=2024&month2=4&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=15&year2=2022&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=8&year2=2024&month2=4&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=9&year2=2024&month2=4&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=10&year2=2024&month2=4&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=16&year2=2022&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=11&year2=2024&month2=4&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=12&year2=2024&month2=4&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=17&year2=2022&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=13&year2=2024&month2=4&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=14&year2=2024&month2=4&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=18&year2=2022&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=15&year2=2024&month2=4&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=16&year2=2024&month2=4&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=17&year2=2024&month2=4&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=19&year2=2022&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=18&year2=2024&month2=4&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=19&year2=2024&month2=4&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=20&year2=2024&month2=4&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=21&year2=2024&month2=4&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=20&year2=2022&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=22&year2=2024&month2=4&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=23&year2=2024&month2=4&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=24&year2=2024&month2=4&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=21&year2=2022&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=25&year2=2024&month2=4&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=26&year2=2024&month2=4&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=27&year2=2024&month2=4&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=28&year2=2024&month2=4&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=22&year2=2022&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=29&year2=2024&month2=4&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=30&year2=2024&month2=5&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=1&year2=2024&month2=5&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=2&year2=2024&month2=5&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=3&year2=2024&month2=5&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=23&year2=2022&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=4&year2=2024&month2=5&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=5&year2=2024&month2=5&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=6&year2=2024&month2=5&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=7&year2=2024&month2=5&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=24&year2=2022&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=8&year2=2024&month2=5&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=9&year2=2024&month2=5&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=10&year2=2024&month2=5&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=11&year2=2024&month2=5&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=25&year2=2022&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=12&year2=2024&month2=5&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=13&year2=2024&month2=5&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=14&year2=2024&month2=5&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=15&year2=2024&month2=5&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=26&year2=2022&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=16&year2=2024&month2=5&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=17&year2=2024&month2=5&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=18&year2=2024&month2=5&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=19&year2=2024&month2=5&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=20&year2=2024&month2=5&day2=21&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=27&year2=2022&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=21&year2=2024&month2=5&day2=22&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=22&year2=2024&month2=5&day2=23&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=23&year2=2024&month2=5&day2=24&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=24&year2=2024&month2=5&day2=25&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=28&year2=2022&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=25&year2=2024&month2=5&day2=26&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=26&year2=2024&month2=5&day2=27&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=27&year2=2024&month2=5&day2=28&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=28&year2=2024&month2=5&day2=29&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=29&year2=2022&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=29&year2=2024&month2=5&day2=30&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=30&year2=2024&month2=5&day2=31&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=31&year2=2024&month2=6&day2=1&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=1&year2=2024&month2=6&day2=2&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=30&year2=2022&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=2&year2=2024&month2=6&day2=3&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=3&year2=2024&month2=6&day2=4&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=4&year2=2024&month2=6&day2=5&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=5&year2=2024&month2=6&day2=6&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=5&day=31&year2=2022&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=6&year2=2024&month2=6&day2=7&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=7&year2=2024&month2=6&day2=8&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=8&year2=2024&month2=6&day2=9&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=9&year2=2024&month2=6&day2=10&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=1&year2=2022&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=10&year2=2024&month2=6&day2=11&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=11&year2=2024&month2=6&day2=12&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=12&year2=2024&month2=6&day2=13&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=13&year2=2024&month2=6&day2=14&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=2&year2=2022&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=14&year2=2024&month2=6&day2=15&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=15&year2=2024&month2=6&day2=16&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=16&year2=2024&month2=6&day2=17&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=17&year2=2024&month2=6&day2=18&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=3&year2=2022&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=18&year2=2024&month2=6&day2=19&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=19&year2=2024&month2=6&day2=20&SDA20=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=4&year2=2022&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=5&year2=2022&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=6&year2=2022&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=7&year2=2022&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=8&year2=2022&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=9&year2=2022&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=10&year2=2022&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=11&year2=2022&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=12&year2=2022&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=13&year2=2022&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=14&year2=2022&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=15&year2=2022&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=16&year2=2022&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=17&year2=2022&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=18&year2=2022&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=19&year2=2022&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=20&year2=2022&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=21&year2=2022&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=22&year2=2022&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=23&year2=2022&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=24&year2=2022&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=25&year2=2022&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=26&year2=2022&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=27&year2=2022&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=28&year2=2022&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=29&year2=2022&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=6&day=30&year2=2022&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=1&year2=2022&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=2&year2=2022&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=3&year2=2022&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=4&year2=2022&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=5&year2=2022&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=6&year2=2022&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=7&year2=2022&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=8&year2=2022&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=9&year2=2022&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=10&year2=2022&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=11&year2=2022&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=12&year2=2022&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=13&year2=2022&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=14&year2=2022&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=15&year2=2022&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=16&year2=2022&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=17&year2=2022&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=18&year2=2022&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=19&year2=2022&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=20&year2=2022&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=21&year2=2022&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=22&year2=2022&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=23&year2=2022&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=24&year2=2022&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=25&year2=2022&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=26&year2=2022&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=27&year2=2022&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=28&year2=2022&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=29&year2=2022&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=30&year2=2022&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=7&day=31&year2=2022&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=1&year2=2022&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=2&year2=2022&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=3&year2=2022&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=4&year2=2022&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=5&year2=2022&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=6&year2=2022&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=7&year2=2022&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=8&year2=2022&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=9&year2=2022&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=10&year2=2022&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=11&year2=2022&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=12&year2=2022&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=13&year2=2022&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=14&year2=2022&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=15&year2=2022&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=16&year2=2022&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=17&year2=2022&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=18&year2=2022&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=19&year2=2022&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=20&year2=2022&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=21&year2=2022&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=22&year2=2022&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=23&year2=2022&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=24&year2=2022&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=25&year2=2022&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=26&year2=2022&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=27&year2=2022&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=28&year2=2022&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=29&year2=2022&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=30&year2=2022&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=8&day=31&year2=2022&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=1&year2=2022&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=2&year2=2022&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=3&year2=2022&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=4&year2=2022&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=5&year2=2022&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=6&year2=2022&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=7&year2=2022&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=8&year2=2022&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=9&year2=2022&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=10&year2=2022&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=11&year2=2022&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=12&year2=2022&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=13&year2=2022&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=14&year2=2022&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=15&year2=2022&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=16&year2=2022&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=17&year2=2022&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=18&year2=2022&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=19&year2=2022&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=20&year2=2022&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=21&year2=2022&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=22&year2=2022&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=23&year2=2022&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=24&year2=2022&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=25&year2=2022&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=26&year2=2022&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=27&year2=2022&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=28&year2=2022&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=29&year2=2022&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=9&day=30&year2=2022&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=1&year2=2022&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=2&year2=2022&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=3&year2=2022&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=4&year2=2022&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=5&year2=2022&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=6&year2=2022&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=7&year2=2022&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=8&year2=2022&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=9&year2=2022&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=10&year2=2022&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=11&year2=2022&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=12&year2=2022&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=13&year2=2022&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=14&year2=2022&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=15&year2=2022&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=16&year2=2022&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=17&year2=2022&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=18&year2=2022&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=19&year2=2022&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=20&year2=2022&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=21&year2=2022&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=22&year2=2022&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=23&year2=2022&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=24&year2=2022&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=25&year2=2022&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=26&year2=2022&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=27&year2=2022&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=28&year2=2022&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=29&year2=2022&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=30&year2=2022&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=10&day=31&year2=2022&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=1&year2=2022&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=2&year2=2022&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=3&year2=2022&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=4&year2=2022&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=5&year2=2022&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=6&year2=2022&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=7&year2=2022&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=8&year2=2022&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=9&year2=2022&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=10&year2=2022&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=11&year2=2022&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=12&year2=2022&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=13&year2=2022&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=14&year2=2022&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=15&year2=2022&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=16&year2=2022&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=17&year2=2022&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=18&year2=2022&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=19&year2=2022&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=20&year2=2022&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=21&year2=2022&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=22&year2=2022&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=23&year2=2022&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=24&year2=2022&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=25&year2=2022&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=26&year2=2022&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=27&year2=2022&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=28&year2=2022&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=29&year2=2022&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=11&day=30&year2=2022&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=1&year2=2022&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=2&year2=2022&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=3&year2=2022&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=4&year2=2022&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=5&year2=2022&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=6&year2=2022&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=7&year2=2022&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=8&year2=2022&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=9&year2=2022&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=10&year2=2022&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=11&year2=2022&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=12&year2=2022&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=13&year2=2022&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=14&year2=2022&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=15&year2=2022&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=16&year2=2022&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=17&year2=2022&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=18&year2=2022&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=19&year2=2022&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=20&year2=2022&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=21&year2=2022&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=22&year2=2022&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=23&year2=2022&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=24&year2=2022&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=25&year2=2022&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=26&year2=2022&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=27&year2=2022&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=28&year2=2022&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=29&year2=2022&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=30&year2=2022&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2022&month=12&day=31&year2=2023&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=1&year2=2023&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=2&year2=2023&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=3&year2=2023&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=4&year2=2023&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=5&year2=2023&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=6&year2=2023&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=7&year2=2023&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=8&year2=2023&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=9&year2=2023&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=10&year2=2023&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=11&year2=2023&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=12&year2=2023&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=13&year2=2023&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=14&year2=2023&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=15&year2=2023&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=16&year2=2023&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=17&year2=2023&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=18&year2=2023&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=19&year2=2023&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=20&year2=2023&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=21&year2=2023&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=22&year2=2023&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=23&year2=2023&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=24&year2=2023&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=25&year2=2023&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=26&year2=2023&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=27&year2=2023&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=28&year2=2023&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=29&year2=2023&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=30&year2=2023&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=1&day=31&year2=2023&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=1&year2=2023&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=2&year2=2023&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=3&year2=2023&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=4&year2=2023&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=5&year2=2023&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=6&year2=2023&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=7&year2=2023&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=8&year2=2023&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=9&year2=2023&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=10&year2=2023&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=11&year2=2023&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=12&year2=2023&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=13&year2=2023&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=14&year2=2023&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=15&year2=2023&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=16&year2=2023&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=17&year2=2023&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=18&year2=2023&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=19&year2=2023&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=20&year2=2023&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=21&year2=2023&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=22&year2=2023&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=23&year2=2023&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=24&year2=2023&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=25&year2=2023&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=26&year2=2023&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=27&year2=2023&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=2&day=28&year2=2023&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=1&year2=2023&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=2&year2=2023&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=3&year2=2023&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=4&year2=2023&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=5&year2=2023&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=6&year2=2023&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=7&year2=2023&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=8&year2=2023&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=9&year2=2023&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=10&year2=2023&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=11&year2=2023&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=12&year2=2023&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=13&year2=2023&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=14&year2=2023&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=15&year2=2023&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=16&year2=2023&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=17&year2=2023&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=18&year2=2023&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=19&year2=2023&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=20&year2=2023&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=21&year2=2023&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=22&year2=2023&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=23&year2=2023&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=24&year2=2023&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=25&year2=2023&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=26&year2=2023&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=27&year2=2023&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=28&year2=2023&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=29&year2=2023&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=30&year2=2023&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=3&day=31&year2=2023&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=1&year2=2023&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=2&year2=2023&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=3&year2=2023&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=4&year2=2023&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=5&year2=2023&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=6&year2=2023&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=7&year2=2023&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=8&year2=2023&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=9&year2=2023&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=10&year2=2023&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=11&year2=2023&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=12&year2=2023&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=13&year2=2023&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=14&year2=2023&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=15&year2=2023&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=16&year2=2023&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=17&year2=2023&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=18&year2=2023&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=19&year2=2023&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=20&year2=2023&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=21&year2=2023&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=22&year2=2023&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=23&year2=2023&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=24&year2=2023&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=25&year2=2023&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=26&year2=2023&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=27&year2=2023&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=28&year2=2023&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=29&year2=2023&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=4&day=30&year2=2023&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=1&year2=2023&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=2&year2=2023&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=3&year2=2023&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=4&year2=2023&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=5&year2=2023&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=6&year2=2023&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=7&year2=2023&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=8&year2=2023&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=9&year2=2023&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=10&year2=2023&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=11&year2=2023&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=12&year2=2023&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=13&year2=2023&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=14&year2=2023&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=15&year2=2023&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=16&year2=2023&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=17&year2=2023&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=18&year2=2023&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=19&year2=2023&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=20&year2=2023&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=21&year2=2023&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=22&year2=2023&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=23&year2=2023&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=24&year2=2023&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=25&year2=2023&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=26&year2=2023&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=27&year2=2023&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=28&year2=2023&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=29&year2=2023&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=30&year2=2023&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=5&day=31&year2=2023&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=1&year2=2023&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=2&year2=2023&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=3&year2=2023&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=4&year2=2023&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=5&year2=2023&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=6&year2=2023&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=7&year2=2023&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=8&year2=2023&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=9&year2=2023&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=10&year2=2023&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=11&year2=2023&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=12&year2=2023&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=13&year2=2023&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=14&year2=2023&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=15&year2=2023&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=16&year2=2023&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=17&year2=2023&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=18&year2=2023&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=19&year2=2023&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=20&year2=2023&month2=6&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=21&year2=2023&month2=6&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=22&year2=2023&month2=6&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=23&year2=2023&month2=6&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=24&year2=2023&month2=6&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=25&year2=2023&month2=6&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=26&year2=2023&month2=6&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=27&year2=2023&month2=6&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=28&year2=2023&month2=6&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=29&year2=2023&month2=6&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=6&day=30&year2=2023&month2=7&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=1&year2=2023&month2=7&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=2&year2=2023&month2=7&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=3&year2=2023&month2=7&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=4&year2=2023&month2=7&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=5&year2=2023&month2=7&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=6&year2=2023&month2=7&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=7&year2=2023&month2=7&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=8&year2=2023&month2=7&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=9&year2=2023&month2=7&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=10&year2=2023&month2=7&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=11&year2=2023&month2=7&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=12&year2=2023&month2=7&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=13&year2=2023&month2=7&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=14&year2=2023&month2=7&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=15&year2=2023&month2=7&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=16&year2=2023&month2=7&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=17&year2=2023&month2=7&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=18&year2=2023&month2=7&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=19&year2=2023&month2=7&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=20&year2=2023&month2=7&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=21&year2=2023&month2=7&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=22&year2=2023&month2=7&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=23&year2=2023&month2=7&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=24&year2=2023&month2=7&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=25&year2=2023&month2=7&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=26&year2=2023&month2=7&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=27&year2=2023&month2=7&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=28&year2=2023&month2=7&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=29&year2=2023&month2=7&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=30&year2=2023&month2=7&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=7&day=31&year2=2023&month2=8&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=1&year2=2023&month2=8&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=2&year2=2023&month2=8&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=3&year2=2023&month2=8&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=4&year2=2023&month2=8&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=5&year2=2023&month2=8&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=6&year2=2023&month2=8&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=7&year2=2023&month2=8&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=8&year2=2023&month2=8&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=9&year2=2023&month2=8&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=10&year2=2023&month2=8&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=11&year2=2023&month2=8&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=12&year2=2023&month2=8&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=13&year2=2023&month2=8&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=14&year2=2023&month2=8&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=15&year2=2023&month2=8&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=16&year2=2023&month2=8&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=17&year2=2023&month2=8&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=18&year2=2023&month2=8&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=19&year2=2023&month2=8&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=20&year2=2023&month2=8&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=21&year2=2023&month2=8&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=22&year2=2023&month2=8&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=23&year2=2023&month2=8&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=24&year2=2023&month2=8&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=25&year2=2023&month2=8&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=26&year2=2023&month2=8&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=27&year2=2023&month2=8&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=28&year2=2023&month2=8&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=29&year2=2023&month2=8&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=30&year2=2023&month2=8&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=8&day=31&year2=2023&month2=9&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=1&year2=2023&month2=9&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=2&year2=2023&month2=9&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=3&year2=2023&month2=9&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=4&year2=2023&month2=9&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=5&year2=2023&month2=9&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=6&year2=2023&month2=9&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=7&year2=2023&month2=9&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=8&year2=2023&month2=9&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=9&year2=2023&month2=9&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=10&year2=2023&month2=9&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=11&year2=2023&month2=9&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=12&year2=2023&month2=9&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=13&year2=2023&month2=9&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=14&year2=2023&month2=9&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=15&year2=2023&month2=9&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=16&year2=2023&month2=9&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=17&year2=2023&month2=9&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=18&year2=2023&month2=9&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=19&year2=2023&month2=9&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=20&year2=2023&month2=9&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=21&year2=2023&month2=9&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=22&year2=2023&month2=9&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=23&year2=2023&month2=9&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=24&year2=2023&month2=9&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=25&year2=2023&month2=9&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=26&year2=2023&month2=9&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=27&year2=2023&month2=9&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=28&year2=2023&month2=9&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=29&year2=2023&month2=9&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=9&day=30&year2=2023&month2=10&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=1&year2=2023&month2=10&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=2&year2=2023&month2=10&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=3&year2=2023&month2=10&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=4&year2=2023&month2=10&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=5&year2=2023&month2=10&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=6&year2=2023&month2=10&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=7&year2=2023&month2=10&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=8&year2=2023&month2=10&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=9&year2=2023&month2=10&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=10&year2=2023&month2=10&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=11&year2=2023&month2=10&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=12&year2=2023&month2=10&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=13&year2=2023&month2=10&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=14&year2=2023&month2=10&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=15&year2=2023&month2=10&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=16&year2=2023&month2=10&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=17&year2=2023&month2=10&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=18&year2=2023&month2=10&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=19&year2=2023&month2=10&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=20&year2=2023&month2=10&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=21&year2=2023&month2=10&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=22&year2=2023&month2=10&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=23&year2=2023&month2=10&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=24&year2=2023&month2=10&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=25&year2=2023&month2=10&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=26&year2=2023&month2=10&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=27&year2=2023&month2=10&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=28&year2=2023&month2=10&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=29&year2=2023&month2=10&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=30&year2=2023&month2=10&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=10&day=31&year2=2023&month2=11&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=1&year2=2023&month2=11&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=2&year2=2023&month2=11&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=3&year2=2023&month2=11&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=4&year2=2023&month2=11&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=5&year2=2023&month2=11&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=6&year2=2023&month2=11&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=7&year2=2023&month2=11&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=8&year2=2023&month2=11&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=9&year2=2023&month2=11&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=10&year2=2023&month2=11&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=11&year2=2023&month2=11&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=12&year2=2023&month2=11&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=13&year2=2023&month2=11&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=14&year2=2023&month2=11&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=15&year2=2023&month2=11&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=16&year2=2023&month2=11&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=17&year2=2023&month2=11&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=18&year2=2023&month2=11&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=19&year2=2023&month2=11&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=20&year2=2023&month2=11&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=21&year2=2023&month2=11&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=22&year2=2023&month2=11&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=23&year2=2023&month2=11&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=24&year2=2023&month2=11&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=25&year2=2023&month2=11&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=26&year2=2023&month2=11&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=27&year2=2023&month2=11&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=28&year2=2023&month2=11&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=29&year2=2023&month2=11&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=11&day=30&year2=2023&month2=12&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=1&year2=2023&month2=12&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=2&year2=2023&month2=12&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=3&year2=2023&month2=12&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=4&year2=2023&month2=12&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=5&year2=2023&month2=12&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=6&year2=2023&month2=12&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=7&year2=2023&month2=12&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=8&year2=2023&month2=12&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=9&year2=2023&month2=12&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=10&year2=2023&month2=12&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=11&year2=2023&month2=12&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=12&year2=2023&month2=12&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=13&year2=2023&month2=12&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=14&year2=2023&month2=12&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=15&year2=2023&month2=12&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=16&year2=2023&month2=12&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=17&year2=2023&month2=12&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=18&year2=2023&month2=12&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=19&year2=2023&month2=12&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=20&year2=2023&month2=12&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=21&year2=2023&month2=12&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=22&year2=2023&month2=12&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=23&year2=2023&month2=12&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=24&year2=2023&month2=12&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=25&year2=2023&month2=12&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=26&year2=2023&month2=12&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=27&year2=2023&month2=12&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=28&year2=2023&month2=12&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=29&year2=2023&month2=12&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=30&year2=2023&month2=12&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2023&month=12&day=31&year2=2024&month2=1&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=1&year2=2024&month2=1&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=2&year2=2024&month2=1&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=3&year2=2024&month2=1&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=4&year2=2024&month2=1&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=5&year2=2024&month2=1&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=6&year2=2024&month2=1&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=7&year2=2024&month2=1&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=8&year2=2024&month2=1&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=9&year2=2024&month2=1&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=10&year2=2024&month2=1&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=11&year2=2024&month2=1&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=12&year2=2024&month2=1&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=13&year2=2024&month2=1&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=14&year2=2024&month2=1&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=15&year2=2024&month2=1&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=16&year2=2024&month2=1&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=17&year2=2024&month2=1&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=18&year2=2024&month2=1&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=19&year2=2024&month2=1&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=20&year2=2024&month2=1&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=21&year2=2024&month2=1&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=22&year2=2024&month2=1&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=23&year2=2024&month2=1&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=24&year2=2024&month2=1&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=25&year2=2024&month2=1&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=26&year2=2024&month2=1&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=27&year2=2024&month2=1&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=28&year2=2024&month2=1&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=29&year2=2024&month2=1&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=30&year2=2024&month2=1&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=1&day=31&year2=2024&month2=2&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=1&year2=2024&month2=2&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=2&year2=2024&month2=2&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=3&year2=2024&month2=2&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=4&year2=2024&month2=2&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=5&year2=2024&month2=2&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=6&year2=2024&month2=2&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=7&year2=2024&month2=2&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=8&year2=2024&month2=2&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=9&year2=2024&month2=2&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=10&year2=2024&month2=2&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=11&year2=2024&month2=2&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=12&year2=2024&month2=2&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=13&year2=2024&month2=2&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=14&year2=2024&month2=2&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=15&year2=2024&month2=2&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=16&year2=2024&month2=2&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=17&year2=2024&month2=2&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=18&year2=2024&month2=2&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=19&year2=2024&month2=2&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=20&year2=2024&month2=2&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=21&year2=2024&month2=2&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=22&year2=2024&month2=2&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=23&year2=2024&month2=2&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=24&year2=2024&month2=2&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=25&year2=2024&month2=2&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=26&year2=2024&month2=2&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=27&year2=2024&month2=2&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=28&year2=2024&month2=2&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=2&day=29&year2=2024&month2=3&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=1&year2=2024&month2=3&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=2&year2=2024&month2=3&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=3&year2=2024&month2=3&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=4&year2=2024&month2=3&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=5&year2=2024&month2=3&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=6&year2=2024&month2=3&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=7&year2=2024&month2=3&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=8&year2=2024&month2=3&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=9&year2=2024&month2=3&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=10&year2=2024&month2=3&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=11&year2=2024&month2=3&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=12&year2=2024&month2=3&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=13&year2=2024&month2=3&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=14&year2=2024&month2=3&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=15&year2=2024&month2=3&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=16&year2=2024&month2=3&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=17&year2=2024&month2=3&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=18&year2=2024&month2=3&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=19&year2=2024&month2=3&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=20&year2=2024&month2=3&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=21&year2=2024&month2=3&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=22&year2=2024&month2=3&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=23&year2=2024&month2=3&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=24&year2=2024&month2=3&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=25&year2=2024&month2=3&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=26&year2=2024&month2=3&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=27&year2=2024&month2=3&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=28&year2=2024&month2=3&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=29&year2=2024&month2=3&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=30&year2=2024&month2=3&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=3&day=31&year2=2024&month2=4&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=1&year2=2024&month2=4&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=2&year2=2024&month2=4&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=3&year2=2024&month2=4&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=4&year2=2024&month2=4&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=5&year2=2024&month2=4&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=6&year2=2024&month2=4&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=7&year2=2024&month2=4&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=8&year2=2024&month2=4&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=9&year2=2024&month2=4&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=10&year2=2024&month2=4&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=11&year2=2024&month2=4&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=12&year2=2024&month2=4&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=13&year2=2024&month2=4&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=14&year2=2024&month2=4&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=15&year2=2024&month2=4&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=16&year2=2024&month2=4&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=17&year2=2024&month2=4&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=18&year2=2024&month2=4&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=19&year2=2024&month2=4&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=20&year2=2024&month2=4&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=21&year2=2024&month2=4&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=22&year2=2024&month2=4&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=23&year2=2024&month2=4&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=24&year2=2024&month2=4&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=25&year2=2024&month2=4&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=26&year2=2024&month2=4&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=27&year2=2024&month2=4&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=28&year2=2024&month2=4&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=29&year2=2024&month2=4&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=4&day=30&year2=2024&month2=5&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=1&year2=2024&month2=5&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=2&year2=2024&month2=5&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=3&year2=2024&month2=5&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=4&year2=2024&month2=5&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=5&year2=2024&month2=5&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=6&year2=2024&month2=5&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=7&year2=2024&month2=5&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=8&year2=2024&month2=5&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=9&year2=2024&month2=5&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=10&year2=2024&month2=5&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=11&year2=2024&month2=5&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=12&year2=2024&month2=5&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=13&year2=2024&month2=5&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=14&year2=2024&month2=5&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=15&year2=2024&month2=5&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=16&year2=2024&month2=5&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=17&year2=2024&month2=5&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=18&year2=2024&month2=5&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=19&year2=2024&month2=5&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=20&year2=2024&month2=5&day2=21&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=21&year2=2024&month2=5&day2=22&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=22&year2=2024&month2=5&day2=23&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=23&year2=2024&month2=5&day2=24&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=24&year2=2024&month2=5&day2=25&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=25&year2=2024&month2=5&day2=26&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=26&year2=2024&month2=5&day2=27&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=27&year2=2024&month2=5&day2=28&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=28&year2=2024&month2=5&day2=29&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=29&year2=2024&month2=5&day2=30&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=30&year2=2024&month2=5&day2=31&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=5&day=31&year2=2024&month2=6&day2=1&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=1&year2=2024&month2=6&day2=2&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=2&year2=2024&month2=6&day2=3&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=3&year2=2024&month2=6&day2=4&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=4&year2=2024&month2=6&day2=5&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=5&year2=2024&month2=6&day2=6&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=6&year2=2024&month2=6&day2=7&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=7&year2=2024&month2=6&day2=8&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=8&year2=2024&month2=6&day2=9&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=9&year2=2024&month2=6&day2=10&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=10&year2=2024&month2=6&day2=11&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=11&year2=2024&month2=6&day2=12&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=12&year2=2024&month2=6&day2=13&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=13&year2=2024&month2=6&day2=14&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=14&year2=2024&month2=6&day2=15&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=15&year2=2024&month2=6&day2=16&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=16&year2=2024&month2=6&day2=17&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=17&year2=2024&month2=6&day2=18&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=18&year2=2024&month2=6&day2=19&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_v3?year=2024&month=6&day=19&year2=2024&month2=6&day2=20&SDA15=1&AVG=10 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=1&year2=1993&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=2&year2=1993&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=3&year2=1993&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=4&year2=1993&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=5&year2=1993&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=6&year2=1993&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=7&year2=1993&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=8&year2=1993&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=9&year2=1993&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=10&year2=1993&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=11&year2=1993&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=12&year2=1993&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=13&year2=1993&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=14&year2=1993&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=15&year2=1993&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=16&year2=1993&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=17&year2=1993&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=18&year2=1993&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=19&year2=1993&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=20&year2=1993&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=21&year2=1993&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=22&year2=1993&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=23&year2=1993&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=24&year2=1993&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=25&year2=1993&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=26&year2=1993&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=27&year2=1993&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=28&year2=1993&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=29&year2=1993&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=30&year2=1993&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=1&day=31&year2=1993&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=1&year2=1993&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=2&year2=1993&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=3&year2=1993&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=4&year2=1993&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=5&year2=1993&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=6&year2=1993&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=7&year2=1993&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=8&year2=1993&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=9&year2=1993&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=10&year2=1993&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=11&year2=1993&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=12&year2=1993&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=13&year2=1993&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=14&year2=1993&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=15&year2=1993&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=16&year2=1993&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=17&year2=1993&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=18&year2=1993&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=19&year2=1993&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=20&year2=1993&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=21&year2=1993&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=22&year2=1993&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=23&year2=1993&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=24&year2=1993&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=25&year2=1993&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=26&year2=1993&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=27&year2=1993&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=2&day=28&year2=1993&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=1&year2=1993&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=2&year2=1993&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=3&year2=1993&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=4&year2=1993&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=5&year2=1993&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=6&year2=1993&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=7&year2=1993&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=8&year2=1993&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=9&year2=1993&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=10&year2=1993&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=11&year2=1993&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=12&year2=1993&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=13&year2=1993&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=14&year2=1993&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=15&year2=1993&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=16&year2=1993&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=17&year2=1993&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=18&year2=1993&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=19&year2=1993&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=20&year2=1993&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=21&year2=1993&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=22&year2=1993&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=23&year2=1993&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=24&year2=1993&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=25&year2=1993&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=26&year2=1993&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=27&year2=1993&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=28&year2=1993&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=29&year2=1993&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=30&year2=1993&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=3&day=31&year2=1993&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=1&year2=1993&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=2&year2=1993&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=3&year2=1993&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=4&year2=1993&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=5&year2=1993&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=6&year2=1993&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=7&year2=1993&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=8&year2=1993&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=9&year2=1993&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=10&year2=1993&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=11&year2=1993&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=12&year2=1993&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=13&year2=1993&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=14&year2=1993&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=15&year2=1993&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=16&year2=1993&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=17&year2=1993&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=18&year2=1993&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=19&year2=1993&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=20&year2=1993&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=21&year2=1993&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=22&year2=1993&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=23&year2=1993&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=24&year2=1993&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=25&year2=1993&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=26&year2=1993&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=27&year2=1993&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=28&year2=1993&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=29&year2=1993&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=4&day=30&year2=1993&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=1&year2=1993&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=2&year2=1993&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=3&year2=1993&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=4&year2=1993&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=5&year2=1993&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=6&year2=1993&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=7&year2=1993&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=8&year2=1993&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=9&year2=1993&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=10&year2=1993&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=11&year2=1993&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=12&year2=1993&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=13&year2=1993&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=14&year2=1993&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=15&year2=1993&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=16&year2=1993&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=17&year2=1993&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=18&year2=1993&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=19&year2=1993&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=20&year2=1993&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=21&year2=1993&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=22&year2=1993&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=23&year2=1993&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=24&year2=1993&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=25&year2=1993&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=26&year2=1993&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=27&year2=1993&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=28&year2=1993&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=29&year2=1993&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=30&year2=1993&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=5&day=31&year2=1993&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=1&year2=1993&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=2&year2=1993&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=3&year2=1993&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=4&year2=1993&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=5&year2=1993&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=6&year2=1993&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=7&year2=1993&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=8&year2=1993&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=9&year2=1993&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=10&year2=1993&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=11&year2=1993&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=12&year2=1993&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=13&year2=1993&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=14&year2=1993&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=15&year2=1993&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=16&year2=1993&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=17&year2=1993&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=18&year2=1993&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=19&year2=1993&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=20&year2=1993&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=21&year2=1993&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=22&year2=1993&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=23&year2=1993&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=24&year2=1993&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=25&year2=1993&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=26&year2=1993&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=27&year2=1993&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=28&year2=1993&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=29&year2=1993&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=6&day=30&year2=1993&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=1&year2=1993&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=2&year2=1993&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=3&year2=1993&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=4&year2=1993&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=5&year2=1993&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=6&year2=1993&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=7&year2=1993&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=8&year2=1993&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=9&year2=1993&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=10&year2=1993&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=11&year2=1993&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=12&year2=1993&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=13&year2=1993&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=14&year2=1993&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=15&year2=1993&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=16&year2=1993&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=17&year2=1993&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=18&year2=1993&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=19&year2=1993&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=20&year2=1993&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=21&year2=1993&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=22&year2=1993&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=23&year2=1993&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=24&year2=1993&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=25&year2=1993&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=26&year2=1993&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=27&year2=1993&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=28&year2=1993&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=29&year2=1993&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=30&year2=1993&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=7&day=31&year2=1993&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=1&year2=1993&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=2&year2=1993&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=3&year2=1993&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=4&year2=1993&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=5&year2=1993&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=6&year2=1993&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=7&year2=1993&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=8&year2=1993&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=9&year2=1993&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=10&year2=1993&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=11&year2=1993&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=12&year2=1993&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=13&year2=1993&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=14&year2=1993&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=15&year2=1993&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=16&year2=1993&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=17&year2=1993&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=18&year2=1993&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=19&year2=1993&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=20&year2=1993&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=21&year2=1993&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=22&year2=1993&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=23&year2=1993&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=24&year2=1993&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=25&year2=1993&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=26&year2=1993&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=27&year2=1993&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=28&year2=1993&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=29&year2=1993&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=30&year2=1993&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=8&day=31&year2=1993&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=1&year2=1993&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=2&year2=1993&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=3&year2=1993&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=4&year2=1993&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=5&year2=1993&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=6&year2=1993&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=7&year2=1993&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=8&year2=1993&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=9&year2=1993&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=10&year2=1993&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=11&year2=1993&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=12&year2=1993&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=13&year2=1993&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=14&year2=1993&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=15&year2=1993&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=16&year2=1993&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=17&year2=1993&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=18&year2=1993&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=19&year2=1993&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=20&year2=1993&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=21&year2=1993&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=22&year2=1993&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=23&year2=1993&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=24&year2=1993&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=25&year2=1993&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=26&year2=1993&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=27&year2=1993&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=28&year2=1993&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=29&year2=1993&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=9&day=30&year2=1993&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=1&year2=1993&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=2&year2=1993&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=3&year2=1993&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=4&year2=1993&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=5&year2=1993&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=6&year2=1993&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=7&year2=1993&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=8&year2=1993&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=9&year2=1993&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=10&year2=1993&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=11&year2=1993&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=12&year2=1993&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=13&year2=1993&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=14&year2=1993&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=15&year2=1993&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=16&year2=1993&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=17&year2=1993&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=18&year2=1993&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=19&year2=1993&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=20&year2=1993&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=21&year2=1993&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=22&year2=1993&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=23&year2=1993&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=24&year2=1993&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=25&year2=1993&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=26&year2=1993&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=27&year2=1993&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=28&year2=1993&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=29&year2=1993&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=30&year2=1993&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=10&day=31&year2=1993&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=1&year2=1993&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=2&year2=1993&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=3&year2=1993&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=4&year2=1993&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=5&year2=1993&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=6&year2=1993&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=7&year2=1993&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=8&year2=1993&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=9&year2=1993&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=10&year2=1993&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=11&year2=1993&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=12&year2=1993&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=13&year2=1993&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=14&year2=1993&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=15&year2=1993&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=16&year2=1993&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=17&year2=1993&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=18&year2=1993&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=19&year2=1993&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=20&year2=1993&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=21&year2=1993&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=22&year2=1993&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=23&year2=1993&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=24&year2=1993&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=25&year2=1993&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=26&year2=1993&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=27&year2=1993&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=28&year2=1993&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=29&year2=1993&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=11&day=30&year2=1993&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=1&year2=1993&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=2&year2=1993&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=3&year2=1993&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=4&year2=1993&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=5&year2=1993&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=6&year2=1993&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=7&year2=1993&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=8&year2=1993&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=9&year2=1993&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=10&year2=1993&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=11&year2=1993&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=12&year2=1993&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=13&year2=1993&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=14&year2=1993&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=15&year2=1993&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=16&year2=1993&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=17&year2=1993&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=18&year2=1993&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=19&year2=1993&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=20&year2=1993&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=21&year2=1993&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=22&year2=1993&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=23&year2=1993&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=24&year2=1993&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=25&year2=1993&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=26&year2=1993&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=27&year2=1993&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=28&year2=1993&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=29&year2=1993&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=30&year2=1993&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1993&month=12&day=31&year2=1994&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=1&year2=1994&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=2&year2=1994&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=3&year2=1994&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=4&year2=1994&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=5&year2=1994&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=6&year2=1994&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=7&year2=1994&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=8&year2=1994&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=9&year2=1994&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=10&year2=1994&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=11&year2=1994&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=12&year2=1994&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=13&year2=1994&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=14&year2=1994&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=15&year2=1994&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=16&year2=1994&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=17&year2=1994&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=18&year2=1994&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=19&year2=1994&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=20&year2=1994&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=21&year2=1994&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=22&year2=1994&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=23&year2=1994&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=24&year2=1994&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=25&year2=1994&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=26&year2=1994&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=27&year2=1994&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=28&year2=1994&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=29&year2=1994&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=30&year2=1994&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=1&day=31&year2=1994&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=1&year2=1994&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=2&year2=1994&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=3&year2=1994&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=4&year2=1994&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=5&year2=1994&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=6&year2=1994&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=7&year2=1994&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=8&year2=1994&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=9&year2=1994&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=10&year2=1994&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=11&year2=1994&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=12&year2=1994&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=13&year2=1994&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=14&year2=1994&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=15&year2=1994&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=16&year2=1994&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=17&year2=1994&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=18&year2=1994&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=19&year2=1994&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=20&year2=1994&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=21&year2=1994&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=22&year2=1994&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=23&year2=1994&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=24&year2=1994&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=25&year2=1994&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=26&year2=1994&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=27&year2=1994&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=2&day=28&year2=1994&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=1&year2=1994&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=2&year2=1994&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=3&year2=1994&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=4&year2=1994&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=5&year2=1994&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=6&year2=1994&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=7&year2=1994&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=8&year2=1994&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=9&year2=1994&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=10&year2=1994&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=11&year2=1994&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=12&year2=1994&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=13&year2=1994&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=14&year2=1994&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=15&year2=1994&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=16&year2=1994&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=17&year2=1994&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=18&year2=1994&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=19&year2=1994&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=20&year2=1994&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=21&year2=1994&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=22&year2=1994&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=23&year2=1994&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=24&year2=1994&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=25&year2=1994&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=26&year2=1994&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=27&year2=1994&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=28&year2=1994&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=29&year2=1994&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=30&year2=1994&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=3&day=31&year2=1994&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=1&year2=1994&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=2&year2=1994&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=3&year2=1994&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=4&year2=1994&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=5&year2=1994&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=6&year2=1994&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=7&year2=1994&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=8&year2=1994&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=9&year2=1994&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=10&year2=1994&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=11&year2=1994&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=12&year2=1994&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=13&year2=1994&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=14&year2=1994&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=15&year2=1994&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=16&year2=1994&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=17&year2=1994&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=18&year2=1994&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=19&year2=1994&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=20&year2=1994&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=21&year2=1994&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=22&year2=1994&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=23&year2=1994&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=24&year2=1994&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=25&year2=1994&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=26&year2=1994&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=27&year2=1994&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=28&year2=1994&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=29&year2=1994&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=4&day=30&year2=1994&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=1&year2=1994&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=2&year2=1994&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=3&year2=1994&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=4&year2=1994&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=5&year2=1994&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=6&year2=1994&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=7&year2=1994&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=8&year2=1994&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=9&year2=1994&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=10&year2=1994&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=11&year2=1994&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=12&year2=1994&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=13&year2=1994&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=14&year2=1994&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=15&year2=1994&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=16&year2=1994&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=17&year2=1994&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=18&year2=1994&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=19&year2=1994&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=20&year2=1994&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=21&year2=1994&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=22&year2=1994&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=23&year2=1994&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=24&year2=1994&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=25&year2=1994&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=26&year2=1994&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=27&year2=1994&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=28&year2=1994&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=29&year2=1994&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=30&year2=1994&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=5&day=31&year2=1994&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=1&year2=1994&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=2&year2=1994&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=3&year2=1994&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=4&year2=1994&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=5&year2=1994&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=6&year2=1994&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=7&year2=1994&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=8&year2=1994&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=9&year2=1994&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=10&year2=1994&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=11&year2=1994&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=12&year2=1994&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=13&year2=1994&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=14&year2=1994&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=15&year2=1994&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=16&year2=1994&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=17&year2=1994&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=18&year2=1994&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=19&year2=1994&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=20&year2=1994&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=21&year2=1994&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=22&year2=1994&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=23&year2=1994&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=24&year2=1994&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=25&year2=1994&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=26&year2=1994&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=27&year2=1994&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=28&year2=1994&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=29&year2=1994&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=6&day=30&year2=1994&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=1&year2=1994&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=2&year2=1994&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=3&year2=1994&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=4&year2=1994&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=5&year2=1994&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=6&year2=1994&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=7&year2=1994&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=8&year2=1994&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=9&year2=1994&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=10&year2=1994&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=11&year2=1994&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=12&year2=1994&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=13&year2=1994&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=14&year2=1994&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=15&year2=1994&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=16&year2=1994&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=17&year2=1994&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=18&year2=1994&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=19&year2=1994&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=20&year2=1994&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=21&year2=1994&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=22&year2=1994&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=23&year2=1994&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=24&year2=1994&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=25&year2=1994&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=26&year2=1994&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=27&year2=1994&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=28&year2=1994&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=29&year2=1994&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=30&year2=1994&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=7&day=31&year2=1994&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=1&year2=1994&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=2&year2=1994&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=3&year2=1994&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=4&year2=1994&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=5&year2=1994&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=6&year2=1994&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=7&year2=1994&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=8&year2=1994&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=9&year2=1994&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=10&year2=1994&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=11&year2=1994&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=12&year2=1994&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=13&year2=1994&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=14&year2=1994&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=15&year2=1994&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=16&year2=1994&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=17&year2=1994&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=18&year2=1994&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=19&year2=1994&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=20&year2=1994&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=21&year2=1994&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=22&year2=1994&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=23&year2=1994&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=24&year2=1994&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=25&year2=1994&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=26&year2=1994&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=27&year2=1994&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=28&year2=1994&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=29&year2=1994&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=30&year2=1994&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=8&day=31&year2=1994&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=1&year2=1994&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=2&year2=1994&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=3&year2=1994&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=4&year2=1994&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=5&year2=1994&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=6&year2=1994&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=7&year2=1994&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=8&year2=1994&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=9&year2=1994&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=10&year2=1994&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=11&year2=1994&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=12&year2=1994&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=13&year2=1994&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=14&year2=1994&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=15&year2=1994&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=16&year2=1994&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=17&year2=1994&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=18&year2=1994&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=19&year2=1994&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=20&year2=1994&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=21&year2=1994&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=22&year2=1994&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=23&year2=1994&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=24&year2=1994&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=25&year2=1994&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=26&year2=1994&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=27&year2=1994&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=28&year2=1994&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=29&year2=1994&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=9&day=30&year2=1994&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=1&year2=1994&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=2&year2=1994&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=3&year2=1994&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=4&year2=1994&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=5&year2=1994&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=6&year2=1994&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=7&year2=1994&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=8&year2=1994&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=9&year2=1994&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=10&year2=1994&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=11&year2=1994&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=12&year2=1994&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=13&year2=1994&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=14&year2=1994&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=15&year2=1994&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=16&year2=1994&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=17&year2=1994&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=18&year2=1994&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=19&year2=1994&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=20&year2=1994&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=21&year2=1994&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=22&year2=1994&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=23&year2=1994&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=24&year2=1994&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=25&year2=1994&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=26&year2=1994&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=27&year2=1994&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=28&year2=1994&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=29&year2=1994&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=30&year2=1994&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=10&day=31&year2=1994&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=1&year2=1994&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=2&year2=1994&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=3&year2=1994&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=4&year2=1994&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=5&year2=1994&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=6&year2=1994&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=7&year2=1994&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=8&year2=1994&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=9&year2=1994&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=10&year2=1994&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=11&year2=1994&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=12&year2=1994&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=13&year2=1994&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=14&year2=1994&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=15&year2=1994&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=16&year2=1994&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=17&year2=1994&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=18&year2=1994&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=19&year2=1994&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=20&year2=1994&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=21&year2=1994&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=22&year2=1994&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=23&year2=1994&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=24&year2=1994&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=25&year2=1994&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=26&year2=1994&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=27&year2=1994&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=28&year2=1994&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=29&year2=1994&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=11&day=30&year2=1994&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=1&year2=1994&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=2&year2=1994&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=3&year2=1994&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=4&year2=1994&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=5&year2=1994&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=6&year2=1994&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=7&year2=1994&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=8&year2=1994&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=9&year2=1994&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=10&year2=1994&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=11&year2=1994&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=12&year2=1994&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=13&year2=1994&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=14&year2=1994&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=15&year2=1994&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=16&year2=1994&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=17&year2=1994&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=18&year2=1994&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=19&year2=1994&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=20&year2=1994&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=21&year2=1994&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=22&year2=1994&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=23&year2=1994&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=24&year2=1994&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=25&year2=1994&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=26&year2=1994&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=27&year2=1994&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=28&year2=1994&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=29&year2=1994&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=30&year2=1994&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1994&month=12&day=31&year2=1995&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=1&year2=1995&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=2&year2=1995&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=3&year2=1995&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=4&year2=1995&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=5&year2=1995&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=6&year2=1995&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=7&year2=1995&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=8&year2=1995&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=9&year2=1995&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=10&year2=1995&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=11&year2=1995&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=12&year2=1995&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=13&year2=1995&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=14&year2=1995&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=15&year2=1995&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=16&year2=1995&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=17&year2=1995&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=18&year2=1995&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=19&year2=1995&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=20&year2=1995&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=21&year2=1995&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=22&year2=1995&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=23&year2=1995&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=24&year2=1995&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=25&year2=1995&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=26&year2=1995&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=27&year2=1995&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=28&year2=1995&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=29&year2=1995&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=30&year2=1995&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=1&day=31&year2=1995&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=1&year2=1995&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=2&year2=1995&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=3&year2=1995&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=4&year2=1995&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=5&year2=1995&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=6&year2=1995&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=7&year2=1995&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=8&year2=1995&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=9&year2=1995&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=10&year2=1995&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=11&year2=1995&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=12&year2=1995&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=13&year2=1995&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=14&year2=1995&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=15&year2=1995&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=16&year2=1995&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=17&year2=1995&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=18&year2=1995&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=19&year2=1995&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=20&year2=1995&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=21&year2=1995&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=22&year2=1995&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=23&year2=1995&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=24&year2=1995&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=25&year2=1995&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=26&year2=1995&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=27&year2=1995&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=2&day=28&year2=1995&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=1&year2=1995&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=2&year2=1995&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=3&year2=1995&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=4&year2=1995&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=5&year2=1995&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=6&year2=1995&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=7&year2=1995&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=8&year2=1995&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=9&year2=1995&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=10&year2=1995&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=11&year2=1995&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=12&year2=1995&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=13&year2=1995&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=14&year2=1995&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=15&year2=1995&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=16&year2=1995&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=17&year2=1995&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=18&year2=1995&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=19&year2=1995&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=20&year2=1995&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=21&year2=1995&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=22&year2=1995&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=23&year2=1995&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=24&year2=1995&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=25&year2=1995&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=26&year2=1995&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=27&year2=1995&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=28&year2=1995&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=29&year2=1995&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=30&year2=1995&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=3&day=31&year2=1995&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=1&year2=1995&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=2&year2=1995&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=3&year2=1995&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=4&year2=1995&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=5&year2=1995&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=6&year2=1995&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=7&year2=1995&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=8&year2=1995&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=9&year2=1995&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=10&year2=1995&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=11&year2=1995&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=12&year2=1995&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=13&year2=1995&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=14&year2=1995&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=15&year2=1995&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=16&year2=1995&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=17&year2=1995&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=18&year2=1995&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=19&year2=1995&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=20&year2=1995&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=21&year2=1995&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=22&year2=1995&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=23&year2=1995&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=24&year2=1995&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=25&year2=1995&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=26&year2=1995&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=27&year2=1995&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=28&year2=1995&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=29&year2=1995&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=4&day=30&year2=1995&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=1&year2=1995&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=2&year2=1995&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=3&year2=1995&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=4&year2=1995&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=5&year2=1995&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=6&year2=1995&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=7&year2=1995&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=8&year2=1995&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=9&year2=1995&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=10&year2=1995&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=11&year2=1995&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=12&year2=1995&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=13&year2=1995&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=14&year2=1995&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=15&year2=1995&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=16&year2=1995&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=17&year2=1995&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=18&year2=1995&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=19&year2=1995&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=20&year2=1995&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=21&year2=1995&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=22&year2=1995&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=23&year2=1995&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=24&year2=1995&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=25&year2=1995&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=26&year2=1995&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=27&year2=1995&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=28&year2=1995&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=29&year2=1995&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=30&year2=1995&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=5&day=31&year2=1995&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=1&year2=1995&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=2&year2=1995&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=3&year2=1995&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=4&year2=1995&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=5&year2=1995&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=6&year2=1995&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=7&year2=1995&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=8&year2=1995&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=9&year2=1995&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=10&year2=1995&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=11&year2=1995&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=12&year2=1995&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=13&year2=1995&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=14&year2=1995&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=15&year2=1995&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=16&year2=1995&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=17&year2=1995&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=18&year2=1995&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=19&year2=1995&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=20&year2=1995&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=21&year2=1995&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=22&year2=1995&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=23&year2=1995&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=24&year2=1995&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=25&year2=1995&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=26&year2=1995&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=27&year2=1995&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=28&year2=1995&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=29&year2=1995&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=6&day=30&year2=1995&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=1&year2=1995&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=2&year2=1995&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=3&year2=1995&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=4&year2=1995&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=5&year2=1995&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=6&year2=1995&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=7&year2=1995&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=8&year2=1995&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=9&year2=1995&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=10&year2=1995&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=11&year2=1995&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=12&year2=1995&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=13&year2=1995&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=14&year2=1995&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=15&year2=1995&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=16&year2=1995&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=17&year2=1995&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=18&year2=1995&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=19&year2=1995&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=20&year2=1995&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=21&year2=1995&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=22&year2=1995&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=23&year2=1995&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=24&year2=1995&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=25&year2=1995&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=26&year2=1995&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=27&year2=1995&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=28&year2=1995&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=29&year2=1995&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=30&year2=1995&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=7&day=31&year2=1995&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=1&year2=1995&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=2&year2=1995&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=3&year2=1995&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=4&year2=1995&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=5&year2=1995&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=6&year2=1995&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=7&year2=1995&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=8&year2=1995&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=9&year2=1995&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=10&year2=1995&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=11&year2=1995&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=12&year2=1995&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=13&year2=1995&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=14&year2=1995&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=15&year2=1995&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=16&year2=1995&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=17&year2=1995&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=18&year2=1995&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=19&year2=1995&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=20&year2=1995&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=21&year2=1995&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=22&year2=1995&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=23&year2=1995&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=24&year2=1995&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=25&year2=1995&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=26&year2=1995&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=27&year2=1995&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=28&year2=1995&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=29&year2=1995&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=30&year2=1995&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=8&day=31&year2=1995&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=1&year2=1995&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=2&year2=1995&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=3&year2=1995&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=4&year2=1995&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=5&year2=1995&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=6&year2=1995&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=7&year2=1995&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=8&year2=1995&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=9&year2=1995&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=10&year2=1995&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=11&year2=1995&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=12&year2=1995&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=13&year2=1995&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=14&year2=1995&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=15&year2=1995&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=16&year2=1995&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=17&year2=1995&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=18&year2=1995&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=19&year2=1995&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=20&year2=1995&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=21&year2=1995&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=22&year2=1995&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=23&year2=1995&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=24&year2=1995&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=25&year2=1995&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=26&year2=1995&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=27&year2=1995&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=28&year2=1995&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=29&year2=1995&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=9&day=30&year2=1995&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=1&year2=1995&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=2&year2=1995&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=3&year2=1995&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=4&year2=1995&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=5&year2=1995&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=6&year2=1995&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=7&year2=1995&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=8&year2=1995&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=9&year2=1995&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=10&year2=1995&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=11&year2=1995&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=12&year2=1995&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=13&year2=1995&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=14&year2=1995&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=15&year2=1995&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=16&year2=1995&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=17&year2=1995&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=18&year2=1995&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=19&year2=1995&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=20&year2=1995&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=21&year2=1995&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=22&year2=1995&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=23&year2=1995&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=24&year2=1995&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=25&year2=1995&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=26&year2=1995&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=27&year2=1995&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=28&year2=1995&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=29&year2=1995&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=30&year2=1995&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=10&day=31&year2=1995&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=1&year2=1995&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=2&year2=1995&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=3&year2=1995&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=4&year2=1995&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=5&year2=1995&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=6&year2=1995&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=7&year2=1995&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=8&year2=1995&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=9&year2=1995&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=10&year2=1995&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=11&year2=1995&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=12&year2=1995&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=13&year2=1995&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=14&year2=1995&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=15&year2=1995&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=16&year2=1995&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=17&year2=1995&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=18&year2=1995&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=19&year2=1995&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=20&year2=1995&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=21&year2=1995&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=22&year2=1995&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=23&year2=1995&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=24&year2=1995&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=25&year2=1995&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=26&year2=1995&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=27&year2=1995&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=28&year2=1995&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=29&year2=1995&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=11&day=30&year2=1995&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=1&year2=1995&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=2&year2=1995&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=3&year2=1995&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=4&year2=1995&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=5&year2=1995&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=6&year2=1995&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=7&year2=1995&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=8&year2=1995&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=9&year2=1995&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=10&year2=1995&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=11&year2=1995&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=12&year2=1995&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=13&year2=1995&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=14&year2=1995&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=15&year2=1995&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=16&year2=1995&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=17&year2=1995&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=18&year2=1995&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=19&year2=1995&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=20&year2=1995&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=21&year2=1995&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=22&year2=1995&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=23&year2=1995&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=24&year2=1995&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=25&year2=1995&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=26&year2=1995&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=27&year2=1995&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=28&year2=1995&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=29&year2=1995&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=30&year2=1995&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1995&month=12&day=31&year2=1996&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=1&year2=1996&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=2&year2=1996&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=3&year2=1996&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=4&year2=1996&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=5&year2=1996&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=6&year2=1996&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=7&year2=1996&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=8&year2=1996&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=9&year2=1996&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=10&year2=1996&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=11&year2=1996&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=12&year2=1996&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=13&year2=1996&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=14&year2=1996&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=15&year2=1996&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=16&year2=1996&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=17&year2=1996&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=18&year2=1996&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=19&year2=1996&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=20&year2=1996&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=21&year2=1996&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=22&year2=1996&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=23&year2=1996&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=24&year2=1996&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=25&year2=1996&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=26&year2=1996&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=27&year2=1996&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=28&year2=1996&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=29&year2=1996&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=30&year2=1996&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=1&day=31&year2=1996&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=1&year2=1996&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=2&year2=1996&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=3&year2=1996&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=4&year2=1996&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=5&year2=1996&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=6&year2=1996&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=7&year2=1996&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=8&year2=1996&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=9&year2=1996&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=10&year2=1996&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=11&year2=1996&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=12&year2=1996&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=13&year2=1996&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=14&year2=1996&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=15&year2=1996&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=16&year2=1996&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=17&year2=1996&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=18&year2=1996&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=19&year2=1996&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=20&year2=1996&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=21&year2=1996&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=22&year2=1996&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=23&year2=1996&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=24&year2=1996&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=25&year2=1996&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=26&year2=1996&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=27&year2=1996&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=28&year2=1996&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=2&day=29&year2=1996&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=1&year2=1996&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=2&year2=1996&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=3&year2=1996&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=4&year2=1996&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=5&year2=1996&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=6&year2=1996&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=7&year2=1996&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=8&year2=1996&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=9&year2=1996&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=10&year2=1996&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=11&year2=1996&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=12&year2=1996&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=13&year2=1996&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=14&year2=1996&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=15&year2=1996&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=16&year2=1996&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=17&year2=1996&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=18&year2=1996&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=19&year2=1996&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=20&year2=1996&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=21&year2=1996&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=22&year2=1996&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=23&year2=1996&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=24&year2=1996&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=25&year2=1996&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=26&year2=1996&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=27&year2=1996&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=28&year2=1996&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=29&year2=1996&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=30&year2=1996&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=3&day=31&year2=1996&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=1&year2=1996&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=2&year2=1996&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=3&year2=1996&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=4&year2=1996&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=5&year2=1996&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=6&year2=1996&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=7&year2=1996&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=8&year2=1996&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=9&year2=1996&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=10&year2=1996&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=11&year2=1996&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=12&year2=1996&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=13&year2=1996&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=14&year2=1996&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=15&year2=1996&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=16&year2=1996&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=17&year2=1996&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=18&year2=1996&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=19&year2=1996&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=20&year2=1996&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=21&year2=1996&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=22&year2=1996&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=23&year2=1996&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=24&year2=1996&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=25&year2=1996&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=26&year2=1996&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=27&year2=1996&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=28&year2=1996&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=29&year2=1996&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=4&day=30&year2=1996&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=1&year2=1996&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=2&year2=1996&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=3&year2=1996&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=4&year2=1996&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=5&year2=1996&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=6&year2=1996&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=7&year2=1996&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=8&year2=1996&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=9&year2=1996&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=10&year2=1996&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=11&year2=1996&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=12&year2=1996&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=13&year2=1996&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=14&year2=1996&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=15&year2=1996&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=16&year2=1996&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=17&year2=1996&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=18&year2=1996&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=19&year2=1996&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=20&year2=1996&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=21&year2=1996&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=22&year2=1996&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=23&year2=1996&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=24&year2=1996&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=25&year2=1996&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=26&year2=1996&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=27&year2=1996&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=28&year2=1996&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=29&year2=1996&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=30&year2=1996&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=5&day=31&year2=1996&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=1&year2=1996&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=2&year2=1996&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=3&year2=1996&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=4&year2=1996&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=5&year2=1996&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=6&year2=1996&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=7&year2=1996&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=8&year2=1996&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=9&year2=1996&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=10&year2=1996&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=11&year2=1996&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=12&year2=1996&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=13&year2=1996&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=14&year2=1996&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=15&year2=1996&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=16&year2=1996&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=17&year2=1996&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=18&year2=1996&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=19&year2=1996&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=20&year2=1996&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=21&year2=1996&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=22&year2=1996&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=23&year2=1996&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=24&year2=1996&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=25&year2=1996&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=26&year2=1996&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=27&year2=1996&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=28&year2=1996&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=29&year2=1996&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=6&day=30&year2=1996&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=1&year2=1996&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=2&year2=1996&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=3&year2=1996&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=4&year2=1996&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=5&year2=1996&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=6&year2=1996&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=7&year2=1996&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=8&year2=1996&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=9&year2=1996&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=10&year2=1996&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=11&year2=1996&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=12&year2=1996&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=13&year2=1996&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=14&year2=1996&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=15&year2=1996&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=16&year2=1996&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=17&year2=1996&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=18&year2=1996&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=19&year2=1996&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=20&year2=1996&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=21&year2=1996&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=22&year2=1996&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=23&year2=1996&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=24&year2=1996&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=25&year2=1996&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=26&year2=1996&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=27&year2=1996&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=28&year2=1996&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=29&year2=1996&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=30&year2=1996&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=7&day=31&year2=1996&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=1&year2=1996&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=2&year2=1996&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=3&year2=1996&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=4&year2=1996&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=5&year2=1996&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=6&year2=1996&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=7&year2=1996&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=8&year2=1996&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=9&year2=1996&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=10&year2=1996&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=11&year2=1996&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=12&year2=1996&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=13&year2=1996&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=14&year2=1996&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=15&year2=1996&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=16&year2=1996&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=17&year2=1996&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=18&year2=1996&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=19&year2=1996&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=20&year2=1996&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=21&year2=1996&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=22&year2=1996&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=23&year2=1996&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=24&year2=1996&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=25&year2=1996&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=26&year2=1996&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=27&year2=1996&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=28&year2=1996&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=29&year2=1996&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=30&year2=1996&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=8&day=31&year2=1996&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=1&year2=1996&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=2&year2=1996&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=3&year2=1996&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=4&year2=1996&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=5&year2=1996&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=6&year2=1996&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=7&year2=1996&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=8&year2=1996&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=9&year2=1996&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=10&year2=1996&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=11&year2=1996&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=12&year2=1996&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=13&year2=1996&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=14&year2=1996&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=15&year2=1996&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=16&year2=1996&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=17&year2=1996&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=18&year2=1996&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=19&year2=1996&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=20&year2=1996&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=21&year2=1996&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=22&year2=1996&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=23&year2=1996&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=24&year2=1996&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=25&year2=1996&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=26&year2=1996&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=27&year2=1996&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=28&year2=1996&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=29&year2=1996&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=9&day=30&year2=1996&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=1&year2=1996&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=2&year2=1996&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=3&year2=1996&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=4&year2=1996&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=5&year2=1996&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=6&year2=1996&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=7&year2=1996&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=8&year2=1996&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=9&year2=1996&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=10&year2=1996&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=11&year2=1996&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=12&year2=1996&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=13&year2=1996&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=14&year2=1996&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=15&year2=1996&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=16&year2=1996&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=17&year2=1996&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=18&year2=1996&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=19&year2=1996&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=20&year2=1996&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=21&year2=1996&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=22&year2=1996&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=23&year2=1996&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=24&year2=1996&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=25&year2=1996&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=26&year2=1996&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=27&year2=1996&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=28&year2=1996&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=29&year2=1996&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=30&year2=1996&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=10&day=31&year2=1996&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=1&year2=1996&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=2&year2=1996&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=3&year2=1996&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=4&year2=1996&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=5&year2=1996&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=6&year2=1996&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=7&year2=1996&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=8&year2=1996&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=9&year2=1996&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=10&year2=1996&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=11&year2=1996&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=12&year2=1996&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=13&year2=1996&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=14&year2=1996&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=15&year2=1996&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=16&year2=1996&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=17&year2=1996&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=18&year2=1996&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=19&year2=1996&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=20&year2=1996&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=21&year2=1996&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=22&year2=1996&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=23&year2=1996&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=24&year2=1996&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=25&year2=1996&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=26&year2=1996&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=27&year2=1996&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=28&year2=1996&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=29&year2=1996&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=11&day=30&year2=1996&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=1&year2=1996&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=2&year2=1996&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=3&year2=1996&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=4&year2=1996&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=5&year2=1996&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=6&year2=1996&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=7&year2=1996&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=8&year2=1996&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=9&year2=1996&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=10&year2=1996&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=11&year2=1996&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=12&year2=1996&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=13&year2=1996&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=14&year2=1996&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=15&year2=1996&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=16&year2=1996&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=17&year2=1996&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=18&year2=1996&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=19&year2=1996&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=20&year2=1996&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=21&year2=1996&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=22&year2=1996&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=23&year2=1996&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=24&year2=1996&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=25&year2=1996&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=26&year2=1996&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=27&year2=1996&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=28&year2=1996&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=29&year2=1996&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=30&year2=1996&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1996&month=12&day=31&year2=1997&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=1&year2=1997&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=2&year2=1997&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=3&year2=1997&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=4&year2=1997&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=5&year2=1997&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=6&year2=1997&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=7&year2=1997&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=8&year2=1997&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=9&year2=1997&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=10&year2=1997&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=11&year2=1997&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=12&year2=1997&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=13&year2=1997&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=14&year2=1997&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=15&year2=1997&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=16&year2=1997&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=17&year2=1997&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=18&year2=1997&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=19&year2=1997&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=20&year2=1997&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=21&year2=1997&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=22&year2=1997&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=23&year2=1997&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=24&year2=1997&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=25&year2=1997&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=26&year2=1997&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=27&year2=1997&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=28&year2=1997&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=29&year2=1997&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=30&year2=1997&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=1&day=31&year2=1997&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=1&year2=1997&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=2&year2=1997&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=3&year2=1997&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=4&year2=1997&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=5&year2=1997&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=6&year2=1997&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=7&year2=1997&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=8&year2=1997&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=9&year2=1997&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=10&year2=1997&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=11&year2=1997&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=12&year2=1997&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=13&year2=1997&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=14&year2=1997&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=15&year2=1997&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=16&year2=1997&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=17&year2=1997&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=18&year2=1997&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=19&year2=1997&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=20&year2=1997&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=21&year2=1997&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=22&year2=1997&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=23&year2=1997&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=24&year2=1997&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=25&year2=1997&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=26&year2=1997&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=27&year2=1997&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=2&day=28&year2=1997&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=1&year2=1997&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=2&year2=1997&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=3&year2=1997&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=4&year2=1997&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=5&year2=1997&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=6&year2=1997&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=7&year2=1997&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=8&year2=1997&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=9&year2=1997&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=10&year2=1997&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=11&year2=1997&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=12&year2=1997&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=13&year2=1997&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=14&year2=1997&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=15&year2=1997&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=16&year2=1997&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=17&year2=1997&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=18&year2=1997&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=19&year2=1997&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=20&year2=1997&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=21&year2=1997&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=22&year2=1997&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=23&year2=1997&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=24&year2=1997&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=25&year2=1997&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=26&year2=1997&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=27&year2=1997&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=28&year2=1997&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=29&year2=1997&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=30&year2=1997&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=3&day=31&year2=1997&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=1&year2=1997&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=2&year2=1997&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=3&year2=1997&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=4&year2=1997&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=5&year2=1997&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=6&year2=1997&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=7&year2=1997&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=8&year2=1997&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=9&year2=1997&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=10&year2=1997&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=11&year2=1997&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=12&year2=1997&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=13&year2=1997&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=14&year2=1997&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=15&year2=1997&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=16&year2=1997&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=17&year2=1997&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=18&year2=1997&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=19&year2=1997&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=20&year2=1997&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=21&year2=1997&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=22&year2=1997&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=23&year2=1997&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=24&year2=1997&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=25&year2=1997&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=26&year2=1997&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=27&year2=1997&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=28&year2=1997&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=29&year2=1997&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=4&day=30&year2=1997&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=1&year2=1997&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=2&year2=1997&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=3&year2=1997&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=4&year2=1997&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=5&year2=1997&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=6&year2=1997&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=7&year2=1997&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=8&year2=1997&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=9&year2=1997&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=10&year2=1997&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=11&year2=1997&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=12&year2=1997&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=13&year2=1997&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=14&year2=1997&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=15&year2=1997&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=16&year2=1997&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=17&year2=1997&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=18&year2=1997&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=19&year2=1997&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=20&year2=1997&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=21&year2=1997&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=22&year2=1997&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=23&year2=1997&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=24&year2=1997&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=25&year2=1997&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=26&year2=1997&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=27&year2=1997&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=28&year2=1997&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=29&year2=1997&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=30&year2=1997&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=5&day=31&year2=1997&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=1&year2=1997&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=2&year2=1997&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=3&year2=1997&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=4&year2=1997&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=5&year2=1997&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=6&year2=1997&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=7&year2=1997&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=8&year2=1997&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=9&year2=1997&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=10&year2=1997&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=11&year2=1997&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=12&year2=1997&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=13&year2=1997&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=14&year2=1997&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=15&year2=1997&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=16&year2=1997&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=17&year2=1997&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=18&year2=1997&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=19&year2=1997&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=20&year2=1997&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=21&year2=1997&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=22&year2=1997&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=23&year2=1997&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=24&year2=1997&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=25&year2=1997&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=26&year2=1997&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=27&year2=1997&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=28&year2=1997&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=29&year2=1997&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=6&day=30&year2=1997&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=1&year2=1997&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=2&year2=1997&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=3&year2=1997&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=4&year2=1997&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=5&year2=1997&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=6&year2=1997&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=7&year2=1997&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=8&year2=1997&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=9&year2=1997&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=10&year2=1997&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=11&year2=1997&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=12&year2=1997&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=13&year2=1997&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=14&year2=1997&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=15&year2=1997&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=16&year2=1997&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=17&year2=1997&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=18&year2=1997&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=19&year2=1997&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=20&year2=1997&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=21&year2=1997&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=22&year2=1997&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=23&year2=1997&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=24&year2=1997&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=25&year2=1997&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=26&year2=1997&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=27&year2=1997&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=28&year2=1997&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=29&year2=1997&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=30&year2=1997&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=7&day=31&year2=1997&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=1&year2=1997&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=2&year2=1997&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=3&year2=1997&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=4&year2=1997&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=5&year2=1997&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=6&year2=1997&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=7&year2=1997&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=8&year2=1997&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=9&year2=1997&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=10&year2=1997&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=11&year2=1997&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=12&year2=1997&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=13&year2=1997&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=14&year2=1997&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=15&year2=1997&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=16&year2=1997&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=17&year2=1997&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=18&year2=1997&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=19&year2=1997&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=20&year2=1997&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=21&year2=1997&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=22&year2=1997&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=23&year2=1997&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=24&year2=1997&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=25&year2=1997&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=26&year2=1997&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=27&year2=1997&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=28&year2=1997&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=29&year2=1997&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=30&year2=1997&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=8&day=31&year2=1997&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=1&year2=1997&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=2&year2=1997&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=3&year2=1997&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=4&year2=1997&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=5&year2=1997&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=6&year2=1997&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=7&year2=1997&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=8&year2=1997&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=9&year2=1997&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=10&year2=1997&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=11&year2=1997&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=12&year2=1997&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=13&year2=1997&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=14&year2=1997&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=15&year2=1997&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=16&year2=1997&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=17&year2=1997&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=18&year2=1997&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=19&year2=1997&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=20&year2=1997&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=21&year2=1997&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=22&year2=1997&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=23&year2=1997&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=24&year2=1997&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=25&year2=1997&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=26&year2=1997&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=27&year2=1997&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=28&year2=1997&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=29&year2=1997&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=9&day=30&year2=1997&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=1&year2=1997&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=2&year2=1997&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=3&year2=1997&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=4&year2=1997&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=5&year2=1997&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=6&year2=1997&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=7&year2=1997&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=8&year2=1997&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=9&year2=1997&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=10&year2=1997&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=11&year2=1997&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=12&year2=1997&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=13&year2=1997&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=14&year2=1997&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=15&year2=1997&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=16&year2=1997&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=17&year2=1997&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=18&year2=1997&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=19&year2=1997&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=20&year2=1997&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=21&year2=1997&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=22&year2=1997&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=23&year2=1997&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=24&year2=1997&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=25&year2=1997&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=26&year2=1997&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=27&year2=1997&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=28&year2=1997&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=29&year2=1997&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=30&year2=1997&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=10&day=31&year2=1997&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=1&year2=1997&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=2&year2=1997&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=3&year2=1997&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=4&year2=1997&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=5&year2=1997&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=6&year2=1997&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=7&year2=1997&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=8&year2=1997&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=9&year2=1997&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=10&year2=1997&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=11&year2=1997&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=12&year2=1997&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=13&year2=1997&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=14&year2=1997&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=15&year2=1997&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=16&year2=1997&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=17&year2=1997&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=18&year2=1997&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=19&year2=1997&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=20&year2=1997&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=21&year2=1997&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=22&year2=1997&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=23&year2=1997&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=24&year2=1997&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=25&year2=1997&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=26&year2=1997&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=27&year2=1997&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=28&year2=1997&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=29&year2=1997&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=11&day=30&year2=1997&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=1&year2=1997&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=2&year2=1997&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=3&year2=1997&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=4&year2=1997&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=5&year2=1997&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=6&year2=1997&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=7&year2=1997&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=8&year2=1997&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=9&year2=1997&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=10&year2=1997&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=11&year2=1997&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=12&year2=1997&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=13&year2=1997&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=14&year2=1997&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=15&year2=1997&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=16&year2=1997&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=17&year2=1997&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=18&year2=1997&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=19&year2=1997&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=20&year2=1997&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=21&year2=1997&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=22&year2=1997&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=23&year2=1997&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=24&year2=1997&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=25&year2=1997&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=26&year2=1997&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=27&year2=1997&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=28&year2=1997&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=29&year2=1997&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=30&year2=1997&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1997&month=12&day=31&year2=1998&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=1&year2=1998&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=2&year2=1998&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=3&year2=1998&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=4&year2=1998&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=5&year2=1998&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=6&year2=1998&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=7&year2=1998&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=8&year2=1998&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=9&year2=1998&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=10&year2=1998&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=11&year2=1998&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=12&year2=1998&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=13&year2=1998&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=14&year2=1998&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=15&year2=1998&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=16&year2=1998&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=17&year2=1998&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=18&year2=1998&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=19&year2=1998&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=20&year2=1998&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=21&year2=1998&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=22&year2=1998&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=23&year2=1998&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=24&year2=1998&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=25&year2=1998&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=26&year2=1998&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=27&year2=1998&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=28&year2=1998&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=29&year2=1998&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=30&year2=1998&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=1&day=31&year2=1998&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=1&year2=1998&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=2&year2=1998&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=3&year2=1998&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=4&year2=1998&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=5&year2=1998&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=6&year2=1998&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=7&year2=1998&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=8&year2=1998&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=9&year2=1998&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=10&year2=1998&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=11&year2=1998&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=12&year2=1998&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=13&year2=1998&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=14&year2=1998&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=15&year2=1998&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=16&year2=1998&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=17&year2=1998&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=18&year2=1998&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=19&year2=1998&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=20&year2=1998&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=21&year2=1998&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=22&year2=1998&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=23&year2=1998&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=24&year2=1998&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=25&year2=1998&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=26&year2=1998&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=27&year2=1998&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=2&day=28&year2=1998&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=1&year2=1998&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=2&year2=1998&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=3&year2=1998&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=4&year2=1998&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=5&year2=1998&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=6&year2=1998&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=7&year2=1998&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=8&year2=1998&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=9&year2=1998&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=10&year2=1998&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=11&year2=1998&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=12&year2=1998&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=13&year2=1998&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=14&year2=1998&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=15&year2=1998&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=16&year2=1998&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=17&year2=1998&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=18&year2=1998&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=19&year2=1998&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=20&year2=1998&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=21&year2=1998&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=22&year2=1998&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=23&year2=1998&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=24&year2=1998&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=25&year2=1998&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=26&year2=1998&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=27&year2=1998&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=28&year2=1998&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=29&year2=1998&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=30&year2=1998&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=3&day=31&year2=1998&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=1&year2=1998&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=2&year2=1998&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=3&year2=1998&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=4&year2=1998&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=5&year2=1998&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=6&year2=1998&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=7&year2=1998&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=8&year2=1998&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=9&year2=1998&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=10&year2=1998&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=11&year2=1998&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=12&year2=1998&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=13&year2=1998&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=14&year2=1998&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=15&year2=1998&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=16&year2=1998&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=17&year2=1998&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=18&year2=1998&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=19&year2=1998&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=20&year2=1998&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=21&year2=1998&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=22&year2=1998&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=23&year2=1998&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=24&year2=1998&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=25&year2=1998&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=26&year2=1998&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=27&year2=1998&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=28&year2=1998&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=29&year2=1998&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=4&day=30&year2=1998&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=1&year2=1998&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=2&year2=1998&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=3&year2=1998&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=4&year2=1998&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=5&year2=1998&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=6&year2=1998&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=7&year2=1998&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=8&year2=1998&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=9&year2=1998&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=10&year2=1998&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=11&year2=1998&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=12&year2=1998&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=13&year2=1998&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=14&year2=1998&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=15&year2=1998&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=16&year2=1998&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=17&year2=1998&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=18&year2=1998&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=19&year2=1998&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=20&year2=1998&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=21&year2=1998&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=22&year2=1998&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=23&year2=1998&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=24&year2=1998&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=25&year2=1998&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=26&year2=1998&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=27&year2=1998&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=28&year2=1998&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=29&year2=1998&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=30&year2=1998&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=5&day=31&year2=1998&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=1&year2=1998&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=2&year2=1998&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=3&year2=1998&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=4&year2=1998&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=5&year2=1998&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=6&year2=1998&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=7&year2=1998&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=8&year2=1998&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=9&year2=1998&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=10&year2=1998&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=11&year2=1998&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=12&year2=1998&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=13&year2=1998&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=14&year2=1998&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=15&year2=1998&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=16&year2=1998&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=17&year2=1998&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=18&year2=1998&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=19&year2=1998&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=20&year2=1998&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=21&year2=1998&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=22&year2=1998&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=23&year2=1998&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=24&year2=1998&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=25&year2=1998&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=26&year2=1998&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=27&year2=1998&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=28&year2=1998&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=29&year2=1998&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=6&day=30&year2=1998&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=1&year2=1998&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=2&year2=1998&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=3&year2=1998&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=4&year2=1998&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=5&year2=1998&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=6&year2=1998&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=7&year2=1998&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=8&year2=1998&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=9&year2=1998&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=10&year2=1998&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=11&year2=1998&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=12&year2=1998&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=13&year2=1998&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=14&year2=1998&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=15&year2=1998&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=16&year2=1998&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=17&year2=1998&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=18&year2=1998&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=19&year2=1998&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=20&year2=1998&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=21&year2=1998&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=22&year2=1998&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=23&year2=1998&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=24&year2=1998&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=25&year2=1998&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=26&year2=1998&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=27&year2=1998&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=28&year2=1998&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=29&year2=1998&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=30&year2=1998&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=7&day=31&year2=1998&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=1&year2=1998&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=2&year2=1998&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=3&year2=1998&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=4&year2=1998&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=5&year2=1998&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=6&year2=1998&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=7&year2=1998&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=8&year2=1998&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=9&year2=1998&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=10&year2=1998&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=11&year2=1998&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=12&year2=1998&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=13&year2=1998&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=14&year2=1998&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=15&year2=1998&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=16&year2=1998&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=17&year2=1998&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=18&year2=1998&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=19&year2=1998&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=20&year2=1998&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=21&year2=1998&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=22&year2=1998&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=23&year2=1998&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=24&year2=1998&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=25&year2=1998&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=26&year2=1998&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=27&year2=1998&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=28&year2=1998&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=29&year2=1998&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=30&year2=1998&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=8&day=31&year2=1998&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=1&year2=1998&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=2&year2=1998&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=3&year2=1998&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=4&year2=1998&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=5&year2=1998&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=6&year2=1998&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=7&year2=1998&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=8&year2=1998&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=9&year2=1998&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=10&year2=1998&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=11&year2=1998&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=12&year2=1998&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=13&year2=1998&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=14&year2=1998&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=15&year2=1998&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=16&year2=1998&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=17&year2=1998&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=18&year2=1998&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=19&year2=1998&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=20&year2=1998&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=21&year2=1998&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=22&year2=1998&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=23&year2=1998&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=24&year2=1998&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=25&year2=1998&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=26&year2=1998&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=27&year2=1998&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=28&year2=1998&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=29&year2=1998&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=9&day=30&year2=1998&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=1&year2=1998&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=2&year2=1998&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=3&year2=1998&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=4&year2=1998&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=5&year2=1998&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=6&year2=1998&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=7&year2=1998&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=8&year2=1998&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=9&year2=1998&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=10&year2=1998&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=11&year2=1998&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=12&year2=1998&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=13&year2=1998&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=14&year2=1998&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=15&year2=1998&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=16&year2=1998&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=17&year2=1998&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=18&year2=1998&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=19&year2=1998&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=20&year2=1998&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=21&year2=1998&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=22&year2=1998&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=23&year2=1998&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=24&year2=1998&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=25&year2=1998&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=26&year2=1998&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=27&year2=1998&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=28&year2=1998&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=29&year2=1998&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=30&year2=1998&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=10&day=31&year2=1998&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=1&year2=1998&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=2&year2=1998&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=3&year2=1998&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=4&year2=1998&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=5&year2=1998&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=6&year2=1998&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=7&year2=1998&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=8&year2=1998&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=9&year2=1998&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=10&year2=1998&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=11&year2=1998&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=12&year2=1998&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=13&year2=1998&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=14&year2=1998&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=15&year2=1998&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=16&year2=1998&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=17&year2=1998&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=18&year2=1998&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=19&year2=1998&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=20&year2=1998&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=21&year2=1998&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=22&year2=1998&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=23&year2=1998&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=24&year2=1998&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=25&year2=1998&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=26&year2=1998&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=27&year2=1998&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=28&year2=1998&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=29&year2=1998&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=11&day=30&year2=1998&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=1&year2=1998&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=2&year2=1998&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=3&year2=1998&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=4&year2=1998&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=5&year2=1998&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=6&year2=1998&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=7&year2=1998&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=8&year2=1998&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=9&year2=1998&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=10&year2=1998&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=11&year2=1998&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=12&year2=1998&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=13&year2=1998&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=14&year2=1998&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=15&year2=1998&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=16&year2=1998&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=17&year2=1998&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=18&year2=1998&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=19&year2=1998&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=20&year2=1998&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=21&year2=1998&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=22&year2=1998&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=23&year2=1998&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=24&year2=1998&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=25&year2=1998&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=26&year2=1998&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=27&year2=1998&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=28&year2=1998&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=29&year2=1998&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=30&year2=1998&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1998&month=12&day=31&year2=1999&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=1&year2=1999&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=2&year2=1999&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=3&year2=1999&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=4&year2=1999&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=5&year2=1999&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=6&year2=1999&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=7&year2=1999&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=8&year2=1999&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=9&year2=1999&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=10&year2=1999&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=11&year2=1999&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=12&year2=1999&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=13&year2=1999&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=14&year2=1999&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=15&year2=1999&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=16&year2=1999&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=17&year2=1999&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=18&year2=1999&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=19&year2=1999&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=20&year2=1999&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=21&year2=1999&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=22&year2=1999&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=23&year2=1999&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=24&year2=1999&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=25&year2=1999&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=26&year2=1999&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=27&year2=1999&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=28&year2=1999&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=29&year2=1999&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=30&year2=1999&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=1&day=31&year2=1999&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=1&year2=1999&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=2&year2=1999&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=3&year2=1999&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=4&year2=1999&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=5&year2=1999&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=6&year2=1999&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=7&year2=1999&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=8&year2=1999&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=9&year2=1999&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=10&year2=1999&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=11&year2=1999&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=12&year2=1999&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=13&year2=1999&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=14&year2=1999&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=15&year2=1999&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=16&year2=1999&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=17&year2=1999&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=18&year2=1999&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=19&year2=1999&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=20&year2=1999&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=21&year2=1999&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=22&year2=1999&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=23&year2=1999&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=24&year2=1999&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=25&year2=1999&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=26&year2=1999&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=27&year2=1999&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=2&day=28&year2=1999&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=1&year2=1999&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=2&year2=1999&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=3&year2=1999&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=4&year2=1999&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=5&year2=1999&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=6&year2=1999&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=7&year2=1999&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=8&year2=1999&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=9&year2=1999&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=10&year2=1999&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=11&year2=1999&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=12&year2=1999&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=13&year2=1999&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=14&year2=1999&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=15&year2=1999&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=16&year2=1999&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=17&year2=1999&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=18&year2=1999&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=19&year2=1999&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=20&year2=1999&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=21&year2=1999&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=22&year2=1999&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=23&year2=1999&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=24&year2=1999&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=25&year2=1999&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=26&year2=1999&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=27&year2=1999&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=28&year2=1999&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=29&year2=1999&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=30&year2=1999&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=3&day=31&year2=1999&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=1&year2=1999&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=2&year2=1999&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=3&year2=1999&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=4&year2=1999&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=5&year2=1999&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=6&year2=1999&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=7&year2=1999&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=8&year2=1999&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=9&year2=1999&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=10&year2=1999&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=11&year2=1999&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=12&year2=1999&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=13&year2=1999&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=14&year2=1999&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=15&year2=1999&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=16&year2=1999&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=17&year2=1999&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=18&year2=1999&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=19&year2=1999&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=20&year2=1999&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=21&year2=1999&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=22&year2=1999&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=23&year2=1999&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=24&year2=1999&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=25&year2=1999&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=26&year2=1999&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=27&year2=1999&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=28&year2=1999&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=29&year2=1999&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=4&day=30&year2=1999&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=1&year2=1999&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=2&year2=1999&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=3&year2=1999&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=4&year2=1999&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=5&year2=1999&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=6&year2=1999&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=7&year2=1999&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=8&year2=1999&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=9&year2=1999&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=10&year2=1999&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=11&year2=1999&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=12&year2=1999&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=13&year2=1999&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=14&year2=1999&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=15&year2=1999&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=16&year2=1999&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=17&year2=1999&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=18&year2=1999&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=19&year2=1999&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=20&year2=1999&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=21&year2=1999&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=22&year2=1999&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=23&year2=1999&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=24&year2=1999&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=25&year2=1999&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=26&year2=1999&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=27&year2=1999&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=28&year2=1999&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=29&year2=1999&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=30&year2=1999&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=5&day=31&year2=1999&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=1&year2=1999&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=2&year2=1999&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=3&year2=1999&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=4&year2=1999&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=5&year2=1999&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=6&year2=1999&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=7&year2=1999&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=8&year2=1999&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=9&year2=1999&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=10&year2=1999&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=11&year2=1999&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=12&year2=1999&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=13&year2=1999&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=14&year2=1999&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=15&year2=1999&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=16&year2=1999&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=17&year2=1999&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=18&year2=1999&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=19&year2=1999&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=20&year2=1999&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=21&year2=1999&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=22&year2=1999&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=23&year2=1999&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=24&year2=1999&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=25&year2=1999&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=26&year2=1999&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=27&year2=1999&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=28&year2=1999&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=29&year2=1999&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=6&day=30&year2=1999&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=1&year2=1999&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=2&year2=1999&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=3&year2=1999&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=4&year2=1999&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=5&year2=1999&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=6&year2=1999&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=7&year2=1999&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=8&year2=1999&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=9&year2=1999&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=10&year2=1999&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=11&year2=1999&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=12&year2=1999&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=13&year2=1999&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=14&year2=1999&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=15&year2=1999&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=16&year2=1999&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=17&year2=1999&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=18&year2=1999&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=19&year2=1999&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=20&year2=1999&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=21&year2=1999&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=22&year2=1999&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=23&year2=1999&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=24&year2=1999&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=25&year2=1999&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=26&year2=1999&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=27&year2=1999&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=28&year2=1999&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=29&year2=1999&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=30&year2=1999&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=7&day=31&year2=1999&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=1&year2=1999&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=2&year2=1999&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=3&year2=1999&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=4&year2=1999&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=5&year2=1999&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=6&year2=1999&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=7&year2=1999&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=8&year2=1999&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=9&year2=1999&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=10&year2=1999&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=11&year2=1999&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=12&year2=1999&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=13&year2=1999&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=14&year2=1999&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=15&year2=1999&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=16&year2=1999&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=17&year2=1999&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=18&year2=1999&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=19&year2=1999&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=20&year2=1999&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=21&year2=1999&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=22&year2=1999&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=23&year2=1999&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=24&year2=1999&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=25&year2=1999&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=26&year2=1999&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=27&year2=1999&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=28&year2=1999&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=29&year2=1999&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=30&year2=1999&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=8&day=31&year2=1999&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=1&year2=1999&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=2&year2=1999&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=3&year2=1999&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=4&year2=1999&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=5&year2=1999&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=6&year2=1999&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=7&year2=1999&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=8&year2=1999&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=9&year2=1999&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=10&year2=1999&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=11&year2=1999&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=12&year2=1999&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=13&year2=1999&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=14&year2=1999&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=15&year2=1999&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=16&year2=1999&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=17&year2=1999&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=18&year2=1999&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=19&year2=1999&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=20&year2=1999&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=21&year2=1999&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=22&year2=1999&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=23&year2=1999&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=24&year2=1999&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=25&year2=1999&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=26&year2=1999&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=27&year2=1999&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=28&year2=1999&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=29&year2=1999&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=9&day=30&year2=1999&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=1&year2=1999&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=2&year2=1999&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=3&year2=1999&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=4&year2=1999&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=5&year2=1999&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=6&year2=1999&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=7&year2=1999&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=8&year2=1999&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=9&year2=1999&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=10&year2=1999&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=11&year2=1999&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=12&year2=1999&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=13&year2=1999&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=14&year2=1999&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=15&year2=1999&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=16&year2=1999&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=17&year2=1999&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=18&year2=1999&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=19&year2=1999&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=20&year2=1999&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=21&year2=1999&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=22&year2=1999&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=23&year2=1999&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=24&year2=1999&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=25&year2=1999&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=26&year2=1999&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=27&year2=1999&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=28&year2=1999&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=29&year2=1999&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=30&year2=1999&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=10&day=31&year2=1999&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=1&year2=1999&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=2&year2=1999&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=3&year2=1999&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=4&year2=1999&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=5&year2=1999&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=6&year2=1999&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=7&year2=1999&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=8&year2=1999&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=9&year2=1999&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=10&year2=1999&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=11&year2=1999&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=12&year2=1999&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=13&year2=1999&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=14&year2=1999&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=15&year2=1999&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=16&year2=1999&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=17&year2=1999&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=18&year2=1999&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=19&year2=1999&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=20&year2=1999&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=21&year2=1999&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=22&year2=1999&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=23&year2=1999&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=24&year2=1999&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=25&year2=1999&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=26&year2=1999&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=27&year2=1999&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=28&year2=1999&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=29&year2=1999&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=11&day=30&year2=1999&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=1&year2=1999&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=2&year2=1999&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=3&year2=1999&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=4&year2=1999&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=5&year2=1999&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=6&year2=1999&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=7&year2=1999&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=8&year2=1999&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=9&year2=1999&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=10&year2=1999&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=11&year2=1999&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=12&year2=1999&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=13&year2=1999&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=14&year2=1999&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=15&year2=1999&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=16&year2=1999&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=17&year2=1999&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=18&year2=1999&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=19&year2=1999&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=20&year2=1999&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=21&year2=1999&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=22&year2=1999&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=23&year2=1999&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=24&year2=1999&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=25&year2=1999&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=26&year2=1999&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=27&year2=1999&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=28&year2=1999&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=29&year2=1999&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=30&year2=1999&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=1999&month=12&day=31&year2=2000&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=1&year2=2000&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=2&year2=2000&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=3&year2=2000&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=4&year2=2000&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=5&year2=2000&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=6&year2=2000&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=7&year2=2000&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=8&year2=2000&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=9&year2=2000&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=10&year2=2000&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=11&year2=2000&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=12&year2=2000&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=13&year2=2000&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=14&year2=2000&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=15&year2=2000&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=16&year2=2000&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=17&year2=2000&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=18&year2=2000&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=19&year2=2000&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=20&year2=2000&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=21&year2=2000&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=22&year2=2000&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=23&year2=2000&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=24&year2=2000&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=25&year2=2000&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=26&year2=2000&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=27&year2=2000&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=28&year2=2000&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=29&year2=2000&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=30&year2=2000&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=1&day=31&year2=2000&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=1&year2=2000&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=2&year2=2000&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=3&year2=2000&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=4&year2=2000&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=5&year2=2000&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=6&year2=2000&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=7&year2=2000&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=8&year2=2000&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=9&year2=2000&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=10&year2=2000&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=11&year2=2000&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=12&year2=2000&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=13&year2=2000&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=14&year2=2000&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=15&year2=2000&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=16&year2=2000&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=17&year2=2000&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=18&year2=2000&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=19&year2=2000&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=20&year2=2000&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=21&year2=2000&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=22&year2=2000&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=23&year2=2000&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=24&year2=2000&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=25&year2=2000&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=26&year2=2000&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=27&year2=2000&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=28&year2=2000&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=2&day=29&year2=2000&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=1&year2=2000&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=2&year2=2000&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=3&year2=2000&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=4&year2=2000&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=5&year2=2000&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=6&year2=2000&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=7&year2=2000&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=8&year2=2000&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=9&year2=2000&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=10&year2=2000&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=11&year2=2000&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=12&year2=2000&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=13&year2=2000&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=14&year2=2000&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=15&year2=2000&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=16&year2=2000&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=17&year2=2000&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=18&year2=2000&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=19&year2=2000&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=20&year2=2000&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=21&year2=2000&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=22&year2=2000&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=23&year2=2000&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=24&year2=2000&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=25&year2=2000&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=26&year2=2000&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=27&year2=2000&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=28&year2=2000&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=29&year2=2000&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=30&year2=2000&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=3&day=31&year2=2000&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=1&year2=2000&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=2&year2=2000&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=3&year2=2000&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=4&year2=2000&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=5&year2=2000&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=6&year2=2000&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=7&year2=2000&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=8&year2=2000&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=9&year2=2000&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=10&year2=2000&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=11&year2=2000&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=12&year2=2000&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=13&year2=2000&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=14&year2=2000&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=15&year2=2000&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=16&year2=2000&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=17&year2=2000&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=18&year2=2000&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=19&year2=2000&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=20&year2=2000&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=21&year2=2000&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=22&year2=2000&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=23&year2=2000&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=24&year2=2000&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=25&year2=2000&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=26&year2=2000&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=27&year2=2000&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=28&year2=2000&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=29&year2=2000&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=4&day=30&year2=2000&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=1&year2=2000&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=2&year2=2000&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=3&year2=2000&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=4&year2=2000&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=5&year2=2000&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=6&year2=2000&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=7&year2=2000&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=8&year2=2000&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=9&year2=2000&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=10&year2=2000&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=11&year2=2000&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=12&year2=2000&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=13&year2=2000&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=14&year2=2000&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=15&year2=2000&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=16&year2=2000&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=17&year2=2000&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=18&year2=2000&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=19&year2=2000&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=20&year2=2000&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=21&year2=2000&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=22&year2=2000&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=23&year2=2000&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=24&year2=2000&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=25&year2=2000&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=26&year2=2000&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=27&year2=2000&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=28&year2=2000&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=29&year2=2000&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=30&year2=2000&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=5&day=31&year2=2000&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=1&year2=2000&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=2&year2=2000&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=3&year2=2000&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=4&year2=2000&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=5&year2=2000&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=6&year2=2000&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=7&year2=2000&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=8&year2=2000&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=9&year2=2000&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=10&year2=2000&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=11&year2=2000&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=12&year2=2000&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=13&year2=2000&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=14&year2=2000&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=15&year2=2000&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=16&year2=2000&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=17&year2=2000&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=18&year2=2000&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=19&year2=2000&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=20&year2=2000&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=21&year2=2000&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=22&year2=2000&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=23&year2=2000&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=24&year2=2000&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=25&year2=2000&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=26&year2=2000&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=27&year2=2000&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=28&year2=2000&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=29&year2=2000&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=6&day=30&year2=2000&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=1&year2=2000&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=2&year2=2000&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=3&year2=2000&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=4&year2=2000&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=5&year2=2000&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=6&year2=2000&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=7&year2=2000&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=8&year2=2000&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=9&year2=2000&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=10&year2=2000&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=11&year2=2000&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=12&year2=2000&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=13&year2=2000&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=14&year2=2000&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=15&year2=2000&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=16&year2=2000&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=17&year2=2000&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=18&year2=2000&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=19&year2=2000&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=20&year2=2000&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=21&year2=2000&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=22&year2=2000&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=23&year2=2000&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=24&year2=2000&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=25&year2=2000&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=26&year2=2000&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=27&year2=2000&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=28&year2=2000&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=29&year2=2000&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=30&year2=2000&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=7&day=31&year2=2000&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=1&year2=2000&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=2&year2=2000&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=3&year2=2000&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=4&year2=2000&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=5&year2=2000&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=6&year2=2000&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=7&year2=2000&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=8&year2=2000&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=9&year2=2000&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=10&year2=2000&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=11&year2=2000&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=12&year2=2000&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=13&year2=2000&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=14&year2=2000&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=15&year2=2000&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=16&year2=2000&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=17&year2=2000&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=18&year2=2000&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=19&year2=2000&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=20&year2=2000&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=21&year2=2000&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=22&year2=2000&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=23&year2=2000&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=24&year2=2000&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=25&year2=2000&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=26&year2=2000&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=27&year2=2000&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=28&year2=2000&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=29&year2=2000&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=30&year2=2000&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=8&day=31&year2=2000&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=1&year2=2000&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=2&year2=2000&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=3&year2=2000&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=4&year2=2000&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=5&year2=2000&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=6&year2=2000&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=7&year2=2000&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=8&year2=2000&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=9&year2=2000&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=10&year2=2000&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=11&year2=2000&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=12&year2=2000&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=13&year2=2000&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=14&year2=2000&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=15&year2=2000&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=16&year2=2000&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=17&year2=2000&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=18&year2=2000&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=19&year2=2000&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=20&year2=2000&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=21&year2=2000&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=22&year2=2000&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=23&year2=2000&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=24&year2=2000&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=25&year2=2000&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=26&year2=2000&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=27&year2=2000&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=28&year2=2000&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=29&year2=2000&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=9&day=30&year2=2000&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=1&year2=2000&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=2&year2=2000&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=3&year2=2000&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=4&year2=2000&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=5&year2=2000&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=6&year2=2000&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=7&year2=2000&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=8&year2=2000&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=9&year2=2000&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=10&year2=2000&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=11&year2=2000&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=12&year2=2000&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=13&year2=2000&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=14&year2=2000&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=15&year2=2000&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=16&year2=2000&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=17&year2=2000&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=18&year2=2000&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=19&year2=2000&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=20&year2=2000&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=21&year2=2000&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=22&year2=2000&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=23&year2=2000&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=24&year2=2000&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=25&year2=2000&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=26&year2=2000&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=27&year2=2000&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=28&year2=2000&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=29&year2=2000&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=30&year2=2000&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=10&day=31&year2=2000&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=1&year2=2000&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=2&year2=2000&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=3&year2=2000&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=4&year2=2000&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=5&year2=2000&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=6&year2=2000&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=7&year2=2000&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=8&year2=2000&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=9&year2=2000&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=10&year2=2000&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=11&year2=2000&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=12&year2=2000&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=13&year2=2000&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=14&year2=2000&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=15&year2=2000&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=16&year2=2000&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=17&year2=2000&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=18&year2=2000&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=19&year2=2000&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=20&year2=2000&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=21&year2=2000&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=22&year2=2000&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=23&year2=2000&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=24&year2=2000&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=25&year2=2000&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=26&year2=2000&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=27&year2=2000&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=28&year2=2000&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=29&year2=2000&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=11&day=30&year2=2000&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=1&year2=2000&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=2&year2=2000&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=3&year2=2000&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=4&year2=2000&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=5&year2=2000&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=6&year2=2000&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=7&year2=2000&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=8&year2=2000&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=9&year2=2000&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=10&year2=2000&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=11&year2=2000&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=12&year2=2000&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=13&year2=2000&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=14&year2=2000&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=15&year2=2000&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=16&year2=2000&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=17&year2=2000&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=18&year2=2000&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=19&year2=2000&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=20&year2=2000&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=21&year2=2000&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=22&year2=2000&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=23&year2=2000&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=24&year2=2000&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=25&year2=2000&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=26&year2=2000&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=27&year2=2000&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=28&year2=2000&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=29&year2=2000&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=30&year2=2000&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2000&month=12&day=31&year2=2001&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=1&year2=2001&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=2&year2=2001&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=3&year2=2001&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=4&year2=2001&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=5&year2=2001&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=6&year2=2001&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=7&year2=2001&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=8&year2=2001&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=9&year2=2001&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=10&year2=2001&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=11&year2=2001&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=12&year2=2001&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=13&year2=2001&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=14&year2=2001&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=15&year2=2001&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=16&year2=2001&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=17&year2=2001&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=18&year2=2001&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=19&year2=2001&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=20&year2=2001&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=21&year2=2001&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=22&year2=2001&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=23&year2=2001&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=24&year2=2001&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=25&year2=2001&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=26&year2=2001&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=27&year2=2001&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=28&year2=2001&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=29&year2=2001&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=30&year2=2001&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=1&day=31&year2=2001&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=1&year2=2001&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=2&year2=2001&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=3&year2=2001&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=4&year2=2001&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=5&year2=2001&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=6&year2=2001&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=7&year2=2001&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=8&year2=2001&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=9&year2=2001&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=10&year2=2001&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=11&year2=2001&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=12&year2=2001&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=13&year2=2001&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=14&year2=2001&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=15&year2=2001&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=16&year2=2001&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=17&year2=2001&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=18&year2=2001&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=19&year2=2001&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=20&year2=2001&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=21&year2=2001&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=22&year2=2001&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=23&year2=2001&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=24&year2=2001&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=25&year2=2001&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=26&year2=2001&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=27&year2=2001&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=2&day=28&year2=2001&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=1&year2=2001&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=2&year2=2001&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=3&year2=2001&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=4&year2=2001&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=5&year2=2001&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=6&year2=2001&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=7&year2=2001&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=8&year2=2001&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=9&year2=2001&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=10&year2=2001&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=11&year2=2001&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=12&year2=2001&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=13&year2=2001&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=14&year2=2001&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=15&year2=2001&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=16&year2=2001&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=17&year2=2001&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=18&year2=2001&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=19&year2=2001&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=20&year2=2001&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=21&year2=2001&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=22&year2=2001&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=23&year2=2001&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=24&year2=2001&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=25&year2=2001&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=26&year2=2001&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=27&year2=2001&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=28&year2=2001&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=29&year2=2001&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=30&year2=2001&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=3&day=31&year2=2001&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=1&year2=2001&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=2&year2=2001&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=3&year2=2001&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=4&year2=2001&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=5&year2=2001&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=6&year2=2001&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=7&year2=2001&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=8&year2=2001&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=9&year2=2001&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=10&year2=2001&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=11&year2=2001&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=12&year2=2001&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=13&year2=2001&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=14&year2=2001&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=15&year2=2001&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=16&year2=2001&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=17&year2=2001&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=18&year2=2001&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=19&year2=2001&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=20&year2=2001&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=21&year2=2001&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=22&year2=2001&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=23&year2=2001&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=24&year2=2001&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=25&year2=2001&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=26&year2=2001&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=27&year2=2001&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=28&year2=2001&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=29&year2=2001&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=4&day=30&year2=2001&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=1&year2=2001&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=2&year2=2001&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=3&year2=2001&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=4&year2=2001&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=5&year2=2001&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=6&year2=2001&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=7&year2=2001&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=8&year2=2001&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=9&year2=2001&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=10&year2=2001&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=11&year2=2001&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=12&year2=2001&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=13&year2=2001&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=14&year2=2001&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=15&year2=2001&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=16&year2=2001&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=17&year2=2001&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=18&year2=2001&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=19&year2=2001&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=20&year2=2001&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=21&year2=2001&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=22&year2=2001&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=23&year2=2001&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=24&year2=2001&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=25&year2=2001&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=26&year2=2001&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=27&year2=2001&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=28&year2=2001&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=29&year2=2001&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=30&year2=2001&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=5&day=31&year2=2001&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=1&year2=2001&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=2&year2=2001&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=3&year2=2001&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=4&year2=2001&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=5&year2=2001&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=6&year2=2001&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=7&year2=2001&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=8&year2=2001&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=9&year2=2001&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=10&year2=2001&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=11&year2=2001&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=12&year2=2001&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=13&year2=2001&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=14&year2=2001&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=15&year2=2001&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=16&year2=2001&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=17&year2=2001&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=18&year2=2001&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=19&year2=2001&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=20&year2=2001&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=21&year2=2001&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=22&year2=2001&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=23&year2=2001&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=24&year2=2001&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=25&year2=2001&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=26&year2=2001&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=27&year2=2001&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=28&year2=2001&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=29&year2=2001&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=6&day=30&year2=2001&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=1&year2=2001&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=2&year2=2001&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=3&year2=2001&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=4&year2=2001&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=5&year2=2001&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=6&year2=2001&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=7&year2=2001&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=8&year2=2001&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=9&year2=2001&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=10&year2=2001&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=11&year2=2001&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=12&year2=2001&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=13&year2=2001&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=14&year2=2001&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=15&year2=2001&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=16&year2=2001&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=17&year2=2001&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=18&year2=2001&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=19&year2=2001&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=20&year2=2001&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=21&year2=2001&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=22&year2=2001&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=23&year2=2001&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=24&year2=2001&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=25&year2=2001&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=26&year2=2001&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=27&year2=2001&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=28&year2=2001&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=29&year2=2001&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=30&year2=2001&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=7&day=31&year2=2001&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=1&year2=2001&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=2&year2=2001&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=3&year2=2001&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=4&year2=2001&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=5&year2=2001&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=6&year2=2001&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=7&year2=2001&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=8&year2=2001&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=9&year2=2001&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=10&year2=2001&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=11&year2=2001&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=12&year2=2001&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=13&year2=2001&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=14&year2=2001&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=15&year2=2001&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=16&year2=2001&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=17&year2=2001&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=18&year2=2001&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=19&year2=2001&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=20&year2=2001&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=21&year2=2001&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=22&year2=2001&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=23&year2=2001&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=24&year2=2001&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=25&year2=2001&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=26&year2=2001&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=27&year2=2001&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=28&year2=2001&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=29&year2=2001&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=30&year2=2001&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=8&day=31&year2=2001&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=1&year2=2001&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=2&year2=2001&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=3&year2=2001&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=4&year2=2001&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=5&year2=2001&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=6&year2=2001&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=7&year2=2001&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=8&year2=2001&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=9&year2=2001&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=10&year2=2001&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=11&year2=2001&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=12&year2=2001&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=13&year2=2001&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=14&year2=2001&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=15&year2=2001&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=16&year2=2001&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=17&year2=2001&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=18&year2=2001&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=19&year2=2001&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=20&year2=2001&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=21&year2=2001&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=22&year2=2001&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=23&year2=2001&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=24&year2=2001&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=25&year2=2001&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=26&year2=2001&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=27&year2=2001&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=28&year2=2001&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=29&year2=2001&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=9&day=30&year2=2001&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=1&year2=2001&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=2&year2=2001&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=3&year2=2001&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=4&year2=2001&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=5&year2=2001&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=6&year2=2001&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=7&year2=2001&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=8&year2=2001&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=9&year2=2001&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=10&year2=2001&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=11&year2=2001&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=12&year2=2001&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=13&year2=2001&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=14&year2=2001&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=15&year2=2001&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=16&year2=2001&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=17&year2=2001&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=18&year2=2001&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=19&year2=2001&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=20&year2=2001&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=21&year2=2001&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=22&year2=2001&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=23&year2=2001&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=24&year2=2001&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=25&year2=2001&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=26&year2=2001&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=27&year2=2001&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=28&year2=2001&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=29&year2=2001&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=30&year2=2001&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=10&day=31&year2=2001&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=1&year2=2001&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=2&year2=2001&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=3&year2=2001&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=4&year2=2001&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=5&year2=2001&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=6&year2=2001&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=7&year2=2001&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=8&year2=2001&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=9&year2=2001&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=10&year2=2001&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=11&year2=2001&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=12&year2=2001&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=13&year2=2001&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=14&year2=2001&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=15&year2=2001&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=16&year2=2001&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=17&year2=2001&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=18&year2=2001&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=19&year2=2001&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=20&year2=2001&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=21&year2=2001&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=22&year2=2001&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=23&year2=2001&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=24&year2=2001&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=25&year2=2001&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=26&year2=2001&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=27&year2=2001&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=28&year2=2001&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=29&year2=2001&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=11&day=30&year2=2001&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=1&year2=2001&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=2&year2=2001&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=3&year2=2001&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=4&year2=2001&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=5&year2=2001&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=6&year2=2001&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=7&year2=2001&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=8&year2=2001&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=9&year2=2001&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=10&year2=2001&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=11&year2=2001&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=12&year2=2001&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=13&year2=2001&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=14&year2=2001&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=15&year2=2001&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=16&year2=2001&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=17&year2=2001&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=18&year2=2001&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=19&year2=2001&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=20&year2=2001&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=21&year2=2001&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=22&year2=2001&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=23&year2=2001&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=24&year2=2001&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=25&year2=2001&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=26&year2=2001&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=27&year2=2001&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=28&year2=2001&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=29&year2=2001&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=30&year2=2001&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2001&month=12&day=31&year2=2002&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=1&year2=2002&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=2&year2=2002&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=3&year2=2002&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=4&year2=2002&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=5&year2=2002&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=6&year2=2002&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=7&year2=2002&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=8&year2=2002&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=9&year2=2002&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=10&year2=2002&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=11&year2=2002&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=12&year2=2002&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=13&year2=2002&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=14&year2=2002&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=15&year2=2002&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=16&year2=2002&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=17&year2=2002&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=18&year2=2002&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=19&year2=2002&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=20&year2=2002&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=21&year2=2002&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=22&year2=2002&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=23&year2=2002&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=24&year2=2002&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=25&year2=2002&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=26&year2=2002&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=27&year2=2002&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=28&year2=2002&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=29&year2=2002&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=30&year2=2002&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=1&day=31&year2=2002&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=1&year2=2002&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=2&year2=2002&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=3&year2=2002&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=4&year2=2002&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=5&year2=2002&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=6&year2=2002&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=7&year2=2002&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=8&year2=2002&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=9&year2=2002&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=10&year2=2002&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=11&year2=2002&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=12&year2=2002&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=13&year2=2002&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=14&year2=2002&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=15&year2=2002&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=16&year2=2002&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=17&year2=2002&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=18&year2=2002&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=19&year2=2002&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=20&year2=2002&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=21&year2=2002&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=22&year2=2002&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=23&year2=2002&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=24&year2=2002&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=25&year2=2002&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=26&year2=2002&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=27&year2=2002&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=2&day=28&year2=2002&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=1&year2=2002&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=2&year2=2002&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=3&year2=2002&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=4&year2=2002&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=5&year2=2002&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=6&year2=2002&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=7&year2=2002&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=8&year2=2002&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=9&year2=2002&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=10&year2=2002&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=11&year2=2002&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=12&year2=2002&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=13&year2=2002&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=14&year2=2002&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=15&year2=2002&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=16&year2=2002&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=17&year2=2002&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=18&year2=2002&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=19&year2=2002&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=20&year2=2002&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=21&year2=2002&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=22&year2=2002&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=23&year2=2002&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=24&year2=2002&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=25&year2=2002&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=26&year2=2002&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=27&year2=2002&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=28&year2=2002&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=29&year2=2002&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=30&year2=2002&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=3&day=31&year2=2002&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=1&year2=2002&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=2&year2=2002&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=3&year2=2002&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=4&year2=2002&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=5&year2=2002&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=6&year2=2002&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=7&year2=2002&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=8&year2=2002&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=9&year2=2002&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=10&year2=2002&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=11&year2=2002&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=12&year2=2002&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=13&year2=2002&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=14&year2=2002&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=15&year2=2002&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=16&year2=2002&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=17&year2=2002&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=18&year2=2002&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=19&year2=2002&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=20&year2=2002&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=21&year2=2002&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=22&year2=2002&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=23&year2=2002&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=24&year2=2002&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=25&year2=2002&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=26&year2=2002&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=27&year2=2002&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=28&year2=2002&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=29&year2=2002&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=4&day=30&year2=2002&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=1&year2=2002&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=2&year2=2002&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=3&year2=2002&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=4&year2=2002&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=5&year2=2002&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=6&year2=2002&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=7&year2=2002&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=8&year2=2002&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=9&year2=2002&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=10&year2=2002&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=11&year2=2002&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=12&year2=2002&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=13&year2=2002&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=14&year2=2002&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=15&year2=2002&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=16&year2=2002&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=17&year2=2002&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=18&year2=2002&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=19&year2=2002&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=20&year2=2002&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=21&year2=2002&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=22&year2=2002&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=23&year2=2002&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=24&year2=2002&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=25&year2=2002&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=26&year2=2002&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=27&year2=2002&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=28&year2=2002&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=29&year2=2002&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=30&year2=2002&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=5&day=31&year2=2002&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=1&year2=2002&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=2&year2=2002&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=3&year2=2002&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=4&year2=2002&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=5&year2=2002&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=6&year2=2002&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=7&year2=2002&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=8&year2=2002&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=9&year2=2002&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=10&year2=2002&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=11&year2=2002&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=12&year2=2002&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=13&year2=2002&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=14&year2=2002&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=15&year2=2002&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=16&year2=2002&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=17&year2=2002&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=18&year2=2002&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=19&year2=2002&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=20&year2=2002&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=21&year2=2002&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=22&year2=2002&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=23&year2=2002&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=24&year2=2002&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=25&year2=2002&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=26&year2=2002&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=27&year2=2002&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=28&year2=2002&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=29&year2=2002&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=6&day=30&year2=2002&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=1&year2=2002&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=2&year2=2002&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=3&year2=2002&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=4&year2=2002&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=5&year2=2002&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=6&year2=2002&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=7&year2=2002&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=8&year2=2002&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=9&year2=2002&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=10&year2=2002&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=11&year2=2002&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=12&year2=2002&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=13&year2=2002&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=14&year2=2002&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=15&year2=2002&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=16&year2=2002&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=17&year2=2002&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=18&year2=2002&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=19&year2=2002&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=20&year2=2002&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=21&year2=2002&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=22&year2=2002&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=23&year2=2002&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=24&year2=2002&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=25&year2=2002&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=26&year2=2002&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=27&year2=2002&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=28&year2=2002&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=29&year2=2002&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=30&year2=2002&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=7&day=31&year2=2002&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=1&year2=2002&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=2&year2=2002&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=3&year2=2002&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=4&year2=2002&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=5&year2=2002&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=6&year2=2002&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=7&year2=2002&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=8&year2=2002&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=9&year2=2002&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=10&year2=2002&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=11&year2=2002&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=12&year2=2002&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=13&year2=2002&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=14&year2=2002&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=15&year2=2002&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=16&year2=2002&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=17&year2=2002&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=18&year2=2002&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=19&year2=2002&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=20&year2=2002&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=21&year2=2002&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=22&year2=2002&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=23&year2=2002&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=24&year2=2002&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=25&year2=2002&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=26&year2=2002&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=27&year2=2002&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=28&year2=2002&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=29&year2=2002&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=30&year2=2002&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=8&day=31&year2=2002&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=1&year2=2002&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=2&year2=2002&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=3&year2=2002&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=4&year2=2002&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=5&year2=2002&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=6&year2=2002&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=7&year2=2002&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=8&year2=2002&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=9&year2=2002&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=10&year2=2002&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=11&year2=2002&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=12&year2=2002&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=13&year2=2002&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=14&year2=2002&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=15&year2=2002&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=16&year2=2002&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=17&year2=2002&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=18&year2=2002&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=19&year2=2002&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=20&year2=2002&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=21&year2=2002&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=22&year2=2002&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=23&year2=2002&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=24&year2=2002&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=25&year2=2002&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=26&year2=2002&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=27&year2=2002&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=28&year2=2002&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=29&year2=2002&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=9&day=30&year2=2002&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=1&year2=2002&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=2&year2=2002&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=3&year2=2002&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=4&year2=2002&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=5&year2=2002&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=6&year2=2002&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=7&year2=2002&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=8&year2=2002&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=9&year2=2002&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=10&year2=2002&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=11&year2=2002&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=12&year2=2002&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=13&year2=2002&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=14&year2=2002&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=15&year2=2002&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=16&year2=2002&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=17&year2=2002&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=18&year2=2002&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=19&year2=2002&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=20&year2=2002&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=21&year2=2002&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=22&year2=2002&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=23&year2=2002&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=24&year2=2002&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=25&year2=2002&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=26&year2=2002&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=27&year2=2002&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=28&year2=2002&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=29&year2=2002&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=30&year2=2002&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=10&day=31&year2=2002&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=1&year2=2002&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=2&year2=2002&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=3&year2=2002&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=4&year2=2002&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=5&year2=2002&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=6&year2=2002&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=7&year2=2002&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=8&year2=2002&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=9&year2=2002&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=10&year2=2002&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=11&year2=2002&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=12&year2=2002&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=13&year2=2002&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=14&year2=2002&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=15&year2=2002&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=16&year2=2002&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=17&year2=2002&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=18&year2=2002&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=19&year2=2002&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=20&year2=2002&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=21&year2=2002&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=22&year2=2002&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=23&year2=2002&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=24&year2=2002&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=25&year2=2002&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=26&year2=2002&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=27&year2=2002&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=28&year2=2002&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=29&year2=2002&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=11&day=30&year2=2002&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=1&year2=2002&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=2&year2=2002&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=3&year2=2002&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=4&year2=2002&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=5&year2=2002&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=6&year2=2002&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=7&year2=2002&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=8&year2=2002&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=9&year2=2002&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=10&year2=2002&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=11&year2=2002&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=12&year2=2002&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=13&year2=2002&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=14&year2=2002&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=15&year2=2002&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=16&year2=2002&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=17&year2=2002&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=18&year2=2002&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=19&year2=2002&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=20&year2=2002&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=21&year2=2002&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=22&year2=2002&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=23&year2=2002&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=24&year2=2002&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=25&year2=2002&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=26&year2=2002&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=27&year2=2002&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=28&year2=2002&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=29&year2=2002&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=30&year2=2002&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2002&month=12&day=31&year2=2003&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=1&year2=2003&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=2&year2=2003&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=3&year2=2003&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=4&year2=2003&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=5&year2=2003&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=6&year2=2003&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=7&year2=2003&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=8&year2=2003&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=9&year2=2003&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=10&year2=2003&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=11&year2=2003&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=12&year2=2003&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=13&year2=2003&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=14&year2=2003&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=15&year2=2003&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=16&year2=2003&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=17&year2=2003&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=18&year2=2003&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=19&year2=2003&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=20&year2=2003&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=21&year2=2003&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=22&year2=2003&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=23&year2=2003&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=24&year2=2003&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=25&year2=2003&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=26&year2=2003&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=27&year2=2003&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=28&year2=2003&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=29&year2=2003&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=30&year2=2003&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=1&day=31&year2=2003&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=1&year2=2003&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=2&year2=2003&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=3&year2=2003&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=4&year2=2003&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=5&year2=2003&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=6&year2=2003&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=7&year2=2003&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=8&year2=2003&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=9&year2=2003&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=10&year2=2003&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=11&year2=2003&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=12&year2=2003&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=13&year2=2003&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=14&year2=2003&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=15&year2=2003&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=16&year2=2003&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=17&year2=2003&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=18&year2=2003&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=19&year2=2003&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=20&year2=2003&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=21&year2=2003&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=22&year2=2003&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=23&year2=2003&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=24&year2=2003&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=25&year2=2003&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=26&year2=2003&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=27&year2=2003&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=2&day=28&year2=2003&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=1&year2=2003&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=2&year2=2003&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=3&year2=2003&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=4&year2=2003&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=5&year2=2003&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=6&year2=2003&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=7&year2=2003&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=8&year2=2003&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=9&year2=2003&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=10&year2=2003&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=11&year2=2003&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=12&year2=2003&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=13&year2=2003&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=14&year2=2003&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=15&year2=2003&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=16&year2=2003&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=17&year2=2003&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=18&year2=2003&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=19&year2=2003&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=20&year2=2003&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=21&year2=2003&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=22&year2=2003&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=23&year2=2003&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=24&year2=2003&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=25&year2=2003&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=26&year2=2003&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=27&year2=2003&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=28&year2=2003&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=29&year2=2003&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=30&year2=2003&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=3&day=31&year2=2003&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=1&year2=2003&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=2&year2=2003&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=3&year2=2003&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=4&year2=2003&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=5&year2=2003&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=6&year2=2003&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=7&year2=2003&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=8&year2=2003&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=9&year2=2003&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=10&year2=2003&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=11&year2=2003&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=12&year2=2003&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=13&year2=2003&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=14&year2=2003&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=15&year2=2003&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=16&year2=2003&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=17&year2=2003&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=18&year2=2003&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=19&year2=2003&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=20&year2=2003&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=21&year2=2003&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=22&year2=2003&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=23&year2=2003&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=24&year2=2003&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=25&year2=2003&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=26&year2=2003&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=27&year2=2003&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=28&year2=2003&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=29&year2=2003&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=4&day=30&year2=2003&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=1&year2=2003&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=2&year2=2003&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=3&year2=2003&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=4&year2=2003&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=5&year2=2003&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=6&year2=2003&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=7&year2=2003&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=8&year2=2003&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=9&year2=2003&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=10&year2=2003&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=11&year2=2003&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=12&year2=2003&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=13&year2=2003&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=14&year2=2003&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=15&year2=2003&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=16&year2=2003&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=17&year2=2003&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=18&year2=2003&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=19&year2=2003&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=20&year2=2003&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=21&year2=2003&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=22&year2=2003&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=23&year2=2003&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=24&year2=2003&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=25&year2=2003&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=26&year2=2003&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=27&year2=2003&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=28&year2=2003&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=29&year2=2003&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=30&year2=2003&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=5&day=31&year2=2003&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=1&year2=2003&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=2&year2=2003&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=3&year2=2003&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=4&year2=2003&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=5&year2=2003&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=6&year2=2003&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=7&year2=2003&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=8&year2=2003&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=9&year2=2003&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=10&year2=2003&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=11&year2=2003&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=12&year2=2003&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=13&year2=2003&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=14&year2=2003&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=15&year2=2003&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=16&year2=2003&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=17&year2=2003&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=18&year2=2003&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=19&year2=2003&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=20&year2=2003&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=21&year2=2003&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=22&year2=2003&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=23&year2=2003&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=24&year2=2003&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=25&year2=2003&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=26&year2=2003&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=27&year2=2003&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=28&year2=2003&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=29&year2=2003&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=6&day=30&year2=2003&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=1&year2=2003&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=2&year2=2003&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=3&year2=2003&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=4&year2=2003&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=5&year2=2003&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=6&year2=2003&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=7&year2=2003&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=8&year2=2003&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=9&year2=2003&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=10&year2=2003&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=11&year2=2003&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=12&year2=2003&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=13&year2=2003&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=14&year2=2003&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=15&year2=2003&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=16&year2=2003&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=17&year2=2003&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=18&year2=2003&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=19&year2=2003&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=20&year2=2003&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=21&year2=2003&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=22&year2=2003&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=23&year2=2003&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=24&year2=2003&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=25&year2=2003&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=26&year2=2003&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=27&year2=2003&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=28&year2=2003&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=29&year2=2003&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=30&year2=2003&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=7&day=31&year2=2003&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=1&year2=2003&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=2&year2=2003&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=3&year2=2003&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=4&year2=2003&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=5&year2=2003&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=6&year2=2003&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=7&year2=2003&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=8&year2=2003&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=9&year2=2003&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=10&year2=2003&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=11&year2=2003&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=12&year2=2003&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=13&year2=2003&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=14&year2=2003&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=15&year2=2003&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=16&year2=2003&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=17&year2=2003&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=18&year2=2003&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=19&year2=2003&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=20&year2=2003&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=21&year2=2003&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=22&year2=2003&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=23&year2=2003&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=24&year2=2003&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=25&year2=2003&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=26&year2=2003&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=27&year2=2003&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=28&year2=2003&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=29&year2=2003&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=30&year2=2003&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=8&day=31&year2=2003&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=1&year2=2003&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=2&year2=2003&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=3&year2=2003&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=4&year2=2003&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=5&year2=2003&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=6&year2=2003&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=7&year2=2003&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=8&year2=2003&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=9&year2=2003&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=10&year2=2003&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=11&year2=2003&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=12&year2=2003&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=13&year2=2003&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=14&year2=2003&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=15&year2=2003&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=16&year2=2003&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=17&year2=2003&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=18&year2=2003&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=19&year2=2003&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=20&year2=2003&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=21&year2=2003&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=22&year2=2003&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=23&year2=2003&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=24&year2=2003&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=25&year2=2003&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=26&year2=2003&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=27&year2=2003&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=28&year2=2003&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=29&year2=2003&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=9&day=30&year2=2003&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=1&year2=2003&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=2&year2=2003&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=3&year2=2003&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=4&year2=2003&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=5&year2=2003&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=6&year2=2003&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=7&year2=2003&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=8&year2=2003&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=9&year2=2003&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=10&year2=2003&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=11&year2=2003&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=12&year2=2003&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=13&year2=2003&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=14&year2=2003&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=15&year2=2003&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=16&year2=2003&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=17&year2=2003&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=18&year2=2003&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=19&year2=2003&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=20&year2=2003&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=21&year2=2003&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=22&year2=2003&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=23&year2=2003&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=24&year2=2003&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=25&year2=2003&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=26&year2=2003&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=27&year2=2003&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=28&year2=2003&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=29&year2=2003&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=30&year2=2003&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=10&day=31&year2=2003&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=1&year2=2003&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=2&year2=2003&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=3&year2=2003&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=4&year2=2003&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=5&year2=2003&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=6&year2=2003&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=7&year2=2003&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=8&year2=2003&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=9&year2=2003&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=10&year2=2003&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=11&year2=2003&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=12&year2=2003&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=13&year2=2003&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=14&year2=2003&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=15&year2=2003&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=16&year2=2003&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=17&year2=2003&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=18&year2=2003&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=19&year2=2003&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=20&year2=2003&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=21&year2=2003&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=22&year2=2003&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=23&year2=2003&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=24&year2=2003&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=25&year2=2003&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=26&year2=2003&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=27&year2=2003&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=28&year2=2003&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=29&year2=2003&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=11&day=30&year2=2003&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=1&year2=2003&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=2&year2=2003&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=3&year2=2003&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=4&year2=2003&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=5&year2=2003&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=6&year2=2003&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=7&year2=2003&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=8&year2=2003&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=9&year2=2003&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=10&year2=2003&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=11&year2=2003&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=12&year2=2003&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=13&year2=2003&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=14&year2=2003&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=15&year2=2003&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=16&year2=2003&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=17&year2=2003&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=18&year2=2003&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=19&year2=2003&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=20&year2=2003&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=21&year2=2003&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=22&year2=2003&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=23&year2=2003&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=24&year2=2003&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=25&year2=2003&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=26&year2=2003&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=27&year2=2003&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=28&year2=2003&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=29&year2=2003&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=30&year2=2003&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2003&month=12&day=31&year2=2004&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=1&year2=2004&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=2&year2=2004&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=3&year2=2004&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=4&year2=2004&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=5&year2=2004&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=6&year2=2004&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=7&year2=2004&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=8&year2=2004&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=9&year2=2004&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=10&year2=2004&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=11&year2=2004&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=12&year2=2004&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=13&year2=2004&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=14&year2=2004&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=15&year2=2004&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=16&year2=2004&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=17&year2=2004&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=18&year2=2004&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=19&year2=2004&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=20&year2=2004&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=21&year2=2004&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=22&year2=2004&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=23&year2=2004&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=24&year2=2004&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=25&year2=2004&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=26&year2=2004&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=27&year2=2004&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=28&year2=2004&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=29&year2=2004&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=30&year2=2004&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=1&day=31&year2=2004&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=1&year2=2004&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=2&year2=2004&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=3&year2=2004&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=4&year2=2004&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=5&year2=2004&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=6&year2=2004&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=7&year2=2004&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=8&year2=2004&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=9&year2=2004&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=10&year2=2004&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=11&year2=2004&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=12&year2=2004&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=13&year2=2004&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=14&year2=2004&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=15&year2=2004&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=16&year2=2004&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=17&year2=2004&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=18&year2=2004&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=19&year2=2004&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=20&year2=2004&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=21&year2=2004&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=22&year2=2004&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=23&year2=2004&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=24&year2=2004&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=25&year2=2004&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=26&year2=2004&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=27&year2=2004&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=28&year2=2004&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=2&day=29&year2=2004&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=1&year2=2004&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=2&year2=2004&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=3&year2=2004&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=4&year2=2004&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=5&year2=2004&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=6&year2=2004&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=7&year2=2004&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=8&year2=2004&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=9&year2=2004&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=10&year2=2004&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=11&year2=2004&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=12&year2=2004&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=13&year2=2004&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=14&year2=2004&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=15&year2=2004&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=16&year2=2004&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=17&year2=2004&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=18&year2=2004&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=19&year2=2004&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=20&year2=2004&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=21&year2=2004&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=22&year2=2004&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=23&year2=2004&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=24&year2=2004&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=25&year2=2004&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=26&year2=2004&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=27&year2=2004&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=28&year2=2004&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=29&year2=2004&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=30&year2=2004&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=3&day=31&year2=2004&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=1&year2=2004&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=2&year2=2004&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=3&year2=2004&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=4&year2=2004&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=5&year2=2004&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=6&year2=2004&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=7&year2=2004&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=8&year2=2004&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=9&year2=2004&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=10&year2=2004&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=11&year2=2004&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=12&year2=2004&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=13&year2=2004&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=14&year2=2004&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=15&year2=2004&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=16&year2=2004&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=17&year2=2004&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=18&year2=2004&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=19&year2=2004&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=20&year2=2004&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=21&year2=2004&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=22&year2=2004&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=23&year2=2004&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=24&year2=2004&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=25&year2=2004&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=26&year2=2004&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=27&year2=2004&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=28&year2=2004&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=29&year2=2004&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=4&day=30&year2=2004&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=1&year2=2004&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=2&year2=2004&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=3&year2=2004&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=4&year2=2004&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=5&year2=2004&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=6&year2=2004&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=7&year2=2004&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=8&year2=2004&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=9&year2=2004&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=10&year2=2004&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=11&year2=2004&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=12&year2=2004&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=13&year2=2004&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=14&year2=2004&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=15&year2=2004&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=16&year2=2004&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=17&year2=2004&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=18&year2=2004&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=19&year2=2004&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=20&year2=2004&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=21&year2=2004&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=22&year2=2004&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=23&year2=2004&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=24&year2=2004&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=25&year2=2004&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=26&year2=2004&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=27&year2=2004&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=28&year2=2004&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=29&year2=2004&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=30&year2=2004&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=5&day=31&year2=2004&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=1&year2=2004&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=2&year2=2004&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=3&year2=2004&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=4&year2=2004&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=5&year2=2004&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=6&year2=2004&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=7&year2=2004&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=8&year2=2004&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=9&year2=2004&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=10&year2=2004&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=11&year2=2004&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=12&year2=2004&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=13&year2=2004&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=14&year2=2004&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=15&year2=2004&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=16&year2=2004&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=17&year2=2004&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=18&year2=2004&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=19&year2=2004&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=20&year2=2004&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=21&year2=2004&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=22&year2=2004&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=23&year2=2004&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=24&year2=2004&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=25&year2=2004&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=26&year2=2004&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=27&year2=2004&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=28&year2=2004&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=29&year2=2004&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=6&day=30&year2=2004&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=1&year2=2004&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=2&year2=2004&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=3&year2=2004&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=4&year2=2004&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=5&year2=2004&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=6&year2=2004&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=7&year2=2004&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=8&year2=2004&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=9&year2=2004&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=10&year2=2004&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=11&year2=2004&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=12&year2=2004&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=13&year2=2004&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=14&year2=2004&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=15&year2=2004&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=16&year2=2004&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=17&year2=2004&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=18&year2=2004&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=19&year2=2004&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=20&year2=2004&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=21&year2=2004&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=22&year2=2004&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=23&year2=2004&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=24&year2=2004&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=25&year2=2004&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=26&year2=2004&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=27&year2=2004&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=28&year2=2004&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=29&year2=2004&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=30&year2=2004&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=7&day=31&year2=2004&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=1&year2=2004&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=2&year2=2004&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=3&year2=2004&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=4&year2=2004&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=5&year2=2004&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=6&year2=2004&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=7&year2=2004&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=8&year2=2004&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=9&year2=2004&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=10&year2=2004&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=11&year2=2004&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=12&year2=2004&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=13&year2=2004&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=14&year2=2004&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=15&year2=2004&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=16&year2=2004&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=17&year2=2004&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=18&year2=2004&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=19&year2=2004&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=20&year2=2004&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=21&year2=2004&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=22&year2=2004&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=23&year2=2004&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=24&year2=2004&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=25&year2=2004&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=26&year2=2004&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=27&year2=2004&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=28&year2=2004&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=29&year2=2004&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=30&year2=2004&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=8&day=31&year2=2004&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=1&year2=2004&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=2&year2=2004&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=3&year2=2004&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=4&year2=2004&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=5&year2=2004&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=6&year2=2004&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=7&year2=2004&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=8&year2=2004&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=9&year2=2004&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=10&year2=2004&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=11&year2=2004&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=12&year2=2004&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=13&year2=2004&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=14&year2=2004&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=15&year2=2004&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=16&year2=2004&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=17&year2=2004&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=18&year2=2004&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=19&year2=2004&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=20&year2=2004&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=21&year2=2004&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=22&year2=2004&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=23&year2=2004&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=24&year2=2004&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=25&year2=2004&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=26&year2=2004&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=27&year2=2004&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=28&year2=2004&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=29&year2=2004&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=9&day=30&year2=2004&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=1&year2=2004&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=2&year2=2004&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=3&year2=2004&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=4&year2=2004&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=5&year2=2004&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=6&year2=2004&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=7&year2=2004&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=8&year2=2004&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=9&year2=2004&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=10&year2=2004&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=11&year2=2004&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=12&year2=2004&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=13&year2=2004&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=14&year2=2004&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=15&year2=2004&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=16&year2=2004&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=17&year2=2004&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=18&year2=2004&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=19&year2=2004&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=20&year2=2004&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=21&year2=2004&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=22&year2=2004&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=23&year2=2004&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=24&year2=2004&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=25&year2=2004&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=26&year2=2004&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=27&year2=2004&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=28&year2=2004&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=29&year2=2004&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=30&year2=2004&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=10&day=31&year2=2004&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=1&year2=2004&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=2&year2=2004&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=3&year2=2004&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=4&year2=2004&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=5&year2=2004&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=6&year2=2004&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=7&year2=2004&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=8&year2=2004&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=9&year2=2004&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=10&year2=2004&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=11&year2=2004&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=12&year2=2004&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=13&year2=2004&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=14&year2=2004&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=15&year2=2004&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=16&year2=2004&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=17&year2=2004&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=18&year2=2004&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=19&year2=2004&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=20&year2=2004&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=21&year2=2004&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=22&year2=2004&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=23&year2=2004&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=24&year2=2004&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=25&year2=2004&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=26&year2=2004&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=27&year2=2004&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=28&year2=2004&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=29&year2=2004&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=11&day=30&year2=2004&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=1&year2=2004&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=2&year2=2004&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=3&year2=2004&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=4&year2=2004&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=5&year2=2004&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=6&year2=2004&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=7&year2=2004&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=8&year2=2004&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=9&year2=2004&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=10&year2=2004&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=11&year2=2004&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=12&year2=2004&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=13&year2=2004&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=14&year2=2004&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=15&year2=2004&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=16&year2=2004&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=17&year2=2004&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=18&year2=2004&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=19&year2=2004&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=20&year2=2004&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=21&year2=2004&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=22&year2=2004&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=23&year2=2004&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=24&year2=2004&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=25&year2=2004&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=26&year2=2004&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=27&year2=2004&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=28&year2=2004&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=29&year2=2004&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=30&year2=2004&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2004&month=12&day=31&year2=2005&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=1&year2=2005&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=2&year2=2005&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=3&year2=2005&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=4&year2=2005&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=5&year2=2005&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=6&year2=2005&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=7&year2=2005&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=8&year2=2005&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=9&year2=2005&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=10&year2=2005&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=11&year2=2005&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=12&year2=2005&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=13&year2=2005&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=14&year2=2005&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=15&year2=2005&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=16&year2=2005&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=17&year2=2005&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=18&year2=2005&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=19&year2=2005&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=20&year2=2005&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=21&year2=2005&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=22&year2=2005&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=23&year2=2005&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=24&year2=2005&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=25&year2=2005&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=26&year2=2005&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=27&year2=2005&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=28&year2=2005&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=29&year2=2005&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=30&year2=2005&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=1&day=31&year2=2005&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=1&year2=2005&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=2&year2=2005&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=3&year2=2005&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=4&year2=2005&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=5&year2=2005&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=6&year2=2005&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=7&year2=2005&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=8&year2=2005&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=9&year2=2005&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=10&year2=2005&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=11&year2=2005&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=12&year2=2005&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=13&year2=2005&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=14&year2=2005&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=15&year2=2005&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=16&year2=2005&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=17&year2=2005&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=18&year2=2005&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=19&year2=2005&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=20&year2=2005&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=21&year2=2005&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=22&year2=2005&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=23&year2=2005&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=24&year2=2005&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=25&year2=2005&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=26&year2=2005&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=27&year2=2005&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=2&day=28&year2=2005&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=1&year2=2005&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=2&year2=2005&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=3&year2=2005&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=4&year2=2005&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=5&year2=2005&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=6&year2=2005&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=7&year2=2005&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=8&year2=2005&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=9&year2=2005&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=10&year2=2005&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=11&year2=2005&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=12&year2=2005&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=13&year2=2005&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=14&year2=2005&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=15&year2=2005&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=16&year2=2005&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=17&year2=2005&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=18&year2=2005&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=19&year2=2005&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=20&year2=2005&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=21&year2=2005&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=22&year2=2005&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=23&year2=2005&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=24&year2=2005&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=25&year2=2005&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=26&year2=2005&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=27&year2=2005&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=28&year2=2005&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=29&year2=2005&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=30&year2=2005&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=3&day=31&year2=2005&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=1&year2=2005&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=2&year2=2005&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=3&year2=2005&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=4&year2=2005&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=5&year2=2005&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=6&year2=2005&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=7&year2=2005&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=8&year2=2005&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=9&year2=2005&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=10&year2=2005&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=11&year2=2005&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=12&year2=2005&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=13&year2=2005&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=14&year2=2005&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=15&year2=2005&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=16&year2=2005&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=17&year2=2005&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=18&year2=2005&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=19&year2=2005&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=20&year2=2005&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=21&year2=2005&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=22&year2=2005&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=23&year2=2005&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=24&year2=2005&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=25&year2=2005&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=26&year2=2005&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=27&year2=2005&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=28&year2=2005&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=29&year2=2005&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=4&day=30&year2=2005&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=1&year2=2005&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=2&year2=2005&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=3&year2=2005&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=4&year2=2005&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=5&year2=2005&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=6&year2=2005&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=7&year2=2005&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=8&year2=2005&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=9&year2=2005&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=10&year2=2005&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=11&year2=2005&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=12&year2=2005&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=13&year2=2005&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=14&year2=2005&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=15&year2=2005&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=16&year2=2005&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=17&year2=2005&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=18&year2=2005&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=19&year2=2005&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=20&year2=2005&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=21&year2=2005&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=22&year2=2005&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=23&year2=2005&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=24&year2=2005&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=25&year2=2005&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=26&year2=2005&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=27&year2=2005&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=28&year2=2005&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=29&year2=2005&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=30&year2=2005&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=5&day=31&year2=2005&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=1&year2=2005&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=2&year2=2005&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=3&year2=2005&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=4&year2=2005&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=5&year2=2005&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=6&year2=2005&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=7&year2=2005&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=8&year2=2005&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=9&year2=2005&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=10&year2=2005&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=11&year2=2005&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=12&year2=2005&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=13&year2=2005&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=14&year2=2005&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=15&year2=2005&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=16&year2=2005&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=17&year2=2005&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=18&year2=2005&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=19&year2=2005&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=20&year2=2005&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=21&year2=2005&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=22&year2=2005&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=23&year2=2005&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=24&year2=2005&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=25&year2=2005&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=26&year2=2005&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=27&year2=2005&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=28&year2=2005&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=29&year2=2005&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=6&day=30&year2=2005&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=1&year2=2005&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=2&year2=2005&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=3&year2=2005&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=4&year2=2005&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=5&year2=2005&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=6&year2=2005&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=7&year2=2005&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=8&year2=2005&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=9&year2=2005&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=10&year2=2005&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=11&year2=2005&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=12&year2=2005&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=13&year2=2005&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=14&year2=2005&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=15&year2=2005&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=16&year2=2005&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=17&year2=2005&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=18&year2=2005&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=19&year2=2005&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=20&year2=2005&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=21&year2=2005&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=22&year2=2005&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=23&year2=2005&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=24&year2=2005&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=25&year2=2005&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=26&year2=2005&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=27&year2=2005&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=28&year2=2005&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=29&year2=2005&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=30&year2=2005&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=7&day=31&year2=2005&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=1&year2=2005&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=2&year2=2005&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=3&year2=2005&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=4&year2=2005&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=5&year2=2005&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=6&year2=2005&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=7&year2=2005&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=8&year2=2005&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=9&year2=2005&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=10&year2=2005&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=11&year2=2005&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=12&year2=2005&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=13&year2=2005&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=14&year2=2005&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=15&year2=2005&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=16&year2=2005&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=17&year2=2005&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=18&year2=2005&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=19&year2=2005&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=20&year2=2005&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=21&year2=2005&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=22&year2=2005&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=23&year2=2005&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=24&year2=2005&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=25&year2=2005&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=26&year2=2005&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=27&year2=2005&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=28&year2=2005&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=29&year2=2005&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=30&year2=2005&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=8&day=31&year2=2005&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=1&year2=2005&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=2&year2=2005&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=3&year2=2005&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=4&year2=2005&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=5&year2=2005&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=6&year2=2005&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=7&year2=2005&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=8&year2=2005&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=9&year2=2005&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=10&year2=2005&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=11&year2=2005&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=12&year2=2005&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=13&year2=2005&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=14&year2=2005&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=15&year2=2005&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=16&year2=2005&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=17&year2=2005&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=18&year2=2005&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=19&year2=2005&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=20&year2=2005&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=21&year2=2005&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=22&year2=2005&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=23&year2=2005&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=24&year2=2005&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=25&year2=2005&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=26&year2=2005&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=27&year2=2005&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=28&year2=2005&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=29&year2=2005&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=9&day=30&year2=2005&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=1&year2=2005&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=2&year2=2005&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=3&year2=2005&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=4&year2=2005&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=5&year2=2005&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=6&year2=2005&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=7&year2=2005&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=8&year2=2005&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=9&year2=2005&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=10&year2=2005&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=11&year2=2005&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=12&year2=2005&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=13&year2=2005&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=14&year2=2005&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=15&year2=2005&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=16&year2=2005&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=17&year2=2005&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=18&year2=2005&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=19&year2=2005&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=20&year2=2005&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=21&year2=2005&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=22&year2=2005&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=23&year2=2005&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=24&year2=2005&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=25&year2=2005&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=26&year2=2005&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=27&year2=2005&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=28&year2=2005&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=29&year2=2005&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=30&year2=2005&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=10&day=31&year2=2005&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=1&year2=2005&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=2&year2=2005&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=3&year2=2005&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=4&year2=2005&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=5&year2=2005&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=6&year2=2005&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=7&year2=2005&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=8&year2=2005&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=9&year2=2005&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=10&year2=2005&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=11&year2=2005&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=12&year2=2005&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=13&year2=2005&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=14&year2=2005&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=15&year2=2005&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=16&year2=2005&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=17&year2=2005&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=18&year2=2005&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=19&year2=2005&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=20&year2=2005&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=21&year2=2005&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=22&year2=2005&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=23&year2=2005&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=24&year2=2005&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=25&year2=2005&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=26&year2=2005&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=27&year2=2005&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=28&year2=2005&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=29&year2=2005&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=11&day=30&year2=2005&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=1&year2=2005&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=2&year2=2005&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=3&year2=2005&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=4&year2=2005&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=5&year2=2005&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=6&year2=2005&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=7&year2=2005&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=8&year2=2005&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=9&year2=2005&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=10&year2=2005&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=11&year2=2005&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=12&year2=2005&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=13&year2=2005&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=14&year2=2005&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=15&year2=2005&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=16&year2=2005&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=17&year2=2005&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=18&year2=2005&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=19&year2=2005&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=20&year2=2005&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=21&year2=2005&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=22&year2=2005&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=23&year2=2005&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=24&year2=2005&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=25&year2=2005&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=26&year2=2005&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=27&year2=2005&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=28&year2=2005&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=29&year2=2005&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=30&year2=2005&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2005&month=12&day=31&year2=2006&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=1&year2=2006&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=2&year2=2006&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=3&year2=2006&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=4&year2=2006&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=5&year2=2006&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=6&year2=2006&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=7&year2=2006&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=8&year2=2006&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=9&year2=2006&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=10&year2=2006&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=11&year2=2006&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=12&year2=2006&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=13&year2=2006&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=14&year2=2006&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=15&year2=2006&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=16&year2=2006&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=17&year2=2006&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=18&year2=2006&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=19&year2=2006&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=20&year2=2006&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=21&year2=2006&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=22&year2=2006&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=23&year2=2006&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=24&year2=2006&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=25&year2=2006&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=26&year2=2006&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=27&year2=2006&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=28&year2=2006&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=29&year2=2006&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=30&year2=2006&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=1&day=31&year2=2006&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=1&year2=2006&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=2&year2=2006&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=3&year2=2006&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=4&year2=2006&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=5&year2=2006&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=6&year2=2006&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=7&year2=2006&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=8&year2=2006&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=9&year2=2006&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=10&year2=2006&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=11&year2=2006&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=12&year2=2006&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=13&year2=2006&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=14&year2=2006&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=15&year2=2006&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=16&year2=2006&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=17&year2=2006&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=18&year2=2006&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=19&year2=2006&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=20&year2=2006&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=21&year2=2006&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=22&year2=2006&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=23&year2=2006&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=24&year2=2006&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=25&year2=2006&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=26&year2=2006&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=27&year2=2006&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=2&day=28&year2=2006&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=1&year2=2006&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=2&year2=2006&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=3&year2=2006&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=4&year2=2006&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=5&year2=2006&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=6&year2=2006&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=7&year2=2006&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=8&year2=2006&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=9&year2=2006&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=10&year2=2006&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=11&year2=2006&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=12&year2=2006&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=13&year2=2006&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=14&year2=2006&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=15&year2=2006&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=16&year2=2006&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=17&year2=2006&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=18&year2=2006&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=19&year2=2006&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=20&year2=2006&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=21&year2=2006&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=22&year2=2006&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=23&year2=2006&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=24&year2=2006&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=25&year2=2006&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=26&year2=2006&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=27&year2=2006&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=28&year2=2006&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=29&year2=2006&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=30&year2=2006&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=3&day=31&year2=2006&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=1&year2=2006&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=2&year2=2006&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=3&year2=2006&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=4&year2=2006&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=5&year2=2006&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=6&year2=2006&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=7&year2=2006&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=8&year2=2006&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=9&year2=2006&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=10&year2=2006&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=11&year2=2006&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=12&year2=2006&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=13&year2=2006&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=14&year2=2006&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=15&year2=2006&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=16&year2=2006&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=17&year2=2006&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=18&year2=2006&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=19&year2=2006&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=20&year2=2006&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=21&year2=2006&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=22&year2=2006&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=23&year2=2006&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=24&year2=2006&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=25&year2=2006&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=26&year2=2006&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=27&year2=2006&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=28&year2=2006&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=29&year2=2006&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=4&day=30&year2=2006&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=1&year2=2006&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=2&year2=2006&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=3&year2=2006&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=4&year2=2006&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=5&year2=2006&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=6&year2=2006&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=7&year2=2006&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=8&year2=2006&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=9&year2=2006&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=10&year2=2006&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=11&year2=2006&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=12&year2=2006&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=13&year2=2006&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=14&year2=2006&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=15&year2=2006&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=16&year2=2006&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=17&year2=2006&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=18&year2=2006&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=19&year2=2006&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=20&year2=2006&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=21&year2=2006&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=22&year2=2006&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=23&year2=2006&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=24&year2=2006&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=25&year2=2006&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=26&year2=2006&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=27&year2=2006&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=28&year2=2006&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=29&year2=2006&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=30&year2=2006&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=5&day=31&year2=2006&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=1&year2=2006&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=2&year2=2006&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=3&year2=2006&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=4&year2=2006&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=5&year2=2006&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=6&year2=2006&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=7&year2=2006&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=8&year2=2006&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=9&year2=2006&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=10&year2=2006&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=11&year2=2006&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=12&year2=2006&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=13&year2=2006&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=14&year2=2006&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=15&year2=2006&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=16&year2=2006&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=17&year2=2006&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=18&year2=2006&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=19&year2=2006&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=20&year2=2006&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=21&year2=2006&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=22&year2=2006&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=23&year2=2006&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=24&year2=2006&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=25&year2=2006&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=26&year2=2006&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=27&year2=2006&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=28&year2=2006&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=29&year2=2006&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=6&day=30&year2=2006&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=1&year2=2006&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=2&year2=2006&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=3&year2=2006&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=4&year2=2006&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=5&year2=2006&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=6&year2=2006&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=7&year2=2006&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=8&year2=2006&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=9&year2=2006&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=10&year2=2006&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=11&year2=2006&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=12&year2=2006&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=13&year2=2006&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=14&year2=2006&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=15&year2=2006&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=16&year2=2006&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=17&year2=2006&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=18&year2=2006&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=19&year2=2006&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=20&year2=2006&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=21&year2=2006&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=22&year2=2006&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=23&year2=2006&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=24&year2=2006&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=25&year2=2006&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=26&year2=2006&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=27&year2=2006&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=28&year2=2006&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=29&year2=2006&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=30&year2=2006&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=7&day=31&year2=2006&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=1&year2=2006&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=2&year2=2006&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=3&year2=2006&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=4&year2=2006&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=5&year2=2006&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=6&year2=2006&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=7&year2=2006&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=8&year2=2006&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=9&year2=2006&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=10&year2=2006&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=11&year2=2006&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=12&year2=2006&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=13&year2=2006&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=14&year2=2006&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=15&year2=2006&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=16&year2=2006&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=17&year2=2006&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=18&year2=2006&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=19&year2=2006&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=20&year2=2006&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=21&year2=2006&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=22&year2=2006&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=23&year2=2006&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=24&year2=2006&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=25&year2=2006&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=26&year2=2006&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=27&year2=2006&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=28&year2=2006&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=29&year2=2006&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=30&year2=2006&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=8&day=31&year2=2006&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=1&year2=2006&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=2&year2=2006&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=3&year2=2006&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=4&year2=2006&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=5&year2=2006&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=6&year2=2006&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=7&year2=2006&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=8&year2=2006&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=9&year2=2006&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=10&year2=2006&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=11&year2=2006&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=12&year2=2006&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=13&year2=2006&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=14&year2=2006&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=15&year2=2006&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=16&year2=2006&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=17&year2=2006&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=18&year2=2006&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=19&year2=2006&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=20&year2=2006&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=21&year2=2006&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=22&year2=2006&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=23&year2=2006&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=24&year2=2006&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=25&year2=2006&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=26&year2=2006&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=27&year2=2006&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=28&year2=2006&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=29&year2=2006&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=9&day=30&year2=2006&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=1&year2=2006&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=2&year2=2006&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=3&year2=2006&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=4&year2=2006&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=5&year2=2006&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=6&year2=2006&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=7&year2=2006&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=8&year2=2006&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=9&year2=2006&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=10&year2=2006&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=11&year2=2006&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=12&year2=2006&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=13&year2=2006&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=14&year2=2006&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=15&year2=2006&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=16&year2=2006&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=17&year2=2006&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=18&year2=2006&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=19&year2=2006&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=20&year2=2006&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=21&year2=2006&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=22&year2=2006&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=23&year2=2006&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=24&year2=2006&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=25&year2=2006&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=26&year2=2006&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=27&year2=2006&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=28&year2=2006&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=29&year2=2006&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=30&year2=2006&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=10&day=31&year2=2006&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=1&year2=2006&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=2&year2=2006&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=3&year2=2006&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=4&year2=2006&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=5&year2=2006&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=6&year2=2006&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=7&year2=2006&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=8&year2=2006&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=9&year2=2006&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=10&year2=2006&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=11&year2=2006&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=12&year2=2006&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=13&year2=2006&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=14&year2=2006&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=15&year2=2006&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=16&year2=2006&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=17&year2=2006&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=18&year2=2006&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=19&year2=2006&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=20&year2=2006&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=21&year2=2006&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=22&year2=2006&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=23&year2=2006&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=24&year2=2006&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=25&year2=2006&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=26&year2=2006&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=27&year2=2006&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=28&year2=2006&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=29&year2=2006&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=11&day=30&year2=2006&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=1&year2=2006&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=2&year2=2006&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=3&year2=2006&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=4&year2=2006&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=5&year2=2006&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=6&year2=2006&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=7&year2=2006&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=8&year2=2006&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=9&year2=2006&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=10&year2=2006&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=11&year2=2006&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=12&year2=2006&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=13&year2=2006&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=14&year2=2006&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=15&year2=2006&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=16&year2=2006&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=17&year2=2006&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=18&year2=2006&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=19&year2=2006&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=20&year2=2006&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=21&year2=2006&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=22&year2=2006&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=23&year2=2006&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=24&year2=2006&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=25&year2=2006&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=26&year2=2006&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=27&year2=2006&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=28&year2=2006&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=29&year2=2006&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=30&year2=2006&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2006&month=12&day=31&year2=2007&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=1&year2=2007&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=2&year2=2007&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=3&year2=2007&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=4&year2=2007&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=5&year2=2007&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=6&year2=2007&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=7&year2=2007&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=8&year2=2007&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=9&year2=2007&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=10&year2=2007&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=11&year2=2007&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=12&year2=2007&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=13&year2=2007&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=14&year2=2007&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=15&year2=2007&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=16&year2=2007&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=17&year2=2007&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=18&year2=2007&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=19&year2=2007&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=20&year2=2007&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=21&year2=2007&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=22&year2=2007&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=23&year2=2007&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=24&year2=2007&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=25&year2=2007&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=26&year2=2007&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=27&year2=2007&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=28&year2=2007&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=29&year2=2007&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=30&year2=2007&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=1&day=31&year2=2007&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=1&year2=2007&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=2&year2=2007&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=3&year2=2007&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=4&year2=2007&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=5&year2=2007&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=6&year2=2007&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=7&year2=2007&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=8&year2=2007&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=9&year2=2007&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=10&year2=2007&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=11&year2=2007&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=12&year2=2007&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=13&year2=2007&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=14&year2=2007&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=15&year2=2007&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=16&year2=2007&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=17&year2=2007&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=18&year2=2007&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=19&year2=2007&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=20&year2=2007&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=21&year2=2007&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=22&year2=2007&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=23&year2=2007&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=24&year2=2007&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=25&year2=2007&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=26&year2=2007&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=27&year2=2007&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=2&day=28&year2=2007&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=1&year2=2007&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=2&year2=2007&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=3&year2=2007&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=4&year2=2007&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=5&year2=2007&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=6&year2=2007&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=7&year2=2007&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=8&year2=2007&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=9&year2=2007&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=10&year2=2007&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=11&year2=2007&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=12&year2=2007&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=13&year2=2007&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=14&year2=2007&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=15&year2=2007&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=16&year2=2007&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=17&year2=2007&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=18&year2=2007&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=19&year2=2007&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=20&year2=2007&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=21&year2=2007&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=22&year2=2007&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=23&year2=2007&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=24&year2=2007&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=25&year2=2007&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=26&year2=2007&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=27&year2=2007&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=28&year2=2007&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=29&year2=2007&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=30&year2=2007&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=3&day=31&year2=2007&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=1&year2=2007&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=2&year2=2007&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=3&year2=2007&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=4&year2=2007&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=5&year2=2007&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=6&year2=2007&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=7&year2=2007&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=8&year2=2007&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=9&year2=2007&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=10&year2=2007&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=11&year2=2007&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=12&year2=2007&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=13&year2=2007&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=14&year2=2007&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=15&year2=2007&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=16&year2=2007&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=17&year2=2007&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=18&year2=2007&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=19&year2=2007&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=20&year2=2007&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=21&year2=2007&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=22&year2=2007&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=23&year2=2007&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=24&year2=2007&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=25&year2=2007&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=26&year2=2007&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=27&year2=2007&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=28&year2=2007&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=29&year2=2007&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=4&day=30&year2=2007&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=1&year2=2007&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=2&year2=2007&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=3&year2=2007&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=4&year2=2007&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=5&year2=2007&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=6&year2=2007&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=7&year2=2007&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=8&year2=2007&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=9&year2=2007&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=10&year2=2007&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=11&year2=2007&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=12&year2=2007&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=13&year2=2007&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=14&year2=2007&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=15&year2=2007&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=16&year2=2007&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=17&year2=2007&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=18&year2=2007&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=19&year2=2007&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=20&year2=2007&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=21&year2=2007&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=22&year2=2007&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=23&year2=2007&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=24&year2=2007&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=25&year2=2007&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=26&year2=2007&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=27&year2=2007&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=28&year2=2007&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=29&year2=2007&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=30&year2=2007&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=5&day=31&year2=2007&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=1&year2=2007&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=2&year2=2007&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=3&year2=2007&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=4&year2=2007&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=5&year2=2007&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=6&year2=2007&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=7&year2=2007&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=8&year2=2007&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=9&year2=2007&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=10&year2=2007&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=11&year2=2007&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=12&year2=2007&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=13&year2=2007&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=14&year2=2007&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=15&year2=2007&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=16&year2=2007&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=17&year2=2007&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=18&year2=2007&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=19&year2=2007&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=20&year2=2007&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=21&year2=2007&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=22&year2=2007&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=23&year2=2007&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=24&year2=2007&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=25&year2=2007&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=26&year2=2007&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=27&year2=2007&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=28&year2=2007&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=29&year2=2007&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=6&day=30&year2=2007&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=1&year2=2007&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=2&year2=2007&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=3&year2=2007&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=4&year2=2007&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=5&year2=2007&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=6&year2=2007&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=7&year2=2007&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=8&year2=2007&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=9&year2=2007&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=10&year2=2007&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=11&year2=2007&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=12&year2=2007&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=13&year2=2007&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=14&year2=2007&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=15&year2=2007&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=16&year2=2007&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=17&year2=2007&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=18&year2=2007&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=19&year2=2007&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=20&year2=2007&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=21&year2=2007&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=22&year2=2007&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=23&year2=2007&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=24&year2=2007&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=25&year2=2007&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=26&year2=2007&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=27&year2=2007&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=28&year2=2007&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=29&year2=2007&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=30&year2=2007&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=7&day=31&year2=2007&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=1&year2=2007&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=2&year2=2007&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=3&year2=2007&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=4&year2=2007&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=5&year2=2007&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=6&year2=2007&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=7&year2=2007&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=8&year2=2007&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=9&year2=2007&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=10&year2=2007&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=11&year2=2007&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=12&year2=2007&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=13&year2=2007&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=14&year2=2007&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=15&year2=2007&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=16&year2=2007&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=17&year2=2007&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=18&year2=2007&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=19&year2=2007&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=20&year2=2007&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=21&year2=2007&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=22&year2=2007&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=23&year2=2007&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=24&year2=2007&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=25&year2=2007&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=26&year2=2007&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=27&year2=2007&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=28&year2=2007&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=29&year2=2007&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=30&year2=2007&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=8&day=31&year2=2007&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=1&year2=2007&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=2&year2=2007&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=3&year2=2007&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=4&year2=2007&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=5&year2=2007&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=6&year2=2007&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=7&year2=2007&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=8&year2=2007&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=9&year2=2007&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=10&year2=2007&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=11&year2=2007&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=12&year2=2007&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=13&year2=2007&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=14&year2=2007&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=15&year2=2007&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=16&year2=2007&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=17&year2=2007&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=18&year2=2007&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=19&year2=2007&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=20&year2=2007&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=21&year2=2007&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=22&year2=2007&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=23&year2=2007&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=24&year2=2007&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=25&year2=2007&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=26&year2=2007&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=27&year2=2007&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=28&year2=2007&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=29&year2=2007&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=9&day=30&year2=2007&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=1&year2=2007&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=2&year2=2007&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=3&year2=2007&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=4&year2=2007&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=5&year2=2007&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=6&year2=2007&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=7&year2=2007&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=8&year2=2007&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=9&year2=2007&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=10&year2=2007&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=11&year2=2007&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=12&year2=2007&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=13&year2=2007&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=14&year2=2007&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=15&year2=2007&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=16&year2=2007&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=17&year2=2007&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=18&year2=2007&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=19&year2=2007&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=20&year2=2007&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=21&year2=2007&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=22&year2=2007&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=23&year2=2007&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=24&year2=2007&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=25&year2=2007&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=26&year2=2007&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=27&year2=2007&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=28&year2=2007&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=29&year2=2007&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=30&year2=2007&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=10&day=31&year2=2007&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=1&year2=2007&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=2&year2=2007&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=3&year2=2007&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=4&year2=2007&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=5&year2=2007&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=6&year2=2007&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=7&year2=2007&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=8&year2=2007&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=9&year2=2007&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=10&year2=2007&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=11&year2=2007&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=12&year2=2007&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=13&year2=2007&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=14&year2=2007&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=15&year2=2007&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=16&year2=2007&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=17&year2=2007&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=18&year2=2007&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=19&year2=2007&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=20&year2=2007&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=21&year2=2007&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=22&year2=2007&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=23&year2=2007&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=24&year2=2007&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=25&year2=2007&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=26&year2=2007&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=27&year2=2007&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=28&year2=2007&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=29&year2=2007&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=11&day=30&year2=2007&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=1&year2=2007&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=2&year2=2007&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=3&year2=2007&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=4&year2=2007&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=5&year2=2007&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=6&year2=2007&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=7&year2=2007&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=8&year2=2007&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=9&year2=2007&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=10&year2=2007&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=11&year2=2007&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=12&year2=2007&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=13&year2=2007&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=14&year2=2007&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=15&year2=2007&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=16&year2=2007&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=17&year2=2007&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=18&year2=2007&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=19&year2=2007&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=20&year2=2007&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=21&year2=2007&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=22&year2=2007&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=23&year2=2007&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=24&year2=2007&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=25&year2=2007&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=26&year2=2007&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=27&year2=2007&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=28&year2=2007&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=29&year2=2007&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=30&year2=2007&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2007&month=12&day=31&year2=2008&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=1&year2=2008&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=2&year2=2008&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=3&year2=2008&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=4&year2=2008&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=5&year2=2008&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=6&year2=2008&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=7&year2=2008&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=8&year2=2008&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=9&year2=2008&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=10&year2=2008&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=11&year2=2008&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=12&year2=2008&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=13&year2=2008&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=14&year2=2008&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=15&year2=2008&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=16&year2=2008&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=17&year2=2008&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=18&year2=2008&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=19&year2=2008&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=20&year2=2008&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=21&year2=2008&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=22&year2=2008&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=23&year2=2008&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=24&year2=2008&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=25&year2=2008&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=26&year2=2008&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=27&year2=2008&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=28&year2=2008&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=29&year2=2008&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=30&year2=2008&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=1&day=31&year2=2008&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=1&year2=2008&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=2&year2=2008&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=3&year2=2008&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=4&year2=2008&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=5&year2=2008&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=6&year2=2008&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=7&year2=2008&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=8&year2=2008&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=9&year2=2008&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=10&year2=2008&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=11&year2=2008&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=12&year2=2008&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=13&year2=2008&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=14&year2=2008&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=15&year2=2008&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=16&year2=2008&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=17&year2=2008&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=18&year2=2008&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=19&year2=2008&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=20&year2=2008&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=21&year2=2008&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=22&year2=2008&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=23&year2=2008&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=24&year2=2008&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=25&year2=2008&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=26&year2=2008&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=27&year2=2008&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=28&year2=2008&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=2&day=29&year2=2008&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=1&year2=2008&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=2&year2=2008&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=3&year2=2008&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=4&year2=2008&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=5&year2=2008&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=6&year2=2008&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=7&year2=2008&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=8&year2=2008&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=9&year2=2008&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=10&year2=2008&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=11&year2=2008&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=12&year2=2008&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=13&year2=2008&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=14&year2=2008&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=15&year2=2008&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=16&year2=2008&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=17&year2=2008&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=18&year2=2008&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=19&year2=2008&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=20&year2=2008&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=21&year2=2008&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=22&year2=2008&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=23&year2=2008&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=24&year2=2008&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=25&year2=2008&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=26&year2=2008&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=27&year2=2008&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=28&year2=2008&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=29&year2=2008&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=30&year2=2008&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=3&day=31&year2=2008&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=1&year2=2008&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=2&year2=2008&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=3&year2=2008&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=4&year2=2008&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=5&year2=2008&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=6&year2=2008&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=7&year2=2008&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=8&year2=2008&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=9&year2=2008&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=10&year2=2008&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=11&year2=2008&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=12&year2=2008&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=13&year2=2008&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=14&year2=2008&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=15&year2=2008&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=16&year2=2008&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=17&year2=2008&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=18&year2=2008&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=19&year2=2008&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=20&year2=2008&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=21&year2=2008&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=22&year2=2008&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=23&year2=2008&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=24&year2=2008&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=25&year2=2008&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=26&year2=2008&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=27&year2=2008&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=28&year2=2008&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=29&year2=2008&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=4&day=30&year2=2008&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=1&year2=2008&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=2&year2=2008&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=3&year2=2008&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=4&year2=2008&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=5&year2=2008&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=6&year2=2008&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=7&year2=2008&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=8&year2=2008&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=9&year2=2008&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=10&year2=2008&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=11&year2=2008&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=12&year2=2008&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=13&year2=2008&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=14&year2=2008&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=15&year2=2008&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=16&year2=2008&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=17&year2=2008&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=18&year2=2008&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=19&year2=2008&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=20&year2=2008&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=21&year2=2008&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=22&year2=2008&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=23&year2=2008&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=24&year2=2008&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=25&year2=2008&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=26&year2=2008&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=27&year2=2008&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=28&year2=2008&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=29&year2=2008&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=30&year2=2008&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=5&day=31&year2=2008&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=1&year2=2008&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=2&year2=2008&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=3&year2=2008&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=4&year2=2008&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=5&year2=2008&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=6&year2=2008&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=7&year2=2008&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=8&year2=2008&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=9&year2=2008&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=10&year2=2008&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=11&year2=2008&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=12&year2=2008&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=13&year2=2008&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=14&year2=2008&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=15&year2=2008&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=16&year2=2008&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=17&year2=2008&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=18&year2=2008&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=19&year2=2008&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=20&year2=2008&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=21&year2=2008&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=22&year2=2008&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=23&year2=2008&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=24&year2=2008&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=25&year2=2008&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=26&year2=2008&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=27&year2=2008&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=28&year2=2008&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=29&year2=2008&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=6&day=30&year2=2008&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=1&year2=2008&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=2&year2=2008&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=3&year2=2008&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=4&year2=2008&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=5&year2=2008&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=6&year2=2008&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=7&year2=2008&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=8&year2=2008&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=9&year2=2008&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=10&year2=2008&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=11&year2=2008&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=12&year2=2008&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=13&year2=2008&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=14&year2=2008&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=15&year2=2008&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=16&year2=2008&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=17&year2=2008&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=18&year2=2008&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=19&year2=2008&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=20&year2=2008&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=21&year2=2008&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=22&year2=2008&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=23&year2=2008&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=24&year2=2008&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=25&year2=2008&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=26&year2=2008&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=27&year2=2008&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=28&year2=2008&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=29&year2=2008&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=30&year2=2008&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=7&day=31&year2=2008&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=1&year2=2008&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=2&year2=2008&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=3&year2=2008&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=4&year2=2008&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=5&year2=2008&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=6&year2=2008&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=7&year2=2008&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=8&year2=2008&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=9&year2=2008&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=10&year2=2008&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=11&year2=2008&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=12&year2=2008&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=13&year2=2008&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=14&year2=2008&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=15&year2=2008&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=16&year2=2008&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=17&year2=2008&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=18&year2=2008&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=19&year2=2008&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=20&year2=2008&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=21&year2=2008&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=22&year2=2008&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=23&year2=2008&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=24&year2=2008&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=25&year2=2008&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=26&year2=2008&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=27&year2=2008&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=28&year2=2008&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=29&year2=2008&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=30&year2=2008&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=8&day=31&year2=2008&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=1&year2=2008&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=2&year2=2008&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=3&year2=2008&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=4&year2=2008&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=5&year2=2008&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=6&year2=2008&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=7&year2=2008&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=8&year2=2008&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=9&year2=2008&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=10&year2=2008&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=11&year2=2008&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=12&year2=2008&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=13&year2=2008&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=14&year2=2008&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=15&year2=2008&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=16&year2=2008&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=17&year2=2008&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=18&year2=2008&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=19&year2=2008&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=20&year2=2008&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=21&year2=2008&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=22&year2=2008&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=23&year2=2008&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=24&year2=2008&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=25&year2=2008&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=26&year2=2008&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=27&year2=2008&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=28&year2=2008&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=29&year2=2008&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=9&day=30&year2=2008&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=1&year2=2008&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=2&year2=2008&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=3&year2=2008&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=4&year2=2008&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=5&year2=2008&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=6&year2=2008&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=7&year2=2008&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=8&year2=2008&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=9&year2=2008&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=10&year2=2008&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=11&year2=2008&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=12&year2=2008&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=13&year2=2008&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=14&year2=2008&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=15&year2=2008&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=16&year2=2008&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=17&year2=2008&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=18&year2=2008&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=19&year2=2008&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=20&year2=2008&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=21&year2=2008&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=22&year2=2008&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=23&year2=2008&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=24&year2=2008&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=25&year2=2008&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=26&year2=2008&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=27&year2=2008&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=28&year2=2008&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=29&year2=2008&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=30&year2=2008&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=10&day=31&year2=2008&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=1&year2=2008&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=2&year2=2008&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=3&year2=2008&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=4&year2=2008&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=5&year2=2008&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=6&year2=2008&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=7&year2=2008&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=8&year2=2008&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=9&year2=2008&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=10&year2=2008&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=11&year2=2008&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=12&year2=2008&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=13&year2=2008&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=14&year2=2008&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=15&year2=2008&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=16&year2=2008&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=17&year2=2008&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=18&year2=2008&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=19&year2=2008&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=20&year2=2008&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=21&year2=2008&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=22&year2=2008&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=23&year2=2008&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=24&year2=2008&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=25&year2=2008&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=26&year2=2008&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=27&year2=2008&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=28&year2=2008&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=29&year2=2008&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=11&day=30&year2=2008&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=1&year2=2008&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=2&year2=2008&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=3&year2=2008&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=4&year2=2008&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=5&year2=2008&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=6&year2=2008&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=7&year2=2008&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=8&year2=2008&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=9&year2=2008&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=10&year2=2008&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=11&year2=2008&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=12&year2=2008&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=13&year2=2008&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=14&year2=2008&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=15&year2=2008&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=16&year2=2008&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=17&year2=2008&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=18&year2=2008&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=19&year2=2008&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=20&year2=2008&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=21&year2=2008&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=22&year2=2008&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=23&year2=2008&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=24&year2=2008&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=25&year2=2008&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=26&year2=2008&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=27&year2=2008&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=28&year2=2008&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=29&year2=2008&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=30&year2=2008&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2008&month=12&day=31&year2=2009&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=1&year2=2009&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=2&year2=2009&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=3&year2=2009&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=4&year2=2009&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=5&year2=2009&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=6&year2=2009&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=7&year2=2009&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=8&year2=2009&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=9&year2=2009&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=10&year2=2009&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=11&year2=2009&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=12&year2=2009&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=13&year2=2009&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=14&year2=2009&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=15&year2=2009&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=16&year2=2009&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=17&year2=2009&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=18&year2=2009&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=19&year2=2009&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=20&year2=2009&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=21&year2=2009&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=22&year2=2009&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=23&year2=2009&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=24&year2=2009&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=25&year2=2009&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=26&year2=2009&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=27&year2=2009&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=28&year2=2009&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=29&year2=2009&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=30&year2=2009&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=1&day=31&year2=2009&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=1&year2=2009&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=2&year2=2009&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=3&year2=2009&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=4&year2=2009&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=5&year2=2009&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=6&year2=2009&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=7&year2=2009&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=8&year2=2009&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=9&year2=2009&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=10&year2=2009&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=11&year2=2009&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=12&year2=2009&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=13&year2=2009&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=14&year2=2009&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=15&year2=2009&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=16&year2=2009&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=17&year2=2009&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=18&year2=2009&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=19&year2=2009&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=20&year2=2009&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=21&year2=2009&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=22&year2=2009&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=23&year2=2009&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=24&year2=2009&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=25&year2=2009&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=26&year2=2009&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=27&year2=2009&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=2&day=28&year2=2009&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=1&year2=2009&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=2&year2=2009&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=3&year2=2009&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=4&year2=2009&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=5&year2=2009&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=6&year2=2009&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=7&year2=2009&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=8&year2=2009&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=9&year2=2009&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=10&year2=2009&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=11&year2=2009&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=12&year2=2009&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=13&year2=2009&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=14&year2=2009&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=15&year2=2009&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=16&year2=2009&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=17&year2=2009&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=18&year2=2009&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=19&year2=2009&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=20&year2=2009&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=21&year2=2009&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=22&year2=2009&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=23&year2=2009&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=24&year2=2009&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=25&year2=2009&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=26&year2=2009&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=27&year2=2009&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=28&year2=2009&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=29&year2=2009&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=30&year2=2009&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=3&day=31&year2=2009&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=1&year2=2009&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=2&year2=2009&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=3&year2=2009&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=4&year2=2009&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=5&year2=2009&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=6&year2=2009&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=7&year2=2009&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=8&year2=2009&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=9&year2=2009&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=10&year2=2009&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=11&year2=2009&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=12&year2=2009&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=13&year2=2009&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=14&year2=2009&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=15&year2=2009&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=16&year2=2009&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=17&year2=2009&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=18&year2=2009&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=19&year2=2009&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=20&year2=2009&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=21&year2=2009&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=22&year2=2009&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=23&year2=2009&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=24&year2=2009&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=25&year2=2009&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=26&year2=2009&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=27&year2=2009&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=28&year2=2009&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=29&year2=2009&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=4&day=30&year2=2009&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=1&year2=2009&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=2&year2=2009&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=3&year2=2009&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=4&year2=2009&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=5&year2=2009&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=6&year2=2009&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=7&year2=2009&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=8&year2=2009&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=9&year2=2009&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=10&year2=2009&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=11&year2=2009&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=12&year2=2009&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=13&year2=2009&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=14&year2=2009&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=15&year2=2009&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=16&year2=2009&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=17&year2=2009&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=18&year2=2009&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=19&year2=2009&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=20&year2=2009&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=21&year2=2009&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=22&year2=2009&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=23&year2=2009&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=24&year2=2009&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=25&year2=2009&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=26&year2=2009&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=27&year2=2009&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=28&year2=2009&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=29&year2=2009&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=30&year2=2009&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=5&day=31&year2=2009&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=1&year2=2009&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=2&year2=2009&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=3&year2=2009&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=4&year2=2009&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=5&year2=2009&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=6&year2=2009&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=7&year2=2009&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=8&year2=2009&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=9&year2=2009&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=10&year2=2009&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=11&year2=2009&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=12&year2=2009&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=13&year2=2009&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=14&year2=2009&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=15&year2=2009&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=16&year2=2009&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=17&year2=2009&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=18&year2=2009&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=19&year2=2009&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=20&year2=2009&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=21&year2=2009&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=22&year2=2009&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=23&year2=2009&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=24&year2=2009&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=25&year2=2009&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=26&year2=2009&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=27&year2=2009&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=28&year2=2009&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=29&year2=2009&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=6&day=30&year2=2009&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=1&year2=2009&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=2&year2=2009&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=3&year2=2009&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=4&year2=2009&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=5&year2=2009&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=6&year2=2009&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=7&year2=2009&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=8&year2=2009&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=9&year2=2009&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=10&year2=2009&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=11&year2=2009&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=12&year2=2009&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=13&year2=2009&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=14&year2=2009&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=15&year2=2009&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=16&year2=2009&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=17&year2=2009&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=18&year2=2009&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=19&year2=2009&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=20&year2=2009&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=21&year2=2009&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=22&year2=2009&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=23&year2=2009&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=24&year2=2009&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=25&year2=2009&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=26&year2=2009&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=27&year2=2009&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=28&year2=2009&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=29&year2=2009&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=30&year2=2009&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=7&day=31&year2=2009&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=1&year2=2009&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=2&year2=2009&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=3&year2=2009&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=4&year2=2009&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=5&year2=2009&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=6&year2=2009&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=7&year2=2009&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=8&year2=2009&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=9&year2=2009&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=10&year2=2009&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=11&year2=2009&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=12&year2=2009&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=13&year2=2009&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=14&year2=2009&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=15&year2=2009&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=16&year2=2009&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=17&year2=2009&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=18&year2=2009&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=19&year2=2009&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=20&year2=2009&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=21&year2=2009&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=22&year2=2009&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=23&year2=2009&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=24&year2=2009&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=25&year2=2009&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=26&year2=2009&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=27&year2=2009&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=28&year2=2009&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=29&year2=2009&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=30&year2=2009&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=8&day=31&year2=2009&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=1&year2=2009&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=2&year2=2009&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=3&year2=2009&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=4&year2=2009&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=5&year2=2009&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=6&year2=2009&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=7&year2=2009&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=8&year2=2009&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=9&year2=2009&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=10&year2=2009&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=11&year2=2009&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=12&year2=2009&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=13&year2=2009&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=14&year2=2009&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=15&year2=2009&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=16&year2=2009&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=17&year2=2009&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=18&year2=2009&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=19&year2=2009&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=20&year2=2009&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=21&year2=2009&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=22&year2=2009&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=23&year2=2009&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=24&year2=2009&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=25&year2=2009&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=26&year2=2009&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=27&year2=2009&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=28&year2=2009&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=29&year2=2009&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=9&day=30&year2=2009&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=1&year2=2009&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=2&year2=2009&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=3&year2=2009&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=4&year2=2009&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=5&year2=2009&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=6&year2=2009&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=7&year2=2009&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=8&year2=2009&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=9&year2=2009&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=10&year2=2009&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=11&year2=2009&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=12&year2=2009&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=13&year2=2009&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=14&year2=2009&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=15&year2=2009&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=16&year2=2009&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=17&year2=2009&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=18&year2=2009&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=19&year2=2009&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=20&year2=2009&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=21&year2=2009&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=22&year2=2009&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=23&year2=2009&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=24&year2=2009&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=25&year2=2009&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=26&year2=2009&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=27&year2=2009&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=28&year2=2009&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=29&year2=2009&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=30&year2=2009&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=10&day=31&year2=2009&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=1&year2=2009&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=2&year2=2009&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=3&year2=2009&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=4&year2=2009&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=5&year2=2009&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=6&year2=2009&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=7&year2=2009&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=8&year2=2009&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=9&year2=2009&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=10&year2=2009&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=11&year2=2009&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=12&year2=2009&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=13&year2=2009&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=14&year2=2009&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=15&year2=2009&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=16&year2=2009&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=17&year2=2009&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=18&year2=2009&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=19&year2=2009&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=20&year2=2009&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=21&year2=2009&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=22&year2=2009&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=23&year2=2009&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=24&year2=2009&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=25&year2=2009&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=26&year2=2009&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=27&year2=2009&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=28&year2=2009&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=29&year2=2009&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=11&day=30&year2=2009&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=1&year2=2009&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=2&year2=2009&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=3&year2=2009&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=4&year2=2009&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=5&year2=2009&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=6&year2=2009&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=7&year2=2009&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=8&year2=2009&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=9&year2=2009&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=10&year2=2009&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=11&year2=2009&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=12&year2=2009&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=13&year2=2009&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=14&year2=2009&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=15&year2=2009&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=16&year2=2009&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=17&year2=2009&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=18&year2=2009&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=19&year2=2009&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=20&year2=2009&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=21&year2=2009&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=22&year2=2009&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=23&year2=2009&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=24&year2=2009&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=25&year2=2009&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=26&year2=2009&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=27&year2=2009&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=28&year2=2009&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=29&year2=2009&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=30&year2=2009&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2009&month=12&day=31&year2=2010&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=1&year2=2010&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=2&year2=2010&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=3&year2=2010&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=4&year2=2010&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=5&year2=2010&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=6&year2=2010&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=7&year2=2010&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=8&year2=2010&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=9&year2=2010&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=10&year2=2010&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=11&year2=2010&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=12&year2=2010&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=13&year2=2010&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=14&year2=2010&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=15&year2=2010&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=16&year2=2010&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=17&year2=2010&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=18&year2=2010&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=19&year2=2010&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=20&year2=2010&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=21&year2=2010&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=22&year2=2010&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=23&year2=2010&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=24&year2=2010&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=25&year2=2010&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=26&year2=2010&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=27&year2=2010&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=28&year2=2010&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=29&year2=2010&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=30&year2=2010&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=1&day=31&year2=2010&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=1&year2=2010&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=2&year2=2010&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=3&year2=2010&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=4&year2=2010&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=5&year2=2010&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=6&year2=2010&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=7&year2=2010&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=8&year2=2010&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=9&year2=2010&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=10&year2=2010&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=11&year2=2010&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=12&year2=2010&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=13&year2=2010&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=14&year2=2010&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=15&year2=2010&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=16&year2=2010&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=17&year2=2010&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=18&year2=2010&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=19&year2=2010&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=20&year2=2010&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=21&year2=2010&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=22&year2=2010&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=23&year2=2010&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=24&year2=2010&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=25&year2=2010&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=26&year2=2010&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=27&year2=2010&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=2&day=28&year2=2010&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=1&year2=2010&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=2&year2=2010&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=3&year2=2010&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=4&year2=2010&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=5&year2=2010&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=6&year2=2010&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=7&year2=2010&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=8&year2=2010&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=9&year2=2010&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=10&year2=2010&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=11&year2=2010&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=12&year2=2010&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=13&year2=2010&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=14&year2=2010&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=15&year2=2010&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=16&year2=2010&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=17&year2=2010&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=18&year2=2010&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=19&year2=2010&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=20&year2=2010&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=21&year2=2010&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=22&year2=2010&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=23&year2=2010&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=24&year2=2010&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=25&year2=2010&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=26&year2=2010&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=27&year2=2010&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=28&year2=2010&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=29&year2=2010&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=30&year2=2010&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=3&day=31&year2=2010&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=1&year2=2010&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=2&year2=2010&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=3&year2=2010&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=4&year2=2010&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=5&year2=2010&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=6&year2=2010&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=7&year2=2010&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=8&year2=2010&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=9&year2=2010&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=10&year2=2010&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=11&year2=2010&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=12&year2=2010&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=13&year2=2010&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=14&year2=2010&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=15&year2=2010&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=16&year2=2010&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=17&year2=2010&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=18&year2=2010&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=19&year2=2010&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=20&year2=2010&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=21&year2=2010&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=22&year2=2010&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=23&year2=2010&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=24&year2=2010&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=25&year2=2010&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=26&year2=2010&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=27&year2=2010&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=28&year2=2010&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=29&year2=2010&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=4&day=30&year2=2010&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=1&year2=2010&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=2&year2=2010&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=3&year2=2010&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=4&year2=2010&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=5&year2=2010&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=6&year2=2010&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=7&year2=2010&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=8&year2=2010&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=9&year2=2010&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=10&year2=2010&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=11&year2=2010&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=12&year2=2010&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=13&year2=2010&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=14&year2=2010&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=15&year2=2010&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=16&year2=2010&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=17&year2=2010&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=18&year2=2010&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=19&year2=2010&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=20&year2=2010&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=21&year2=2010&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=22&year2=2010&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=23&year2=2010&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=24&year2=2010&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=25&year2=2010&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=26&year2=2010&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=27&year2=2010&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=28&year2=2010&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=29&year2=2010&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=30&year2=2010&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=5&day=31&year2=2010&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=1&year2=2010&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=2&year2=2010&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=3&year2=2010&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=4&year2=2010&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=5&year2=2010&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=6&year2=2010&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=7&year2=2010&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=8&year2=2010&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=9&year2=2010&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=10&year2=2010&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=11&year2=2010&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=12&year2=2010&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=13&year2=2010&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=14&year2=2010&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=15&year2=2010&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=16&year2=2010&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=17&year2=2010&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=18&year2=2010&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=19&year2=2010&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=20&year2=2010&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=21&year2=2010&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=22&year2=2010&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=23&year2=2010&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=24&year2=2010&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=25&year2=2010&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=26&year2=2010&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=27&year2=2010&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=28&year2=2010&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=29&year2=2010&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=6&day=30&year2=2010&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=1&year2=2010&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=2&year2=2010&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=3&year2=2010&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=4&year2=2010&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=5&year2=2010&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=6&year2=2010&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=7&year2=2010&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=8&year2=2010&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=9&year2=2010&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=10&year2=2010&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=11&year2=2010&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=12&year2=2010&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=13&year2=2010&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=14&year2=2010&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=15&year2=2010&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=16&year2=2010&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=17&year2=2010&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=18&year2=2010&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=19&year2=2010&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=20&year2=2010&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=21&year2=2010&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=22&year2=2010&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=23&year2=2010&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=24&year2=2010&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=25&year2=2010&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=26&year2=2010&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=27&year2=2010&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=28&year2=2010&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=29&year2=2010&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=30&year2=2010&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=7&day=31&year2=2010&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=1&year2=2010&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=2&year2=2010&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=3&year2=2010&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=4&year2=2010&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=5&year2=2010&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=6&year2=2010&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=7&year2=2010&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=8&year2=2010&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=9&year2=2010&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=10&year2=2010&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=11&year2=2010&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=12&year2=2010&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=13&year2=2010&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=14&year2=2010&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=15&year2=2010&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=16&year2=2010&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=17&year2=2010&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=18&year2=2010&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=19&year2=2010&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=20&year2=2010&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=21&year2=2010&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=22&year2=2010&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=23&year2=2010&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=24&year2=2010&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=25&year2=2010&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=26&year2=2010&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=27&year2=2010&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=28&year2=2010&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=29&year2=2010&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=30&year2=2010&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=8&day=31&year2=2010&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=1&year2=2010&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=2&year2=2010&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=3&year2=2010&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=4&year2=2010&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=5&year2=2010&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=6&year2=2010&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=7&year2=2010&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=8&year2=2010&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=9&year2=2010&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=10&year2=2010&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=11&year2=2010&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=12&year2=2010&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=13&year2=2010&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=14&year2=2010&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=15&year2=2010&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=16&year2=2010&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=17&year2=2010&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=18&year2=2010&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=19&year2=2010&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=20&year2=2010&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=21&year2=2010&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=22&year2=2010&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=23&year2=2010&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=24&year2=2010&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=25&year2=2010&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=26&year2=2010&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=27&year2=2010&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=28&year2=2010&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=29&year2=2010&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=9&day=30&year2=2010&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=1&year2=2010&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=2&year2=2010&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&product=ALL&AVG=10&ALM20=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=3&year2=2010&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=4&year2=2010&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=5&year2=2010&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=6&year2=2010&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=7&year2=2010&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=8&year2=2010&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=9&year2=2010&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=10&year2=2010&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=11&year2=2010&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=12&year2=2010&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=13&year2=2010&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=14&year2=2010&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=15&year2=2010&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=16&year2=2010&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=17&year2=2010&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=18&year2=2010&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=19&year2=2010&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=20&year2=2010&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=21&year2=2010&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=22&year2=2010&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=23&year2=2010&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=24&year2=2010&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=25&year2=2010&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=26&year2=2010&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=27&year2=2010&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=28&year2=2010&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=29&year2=2010&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=30&year2=2010&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=10&day=31&year2=2010&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=1&year2=2010&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=2&year2=2010&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=3&year2=2010&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=4&year2=2010&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=5&year2=2010&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=6&year2=2010&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=7&year2=2010&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=8&year2=2010&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=9&year2=2010&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=10&year2=2010&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=11&year2=2010&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=12&year2=2010&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=13&year2=2010&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=14&year2=2010&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=15&year2=2010&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=16&year2=2010&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=17&year2=2010&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=18&year2=2010&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=19&year2=2010&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=20&year2=2010&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=21&year2=2010&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=22&year2=2010&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=23&year2=2010&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=24&year2=2010&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=25&year2=2010&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=26&year2=2010&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=27&year2=2010&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=28&year2=2010&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=29&year2=2010&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=11&day=30&year2=2010&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=1&year2=2010&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=2&year2=2010&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=3&year2=2010&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=4&year2=2010&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=5&year2=2010&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=6&year2=2010&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=7&year2=2010&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=8&year2=2010&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=9&year2=2010&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=10&year2=2010&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=11&year2=2010&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=12&year2=2010&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=13&year2=2010&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=14&year2=2010&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=15&year2=2010&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=16&year2=2010&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=17&year2=2010&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=18&year2=2010&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=19&year2=2010&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=20&year2=2010&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=21&year2=2010&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=22&year2=2010&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=23&year2=2010&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=24&year2=2010&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=25&year2=2010&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=26&year2=2010&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=27&year2=2010&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=28&year2=2010&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=29&year2=2010&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=30&year2=2010&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2010&month=12&day=31&year2=2011&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=1&year2=2011&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=2&year2=2011&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=3&year2=2011&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=4&year2=2011&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=5&year2=2011&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=6&year2=2011&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=7&year2=2011&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=8&year2=2011&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=9&year2=2011&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=10&year2=2011&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=11&year2=2011&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=12&year2=2011&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=13&year2=2011&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=14&year2=2011&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=15&year2=2011&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=16&year2=2011&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=17&year2=2011&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=18&year2=2011&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=19&year2=2011&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=20&year2=2011&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=21&year2=2011&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=22&year2=2011&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=23&year2=2011&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=24&year2=2011&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=25&year2=2011&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=26&year2=2011&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=27&year2=2011&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=28&year2=2011&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=29&year2=2011&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=30&year2=2011&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=1&day=31&year2=2011&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=1&year2=2011&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=2&year2=2011&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=3&year2=2011&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=4&year2=2011&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=5&year2=2011&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=6&year2=2011&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=7&year2=2011&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=8&year2=2011&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=9&year2=2011&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=10&year2=2011&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=11&year2=2011&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=12&year2=2011&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=13&year2=2011&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=14&year2=2011&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=15&year2=2011&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=16&year2=2011&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=17&year2=2011&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=18&year2=2011&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=19&year2=2011&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=20&year2=2011&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=21&year2=2011&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=22&year2=2011&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=23&year2=2011&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=24&year2=2011&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=25&year2=2011&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=26&year2=2011&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=27&year2=2011&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=2&day=28&year2=2011&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=1&year2=2011&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=2&year2=2011&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=3&year2=2011&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=4&year2=2011&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=5&year2=2011&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=6&year2=2011&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=7&year2=2011&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=8&year2=2011&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=9&year2=2011&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=10&year2=2011&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=11&year2=2011&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=12&year2=2011&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=13&year2=2011&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=14&year2=2011&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=15&year2=2011&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=16&year2=2011&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=17&year2=2011&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=18&year2=2011&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=19&year2=2011&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=20&year2=2011&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=21&year2=2011&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=22&year2=2011&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=23&year2=2011&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=24&year2=2011&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=25&year2=2011&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=26&year2=2011&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=27&year2=2011&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=28&year2=2011&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=29&year2=2011&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=30&year2=2011&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=3&day=31&year2=2011&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=1&year2=2011&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=2&year2=2011&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=3&year2=2011&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=4&year2=2011&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=5&year2=2011&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=6&year2=2011&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=7&year2=2011&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=8&year2=2011&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=9&year2=2011&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=10&year2=2011&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=11&year2=2011&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=12&year2=2011&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=13&year2=2011&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=14&year2=2011&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=15&year2=2011&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=16&year2=2011&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=17&year2=2011&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=18&year2=2011&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=19&year2=2011&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=20&year2=2011&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=21&year2=2011&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=22&year2=2011&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=23&year2=2011&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=24&year2=2011&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=25&year2=2011&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=26&year2=2011&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=27&year2=2011&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=28&year2=2011&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=29&year2=2011&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=4&day=30&year2=2011&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=1&year2=2011&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=2&year2=2011&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=3&year2=2011&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=4&year2=2011&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=5&year2=2011&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=6&year2=2011&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=7&year2=2011&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=8&year2=2011&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=9&year2=2011&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=10&year2=2011&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=11&year2=2011&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=12&year2=2011&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=13&year2=2011&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=14&year2=2011&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=15&year2=2011&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=16&year2=2011&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=17&year2=2011&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=18&year2=2011&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=19&year2=2011&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=20&year2=2011&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=21&year2=2011&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=22&year2=2011&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=23&year2=2011&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=24&year2=2011&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=25&year2=2011&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=26&year2=2011&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=27&year2=2011&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=28&year2=2011&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=29&year2=2011&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=30&year2=2011&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=5&day=31&year2=2011&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=1&year2=2011&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=2&year2=2011&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=3&year2=2011&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=4&year2=2011&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=5&year2=2011&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=6&year2=2011&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=7&year2=2011&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=8&year2=2011&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=9&year2=2011&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=10&year2=2011&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=11&year2=2011&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=12&year2=2011&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=13&year2=2011&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=14&year2=2011&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=15&year2=2011&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=16&year2=2011&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=17&year2=2011&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=18&year2=2011&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=19&year2=2011&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=20&year2=2011&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=21&year2=2011&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=22&year2=2011&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=23&year2=2011&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=24&year2=2011&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=25&year2=2011&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=26&year2=2011&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=27&year2=2011&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=28&year2=2011&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=29&year2=2011&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=6&day=30&year2=2011&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=1&year2=2011&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=2&year2=2011&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=3&year2=2011&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=4&year2=2011&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=5&year2=2011&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=6&year2=2011&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=7&year2=2011&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=8&year2=2011&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=9&year2=2011&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=10&year2=2011&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=11&year2=2011&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=12&year2=2011&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=13&year2=2011&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=14&year2=2011&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=15&year2=2011&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=16&year2=2011&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=17&year2=2011&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=18&year2=2011&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=19&year2=2011&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=20&year2=2011&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=21&year2=2011&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=22&year2=2011&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=23&year2=2011&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=24&year2=2011&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=25&year2=2011&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=26&year2=2011&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=27&year2=2011&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=28&year2=2011&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=29&year2=2011&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=30&year2=2011&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=7&day=31&year2=2011&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=1&year2=2011&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=2&year2=2011&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=3&year2=2011&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=4&year2=2011&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=5&year2=2011&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=6&year2=2011&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=7&year2=2011&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=8&year2=2011&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=9&year2=2011&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=10&year2=2011&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=11&year2=2011&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=12&year2=2011&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=13&year2=2011&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=14&year2=2011&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=15&year2=2011&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=16&year2=2011&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=17&year2=2011&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=18&year2=2011&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=19&year2=2011&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=20&year2=2011&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=21&year2=2011&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=22&year2=2011&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=23&year2=2011&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=24&year2=2011&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=25&year2=2011&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=26&year2=2011&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=27&year2=2011&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=28&year2=2011&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=29&year2=2011&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=30&year2=2011&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=8&day=31&year2=2011&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=1&year2=2011&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=2&year2=2011&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=3&year2=2011&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=4&year2=2011&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=5&year2=2011&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=6&year2=2011&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=7&year2=2011&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=8&year2=2011&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=9&year2=2011&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=10&year2=2011&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=11&year2=2011&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=12&year2=2011&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=13&year2=2011&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=14&year2=2011&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=15&year2=2011&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=16&year2=2011&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=17&year2=2011&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=18&year2=2011&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=19&year2=2011&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=20&year2=2011&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=21&year2=2011&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=22&year2=2011&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=23&year2=2011&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=24&year2=2011&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=25&year2=2011&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=26&year2=2011&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=27&year2=2011&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=28&year2=2011&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=29&year2=2011&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=9&day=30&year2=2011&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=1&year2=2011&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=2&year2=2011&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=3&year2=2011&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=4&year2=2011&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=5&year2=2011&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=6&year2=2011&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=7&year2=2011&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=8&year2=2011&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=9&year2=2011&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=10&year2=2011&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=11&year2=2011&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=12&year2=2011&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=13&year2=2011&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=14&year2=2011&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=15&year2=2011&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=16&year2=2011&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=17&year2=2011&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=18&year2=2011&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=19&year2=2011&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=20&year2=2011&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=21&year2=2011&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=22&year2=2011&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=23&year2=2011&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=24&year2=2011&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=25&year2=2011&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=26&year2=2011&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=27&year2=2011&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=28&year2=2011&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=29&year2=2011&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=30&year2=2011&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=10&day=31&year2=2011&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=1&year2=2011&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=2&year2=2011&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=3&year2=2011&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=4&year2=2011&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=5&year2=2011&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=6&year2=2011&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=7&year2=2011&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=8&year2=2011&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=9&year2=2011&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=10&year2=2011&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=11&year2=2011&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=12&year2=2011&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=13&year2=2011&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=14&year2=2011&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=15&year2=2011&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=16&year2=2011&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=17&year2=2011&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=18&year2=2011&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=19&year2=2011&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=20&year2=2011&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=21&year2=2011&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=22&year2=2011&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=23&year2=2011&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=24&year2=2011&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=25&year2=2011&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=26&year2=2011&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=27&year2=2011&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=28&year2=2011&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=29&year2=2011&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=11&day=30&year2=2011&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=1&year2=2011&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=2&year2=2011&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=3&year2=2011&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=4&year2=2011&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=5&year2=2011&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=6&year2=2011&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=7&year2=2011&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=8&year2=2011&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=9&year2=2011&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=10&year2=2011&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=11&year2=2011&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=12&year2=2011&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=13&year2=2011&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=14&year2=2011&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=15&year2=2011&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=16&year2=2011&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=17&year2=2011&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=18&year2=2011&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=19&year2=2011&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=20&year2=2011&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=21&year2=2011&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=22&year2=2011&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=23&year2=2011&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=24&year2=2011&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=25&year2=2011&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=26&year2=2011&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=27&year2=2011&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=28&year2=2011&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=29&year2=2011&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=30&year2=2011&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2011&month=12&day=31&year2=2012&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=1&year2=2012&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=2&year2=2012&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=3&year2=2012&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=4&year2=2012&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=5&year2=2012&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=6&year2=2012&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=7&year2=2012&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=8&year2=2012&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=9&year2=2012&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=10&year2=2012&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=11&year2=2012&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=12&year2=2012&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=13&year2=2012&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=14&year2=2012&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=15&year2=2012&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=16&year2=2012&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=17&year2=2012&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=18&year2=2012&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=19&year2=2012&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=20&year2=2012&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=21&year2=2012&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=22&year2=2012&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=23&year2=2012&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=24&year2=2012&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=25&year2=2012&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=26&year2=2012&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=27&year2=2012&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=28&year2=2012&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=29&year2=2012&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=30&year2=2012&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=1&day=31&year2=2012&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=1&year2=2012&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=2&year2=2012&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=3&year2=2012&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=4&year2=2012&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=5&year2=2012&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=6&year2=2012&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=7&year2=2012&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=8&year2=2012&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=9&year2=2012&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=10&year2=2012&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=11&year2=2012&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=12&year2=2012&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=13&year2=2012&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=14&year2=2012&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=15&year2=2012&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=16&year2=2012&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=17&year2=2012&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=18&year2=2012&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=19&year2=2012&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=20&year2=2012&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=21&year2=2012&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=22&year2=2012&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=23&year2=2012&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=24&year2=2012&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=25&year2=2012&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=26&year2=2012&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=27&year2=2012&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=28&year2=2012&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=2&day=29&year2=2012&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=1&year2=2012&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=2&year2=2012&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=3&year2=2012&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=4&year2=2012&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=5&year2=2012&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=6&year2=2012&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=7&year2=2012&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=8&year2=2012&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=9&year2=2012&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=10&year2=2012&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=11&year2=2012&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=12&year2=2012&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=13&year2=2012&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=14&year2=2012&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=15&year2=2012&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=16&year2=2012&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=17&year2=2012&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=18&year2=2012&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=19&year2=2012&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=20&year2=2012&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=21&year2=2012&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=22&year2=2012&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=23&year2=2012&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=24&year2=2012&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=25&year2=2012&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=26&year2=2012&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=27&year2=2012&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=28&year2=2012&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=29&year2=2012&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=30&year2=2012&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=3&day=31&year2=2012&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=1&year2=2012&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=2&year2=2012&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=3&year2=2012&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=4&year2=2012&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=5&year2=2012&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=6&year2=2012&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=7&year2=2012&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=8&year2=2012&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=9&year2=2012&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=10&year2=2012&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=11&year2=2012&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=12&year2=2012&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=13&year2=2012&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=14&year2=2012&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=15&year2=2012&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=16&year2=2012&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=17&year2=2012&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=18&year2=2012&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=19&year2=2012&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=20&year2=2012&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=21&year2=2012&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=22&year2=2012&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=23&year2=2012&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=24&year2=2012&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=25&year2=2012&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=26&year2=2012&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=27&year2=2012&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=28&year2=2012&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=29&year2=2012&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=4&day=30&year2=2012&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=1&year2=2012&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=2&year2=2012&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=3&year2=2012&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=4&year2=2012&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=5&year2=2012&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=6&year2=2012&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=7&year2=2012&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=8&year2=2012&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=9&year2=2012&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=10&year2=2012&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=11&year2=2012&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=12&year2=2012&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=13&year2=2012&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=14&year2=2012&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=15&year2=2012&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=16&year2=2012&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=17&year2=2012&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=18&year2=2012&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=19&year2=2012&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=20&year2=2012&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=21&year2=2012&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=22&year2=2012&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=23&year2=2012&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=24&year2=2012&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=25&year2=2012&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=26&year2=2012&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=27&year2=2012&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=28&year2=2012&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=29&year2=2012&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=30&year2=2012&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=5&day=31&year2=2012&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=1&year2=2012&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=2&year2=2012&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=3&year2=2012&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=4&year2=2012&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=5&year2=2012&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=6&year2=2012&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=7&year2=2012&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=8&year2=2012&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=9&year2=2012&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=10&year2=2012&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=11&year2=2012&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=12&year2=2012&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=13&year2=2012&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=14&year2=2012&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=15&year2=2012&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=16&year2=2012&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=17&year2=2012&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=18&year2=2012&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=19&year2=2012&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=20&year2=2012&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=21&year2=2012&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=22&year2=2012&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=23&year2=2012&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=24&year2=2012&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=25&year2=2012&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=26&year2=2012&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=27&year2=2012&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=28&year2=2012&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=29&year2=2012&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=6&day=30&year2=2012&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=1&year2=2012&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=2&year2=2012&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=3&year2=2012&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=4&year2=2012&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=5&year2=2012&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=6&year2=2012&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=7&year2=2012&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=8&year2=2012&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=9&year2=2012&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=10&year2=2012&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=11&year2=2012&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=12&year2=2012&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=13&year2=2012&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=14&year2=2012&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=15&year2=2012&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=16&year2=2012&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=17&year2=2012&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=18&year2=2012&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=19&year2=2012&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=20&year2=2012&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=21&year2=2012&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=22&year2=2012&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=23&year2=2012&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=24&year2=2012&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=25&year2=2012&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=26&year2=2012&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=27&year2=2012&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=28&year2=2012&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=29&year2=2012&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=30&year2=2012&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=7&day=31&year2=2012&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=1&year2=2012&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=2&year2=2012&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=3&year2=2012&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=4&year2=2012&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=5&year2=2012&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=6&year2=2012&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=7&year2=2012&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=8&year2=2012&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=9&year2=2012&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=10&year2=2012&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=11&year2=2012&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=12&year2=2012&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=13&year2=2012&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=14&year2=2012&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=15&year2=2012&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=16&year2=2012&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=17&year2=2012&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=18&year2=2012&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=19&year2=2012&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=20&year2=2012&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=21&year2=2012&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=22&year2=2012&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=23&year2=2012&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=24&year2=2012&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=25&year2=2012&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=26&year2=2012&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=27&year2=2012&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=28&year2=2012&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=29&year2=2012&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=30&year2=2012&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=8&day=31&year2=2012&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=1&year2=2012&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=2&year2=2012&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=3&year2=2012&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=4&year2=2012&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=5&year2=2012&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=6&year2=2012&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=7&year2=2012&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=8&year2=2012&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=9&year2=2012&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=10&year2=2012&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=11&year2=2012&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=12&year2=2012&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=13&year2=2012&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=14&year2=2012&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=15&year2=2012&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=16&year2=2012&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=17&year2=2012&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=18&year2=2012&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=19&year2=2012&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=20&year2=2012&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=21&year2=2012&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=22&year2=2012&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=23&year2=2012&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=24&year2=2012&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=25&year2=2012&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=26&year2=2012&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=27&year2=2012&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=28&year2=2012&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=29&year2=2012&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=9&day=30&year2=2012&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=1&year2=2012&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=2&year2=2012&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=3&year2=2012&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=4&year2=2012&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=5&year2=2012&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=6&year2=2012&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=7&year2=2012&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=8&year2=2012&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=9&year2=2012&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=10&year2=2012&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=11&year2=2012&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=12&year2=2012&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=13&year2=2012&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=14&year2=2012&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=15&year2=2012&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=16&year2=2012&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=17&year2=2012&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=18&year2=2012&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=19&year2=2012&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=20&year2=2012&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=21&year2=2012&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=22&year2=2012&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=23&year2=2012&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=24&year2=2012&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=25&year2=2012&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=26&year2=2012&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=27&year2=2012&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=28&year2=2012&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=29&year2=2012&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=30&year2=2012&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=10&day=31&year2=2012&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=1&year2=2012&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=2&year2=2012&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=3&year2=2012&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=4&year2=2012&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=5&year2=2012&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=6&year2=2012&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=7&year2=2012&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=8&year2=2012&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=9&year2=2012&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=10&year2=2012&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=11&year2=2012&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=12&year2=2012&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=13&year2=2012&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=14&year2=2012&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=15&year2=2012&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=16&year2=2012&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=17&year2=2012&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=18&year2=2012&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=19&year2=2012&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=20&year2=2012&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=21&year2=2012&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=22&year2=2012&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=23&year2=2012&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=24&year2=2012&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=25&year2=2012&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=26&year2=2012&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=27&year2=2012&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=28&year2=2012&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=29&year2=2012&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=11&day=30&year2=2012&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=1&year2=2012&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=2&year2=2012&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=3&year2=2012&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=4&year2=2012&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=5&year2=2012&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=6&year2=2012&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=7&year2=2012&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=8&year2=2012&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=9&year2=2012&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=10&year2=2012&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=11&year2=2012&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=12&year2=2012&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=13&year2=2012&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=14&year2=2012&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=15&year2=2012&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=16&year2=2012&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=17&year2=2012&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=18&year2=2012&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=19&year2=2012&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=20&year2=2012&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=21&year2=2012&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=22&year2=2012&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=23&year2=2012&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=24&year2=2012&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=25&year2=2012&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=26&year2=2012&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=27&year2=2012&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=28&year2=2012&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=29&year2=2012&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=30&year2=2012&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2012&month=12&day=31&year2=2013&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=1&year2=2013&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=2&year2=2013&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=3&year2=2013&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=4&year2=2013&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=5&year2=2013&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=6&year2=2013&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=7&year2=2013&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=8&year2=2013&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=9&year2=2013&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=10&year2=2013&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=11&year2=2013&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=12&year2=2013&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=13&year2=2013&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=14&year2=2013&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=15&year2=2013&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=16&year2=2013&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=17&year2=2013&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=18&year2=2013&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=19&year2=2013&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=20&year2=2013&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=21&year2=2013&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=22&year2=2013&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=23&year2=2013&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=24&year2=2013&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=25&year2=2013&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=26&year2=2013&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=27&year2=2013&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=28&year2=2013&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=29&year2=2013&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=30&year2=2013&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=1&day=31&year2=2013&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=1&year2=2013&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=2&year2=2013&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=3&year2=2013&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=4&year2=2013&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=5&year2=2013&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=6&year2=2013&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=7&year2=2013&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=8&year2=2013&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=9&year2=2013&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=10&year2=2013&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=11&year2=2013&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=12&year2=2013&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=13&year2=2013&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=14&year2=2013&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=15&year2=2013&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=16&year2=2013&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=17&year2=2013&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=18&year2=2013&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=19&year2=2013&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=20&year2=2013&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=21&year2=2013&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=22&year2=2013&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=23&year2=2013&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=24&year2=2013&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=25&year2=2013&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=26&year2=2013&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=27&year2=2013&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=2&day=28&year2=2013&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=1&year2=2013&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=2&year2=2013&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=3&year2=2013&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=4&year2=2013&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=5&year2=2013&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=6&year2=2013&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=7&year2=2013&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=8&year2=2013&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=9&year2=2013&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=10&year2=2013&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=11&year2=2013&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=12&year2=2013&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=13&year2=2013&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=14&year2=2013&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=15&year2=2013&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=16&year2=2013&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=17&year2=2013&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=18&year2=2013&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=19&year2=2013&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=20&year2=2013&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=21&year2=2013&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=22&year2=2013&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=23&year2=2013&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=24&year2=2013&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=25&year2=2013&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=26&year2=2013&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=27&year2=2013&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=28&year2=2013&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=29&year2=2013&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=30&year2=2013&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=3&day=31&year2=2013&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=1&year2=2013&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=2&year2=2013&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=3&year2=2013&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=4&year2=2013&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=5&year2=2013&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=6&year2=2013&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=7&year2=2013&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=8&year2=2013&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=9&year2=2013&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=10&year2=2013&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=11&year2=2013&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=12&year2=2013&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=13&year2=2013&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=14&year2=2013&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=15&year2=2013&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=16&year2=2013&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=17&year2=2013&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=18&year2=2013&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=19&year2=2013&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=20&year2=2013&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=21&year2=2013&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=22&year2=2013&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=23&year2=2013&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=24&year2=2013&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=25&year2=2013&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=26&year2=2013&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=27&year2=2013&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=28&year2=2013&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=29&year2=2013&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=4&day=30&year2=2013&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=1&year2=2013&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=2&year2=2013&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=3&year2=2013&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=4&year2=2013&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=5&year2=2013&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=6&year2=2013&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=7&year2=2013&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=8&year2=2013&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=9&year2=2013&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=10&year2=2013&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=11&year2=2013&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=12&year2=2013&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=13&year2=2013&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=14&year2=2013&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=15&year2=2013&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=16&year2=2013&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=17&year2=2013&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=18&year2=2013&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=19&year2=2013&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=20&year2=2013&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=21&year2=2013&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=22&year2=2013&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=23&year2=2013&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=24&year2=2013&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=25&year2=2013&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=26&year2=2013&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=27&year2=2013&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=28&year2=2013&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=29&year2=2013&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=30&year2=2013&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=5&day=31&year2=2013&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=1&year2=2013&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=2&year2=2013&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=3&year2=2013&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=4&year2=2013&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=5&year2=2013&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=6&year2=2013&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=7&year2=2013&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=8&year2=2013&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=9&year2=2013&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=10&year2=2013&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=11&year2=2013&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=12&year2=2013&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=13&year2=2013&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=14&year2=2013&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=15&year2=2013&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=16&year2=2013&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=17&year2=2013&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=18&year2=2013&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=19&year2=2013&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=20&year2=2013&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=21&year2=2013&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=22&year2=2013&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=23&year2=2013&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=24&year2=2013&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=25&year2=2013&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=26&year2=2013&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=27&year2=2013&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=28&year2=2013&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=29&year2=2013&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=6&day=30&year2=2013&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=1&year2=2013&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=2&year2=2013&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=3&year2=2013&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=4&year2=2013&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=5&year2=2013&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=6&year2=2013&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=7&year2=2013&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=8&year2=2013&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=9&year2=2013&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=10&year2=2013&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=11&year2=2013&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=12&year2=2013&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=13&year2=2013&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=14&year2=2013&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=15&year2=2013&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=16&year2=2013&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=17&year2=2013&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=18&year2=2013&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=19&year2=2013&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=20&year2=2013&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=21&year2=2013&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=22&year2=2013&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=23&year2=2013&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=24&year2=2013&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=25&year2=2013&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=26&year2=2013&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=27&year2=2013&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=28&year2=2013&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=29&year2=2013&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=30&year2=2013&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=7&day=31&year2=2013&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=1&year2=2013&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=2&year2=2013&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=3&year2=2013&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=4&year2=2013&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=5&year2=2013&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=6&year2=2013&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=7&year2=2013&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=8&year2=2013&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=9&year2=2013&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=10&year2=2013&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=11&year2=2013&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=12&year2=2013&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=13&year2=2013&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=14&year2=2013&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=15&year2=2013&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=16&year2=2013&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=17&year2=2013&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=18&year2=2013&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=19&year2=2013&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=20&year2=2013&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=21&year2=2013&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=22&year2=2013&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=23&year2=2013&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=24&year2=2013&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=25&year2=2013&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=26&year2=2013&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=27&year2=2013&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=28&year2=2013&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=29&year2=2013&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=30&year2=2013&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=8&day=31&year2=2013&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=1&year2=2013&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=2&year2=2013&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=3&year2=2013&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=4&year2=2013&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=5&year2=2013&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=6&year2=2013&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=7&year2=2013&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=8&year2=2013&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=9&year2=2013&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=10&year2=2013&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=11&year2=2013&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=12&year2=2013&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=13&year2=2013&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=14&year2=2013&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=15&year2=2013&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=16&year2=2013&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=17&year2=2013&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=18&year2=2013&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=19&year2=2013&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=20&year2=2013&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=21&year2=2013&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=22&year2=2013&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=23&year2=2013&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=24&year2=2013&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=25&year2=2013&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=26&year2=2013&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=27&year2=2013&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=28&year2=2013&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=29&year2=2013&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=9&day=30&year2=2013&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=1&year2=2013&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=2&year2=2013&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=3&year2=2013&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=4&year2=2013&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=5&year2=2013&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=6&year2=2013&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=7&year2=2013&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=8&year2=2013&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=9&year2=2013&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=10&year2=2013&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=11&year2=2013&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=12&year2=2013&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=13&year2=2013&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=14&year2=2013&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=15&year2=2013&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=16&year2=2013&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=17&year2=2013&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=18&year2=2013&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=19&year2=2013&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=20&year2=2013&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=21&year2=2013&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=22&year2=2013&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=23&year2=2013&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=24&year2=2013&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=25&year2=2013&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=26&year2=2013&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=27&year2=2013&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=28&year2=2013&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=29&year2=2013&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=30&year2=2013&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=10&day=31&year2=2013&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=1&year2=2013&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=2&year2=2013&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=3&year2=2013&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=4&year2=2013&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=5&year2=2013&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=6&year2=2013&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=7&year2=2013&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=8&year2=2013&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=9&year2=2013&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=10&year2=2013&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=11&year2=2013&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=12&year2=2013&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=13&year2=2013&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=14&year2=2013&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=15&year2=2013&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=16&year2=2013&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=17&year2=2013&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=18&year2=2013&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=19&year2=2013&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=20&year2=2013&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=21&year2=2013&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=22&year2=2013&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=23&year2=2013&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=24&year2=2013&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=25&year2=2013&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=26&year2=2013&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=27&year2=2013&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=28&year2=2013&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=29&year2=2013&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=11&day=30&year2=2013&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=1&year2=2013&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=2&year2=2013&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=3&year2=2013&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=4&year2=2013&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=5&year2=2013&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=6&year2=2013&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=7&year2=2013&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=8&year2=2013&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=9&year2=2013&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=10&year2=2013&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=11&year2=2013&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=12&year2=2013&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=13&year2=2013&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=14&year2=2013&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=15&year2=2013&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=16&year2=2013&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=17&year2=2013&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=18&year2=2013&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=19&year2=2013&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=20&year2=2013&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=21&year2=2013&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=22&year2=2013&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=23&year2=2013&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=24&year2=2013&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=25&year2=2013&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=26&year2=2013&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=27&year2=2013&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=28&year2=2013&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=29&year2=2013&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=30&year2=2013&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2013&month=12&day=31&year2=2014&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=1&year2=2014&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=2&year2=2014&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=3&year2=2014&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=4&year2=2014&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=5&year2=2014&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=6&year2=2014&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=7&year2=2014&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=8&year2=2014&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=9&year2=2014&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=10&year2=2014&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=11&year2=2014&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=12&year2=2014&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=13&year2=2014&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=14&year2=2014&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=15&year2=2014&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=16&year2=2014&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=17&year2=2014&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=18&year2=2014&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=19&year2=2014&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=20&year2=2014&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=21&year2=2014&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=22&year2=2014&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=23&year2=2014&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=24&year2=2014&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=25&year2=2014&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=26&year2=2014&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=27&year2=2014&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=28&year2=2014&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=29&year2=2014&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=30&year2=2014&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=1&day=31&year2=2014&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=1&year2=2014&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=2&year2=2014&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=3&year2=2014&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=4&year2=2014&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=5&year2=2014&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=6&year2=2014&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=7&year2=2014&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=8&year2=2014&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=9&year2=2014&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=10&year2=2014&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=11&year2=2014&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=12&year2=2014&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=13&year2=2014&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=14&year2=2014&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=15&year2=2014&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=16&year2=2014&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=17&year2=2014&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=18&year2=2014&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=19&year2=2014&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=20&year2=2014&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=21&year2=2014&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=22&year2=2014&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=23&year2=2014&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=24&year2=2014&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=25&year2=2014&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=26&year2=2014&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=27&year2=2014&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=2&day=28&year2=2014&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=1&year2=2014&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=2&year2=2014&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=3&year2=2014&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=4&year2=2014&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=5&year2=2014&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=6&year2=2014&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=7&year2=2014&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=8&year2=2014&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=9&year2=2014&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=10&year2=2014&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=11&year2=2014&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=12&year2=2014&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=13&year2=2014&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=14&year2=2014&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=15&year2=2014&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=16&year2=2014&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=17&year2=2014&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=18&year2=2014&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=19&year2=2014&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=20&year2=2014&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=21&year2=2014&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=22&year2=2014&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=23&year2=2014&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=24&year2=2014&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=25&year2=2014&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=26&year2=2014&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=27&year2=2014&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=28&year2=2014&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=29&year2=2014&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=30&year2=2014&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=3&day=31&year2=2014&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=1&year2=2014&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=2&year2=2014&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=3&year2=2014&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=4&year2=2014&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=5&year2=2014&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=6&year2=2014&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=7&year2=2014&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=8&year2=2014&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=9&year2=2014&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=10&year2=2014&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=11&year2=2014&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=12&year2=2014&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=13&year2=2014&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=14&year2=2014&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=15&year2=2014&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=16&year2=2014&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=17&year2=2014&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=18&year2=2014&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=19&year2=2014&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=20&year2=2014&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=21&year2=2014&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=22&year2=2014&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=23&year2=2014&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=24&year2=2014&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=25&year2=2014&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=26&year2=2014&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=27&year2=2014&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=28&year2=2014&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=29&year2=2014&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=4&day=30&year2=2014&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=1&year2=2014&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=2&year2=2014&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=3&year2=2014&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=4&year2=2014&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=5&year2=2014&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=6&year2=2014&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=7&year2=2014&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=8&year2=2014&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=9&year2=2014&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=10&year2=2014&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=11&year2=2014&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=12&year2=2014&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=13&year2=2014&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=14&year2=2014&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=15&year2=2014&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=16&year2=2014&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=17&year2=2014&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=18&year2=2014&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=19&year2=2014&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=20&year2=2014&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=21&year2=2014&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=22&year2=2014&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=23&year2=2014&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=24&year2=2014&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=25&year2=2014&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=26&year2=2014&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=27&year2=2014&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=28&year2=2014&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=29&year2=2014&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=30&year2=2014&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=5&day=31&year2=2014&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=1&year2=2014&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=2&year2=2014&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=3&year2=2014&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=4&year2=2014&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=5&year2=2014&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=6&year2=2014&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=7&year2=2014&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=8&year2=2014&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=9&year2=2014&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=10&year2=2014&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=11&year2=2014&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=12&year2=2014&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=13&year2=2014&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=14&year2=2014&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=15&year2=2014&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=16&year2=2014&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=17&year2=2014&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=18&year2=2014&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=19&year2=2014&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=20&year2=2014&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=21&year2=2014&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=22&year2=2014&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=23&year2=2014&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=24&year2=2014&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=25&year2=2014&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=26&year2=2014&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=27&year2=2014&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=28&year2=2014&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=29&year2=2014&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=6&day=30&year2=2014&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=1&year2=2014&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=2&year2=2014&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=3&year2=2014&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=4&year2=2014&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=5&year2=2014&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=6&year2=2014&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=7&year2=2014&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=8&year2=2014&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=9&year2=2014&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=10&year2=2014&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=11&year2=2014&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=12&year2=2014&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=13&year2=2014&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=14&year2=2014&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=15&year2=2014&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=16&year2=2014&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=17&year2=2014&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=18&year2=2014&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=19&year2=2014&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=20&year2=2014&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=21&year2=2014&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=22&year2=2014&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=23&year2=2014&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=24&year2=2014&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=25&year2=2014&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=26&year2=2014&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=27&year2=2014&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=28&year2=2014&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=29&year2=2014&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=30&year2=2014&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=7&day=31&year2=2014&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=1&year2=2014&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=2&year2=2014&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=3&year2=2014&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=4&year2=2014&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=5&year2=2014&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=6&year2=2014&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=7&year2=2014&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=8&year2=2014&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=9&year2=2014&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=10&year2=2014&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=11&year2=2014&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=12&year2=2014&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=13&year2=2014&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=14&year2=2014&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=15&year2=2014&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=16&year2=2014&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=17&year2=2014&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=18&year2=2014&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=19&year2=2014&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=20&year2=2014&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=21&year2=2014&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=22&year2=2014&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=23&year2=2014&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=24&year2=2014&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=25&year2=2014&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=26&year2=2014&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=27&year2=2014&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=28&year2=2014&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=29&year2=2014&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=30&year2=2014&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=8&day=31&year2=2014&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=1&year2=2014&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=2&year2=2014&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=3&year2=2014&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=4&year2=2014&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=5&year2=2014&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=6&year2=2014&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=7&year2=2014&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=8&year2=2014&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=9&year2=2014&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=10&year2=2014&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=11&year2=2014&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=12&year2=2014&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=13&year2=2014&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=14&year2=2014&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=15&year2=2014&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=16&year2=2014&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=17&year2=2014&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=18&year2=2014&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=19&year2=2014&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=20&year2=2014&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=21&year2=2014&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=22&year2=2014&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=23&year2=2014&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=24&year2=2014&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=25&year2=2014&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=26&year2=2014&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=27&year2=2014&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=28&year2=2014&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=29&year2=2014&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=9&day=30&year2=2014&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=1&year2=2014&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=2&year2=2014&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=3&year2=2014&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=4&year2=2014&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=5&year2=2014&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=6&year2=2014&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=7&year2=2014&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=8&year2=2014&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=9&year2=2014&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=10&year2=2014&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=11&year2=2014&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=12&year2=2014&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=13&year2=2014&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=14&year2=2014&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=15&year2=2014&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=16&year2=2014&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=17&year2=2014&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=18&year2=2014&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=19&year2=2014&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=20&year2=2014&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=21&year2=2014&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=22&year2=2014&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=23&year2=2014&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=24&year2=2014&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=25&year2=2014&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=26&year2=2014&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=27&year2=2014&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=28&year2=2014&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=29&year2=2014&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=30&year2=2014&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=10&day=31&year2=2014&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=1&year2=2014&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=2&year2=2014&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=3&year2=2014&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=4&year2=2014&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=5&year2=2014&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=6&year2=2014&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=7&year2=2014&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=8&year2=2014&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=9&year2=2014&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=10&year2=2014&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=11&year2=2014&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=12&year2=2014&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=13&year2=2014&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=14&year2=2014&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=15&year2=2014&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=16&year2=2014&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=17&year2=2014&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=18&year2=2014&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=19&year2=2014&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=20&year2=2014&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=21&year2=2014&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=22&year2=2014&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=23&year2=2014&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=24&year2=2014&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=25&year2=2014&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=26&year2=2014&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=27&year2=2014&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=28&year2=2014&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=29&year2=2014&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=11&day=30&year2=2014&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=1&year2=2014&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=2&year2=2014&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=3&year2=2014&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=4&year2=2014&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=5&year2=2014&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=6&year2=2014&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=7&year2=2014&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=8&year2=2014&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=9&year2=2014&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=10&year2=2014&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=11&year2=2014&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=12&year2=2014&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=13&year2=2014&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=14&year2=2014&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=15&year2=2014&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=16&year2=2014&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=17&year2=2014&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=18&year2=2014&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=19&year2=2014&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=20&year2=2014&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=21&year2=2014&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=22&year2=2014&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=23&year2=2014&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=24&year2=2014&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=25&year2=2014&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=26&year2=2014&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=27&year2=2014&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=28&year2=2014&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=29&year2=2014&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=30&year2=2014&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2014&month=12&day=31&year2=2015&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=1&year2=2015&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=2&year2=2015&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=3&year2=2015&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=4&year2=2015&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=5&year2=2015&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=6&year2=2015&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=7&year2=2015&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=8&year2=2015&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=9&year2=2015&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=10&year2=2015&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=11&year2=2015&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=12&year2=2015&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=13&year2=2015&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=14&year2=2015&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=15&year2=2015&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=16&year2=2015&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=17&year2=2015&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=18&year2=2015&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=19&year2=2015&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=20&year2=2015&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=21&year2=2015&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=22&year2=2015&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=23&year2=2015&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=24&year2=2015&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=25&year2=2015&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=26&year2=2015&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=27&year2=2015&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=28&year2=2015&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=29&year2=2015&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=30&year2=2015&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=1&day=31&year2=2015&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=1&year2=2015&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=2&year2=2015&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=3&year2=2015&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=4&year2=2015&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=5&year2=2015&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=6&year2=2015&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=7&year2=2015&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=8&year2=2015&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=9&year2=2015&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=10&year2=2015&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=11&year2=2015&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=12&year2=2015&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=13&year2=2015&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=14&year2=2015&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=15&year2=2015&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=16&year2=2015&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=17&year2=2015&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=18&year2=2015&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=19&year2=2015&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=20&year2=2015&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=21&year2=2015&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=22&year2=2015&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=23&year2=2015&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=24&year2=2015&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=25&year2=2015&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=26&year2=2015&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=27&year2=2015&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=2&day=28&year2=2015&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=1&year2=2015&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=2&year2=2015&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=3&year2=2015&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=4&year2=2015&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=5&year2=2015&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=6&year2=2015&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=7&year2=2015&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=8&year2=2015&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=9&year2=2015&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=10&year2=2015&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=11&year2=2015&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=12&year2=2015&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=13&year2=2015&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=14&year2=2015&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=15&year2=2015&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=16&year2=2015&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=17&year2=2015&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=18&year2=2015&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=19&year2=2015&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=20&year2=2015&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=21&year2=2015&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=22&year2=2015&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=23&year2=2015&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=24&year2=2015&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=25&year2=2015&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=26&year2=2015&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=27&year2=2015&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=28&year2=2015&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=29&year2=2015&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=30&year2=2015&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=3&day=31&year2=2015&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=1&year2=2015&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=2&year2=2015&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=3&year2=2015&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=4&year2=2015&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=5&year2=2015&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=6&year2=2015&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=7&year2=2015&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=8&year2=2015&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=9&year2=2015&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=10&year2=2015&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=11&year2=2015&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=12&year2=2015&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=13&year2=2015&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=14&year2=2015&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=15&year2=2015&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=16&year2=2015&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=17&year2=2015&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=18&year2=2015&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=19&year2=2015&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=20&year2=2015&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=21&year2=2015&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=22&year2=2015&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=23&year2=2015&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=24&year2=2015&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=25&year2=2015&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=26&year2=2015&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=27&year2=2015&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=28&year2=2015&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=29&year2=2015&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=4&day=30&year2=2015&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=1&year2=2015&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=2&year2=2015&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=3&year2=2015&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=4&year2=2015&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=5&year2=2015&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=6&year2=2015&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=7&year2=2015&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=8&year2=2015&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=9&year2=2015&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=10&year2=2015&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=11&year2=2015&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=12&year2=2015&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=13&year2=2015&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=14&year2=2015&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=15&year2=2015&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=16&year2=2015&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=17&year2=2015&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=18&year2=2015&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=19&year2=2015&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=20&year2=2015&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=21&year2=2015&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=22&year2=2015&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=23&year2=2015&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=24&year2=2015&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=25&year2=2015&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=26&year2=2015&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=27&year2=2015&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=28&year2=2015&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=29&year2=2015&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=30&year2=2015&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=5&day=31&year2=2015&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=1&year2=2015&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=2&year2=2015&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=3&year2=2015&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=4&year2=2015&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=5&year2=2015&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=6&year2=2015&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=7&year2=2015&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=8&year2=2015&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=9&year2=2015&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=10&year2=2015&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=11&year2=2015&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=12&year2=2015&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=13&year2=2015&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=14&year2=2015&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=15&year2=2015&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=16&year2=2015&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=17&year2=2015&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=18&year2=2015&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=19&year2=2015&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=20&year2=2015&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=21&year2=2015&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=22&year2=2015&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=23&year2=2015&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=24&year2=2015&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=25&year2=2015&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=26&year2=2015&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=27&year2=2015&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=28&year2=2015&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=29&year2=2015&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=6&day=30&year2=2015&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=1&year2=2015&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=2&year2=2015&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=3&year2=2015&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=4&year2=2015&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=5&year2=2015&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=6&year2=2015&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=7&year2=2015&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=8&year2=2015&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=9&year2=2015&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=10&year2=2015&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=11&year2=2015&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=12&year2=2015&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=13&year2=2015&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=14&year2=2015&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=15&year2=2015&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=16&year2=2015&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=17&year2=2015&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=18&year2=2015&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=19&year2=2015&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=20&year2=2015&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=21&year2=2015&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=22&year2=2015&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=23&year2=2015&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=24&year2=2015&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=25&year2=2015&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=26&year2=2015&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=27&year2=2015&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=28&year2=2015&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=29&year2=2015&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=30&year2=2015&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=7&day=31&year2=2015&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=1&year2=2015&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=2&year2=2015&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=3&year2=2015&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=4&year2=2015&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=5&year2=2015&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=6&year2=2015&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=7&year2=2015&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=8&year2=2015&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=9&year2=2015&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=10&year2=2015&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=11&year2=2015&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=12&year2=2015&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=13&year2=2015&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=14&year2=2015&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=15&year2=2015&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=16&year2=2015&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=17&year2=2015&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=18&year2=2015&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=19&year2=2015&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=20&year2=2015&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=21&year2=2015&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=22&year2=2015&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=23&year2=2015&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=24&year2=2015&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=25&year2=2015&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=26&year2=2015&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=27&year2=2015&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=28&year2=2015&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=29&year2=2015&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=30&year2=2015&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=8&day=31&year2=2015&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=1&year2=2015&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=2&year2=2015&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=3&year2=2015&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=4&year2=2015&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=5&year2=2015&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=6&year2=2015&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=7&year2=2015&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=8&year2=2015&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=9&year2=2015&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=10&year2=2015&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=11&year2=2015&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=12&year2=2015&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=13&year2=2015&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=14&year2=2015&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=15&year2=2015&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=16&year2=2015&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=17&year2=2015&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=18&year2=2015&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=19&year2=2015&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=20&year2=2015&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=21&year2=2015&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=22&year2=2015&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=23&year2=2015&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=24&year2=2015&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=25&year2=2015&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=26&year2=2015&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=27&year2=2015&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=28&year2=2015&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=29&year2=2015&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=9&day=30&year2=2015&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=1&year2=2015&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=2&year2=2015&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=3&year2=2015&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=4&year2=2015&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=5&year2=2015&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=6&year2=2015&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=7&year2=2015&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=8&year2=2015&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=9&year2=2015&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=10&year2=2015&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=11&year2=2015&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=12&year2=2015&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=13&year2=2015&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=14&year2=2015&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=15&year2=2015&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=16&year2=2015&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=17&year2=2015&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=18&year2=2015&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=19&year2=2015&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=20&year2=2015&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=21&year2=2015&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=22&year2=2015&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=23&year2=2015&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=24&year2=2015&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=25&year2=2015&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=26&year2=2015&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=27&year2=2015&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=28&year2=2015&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=29&year2=2015&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=30&year2=2015&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=10&day=31&year2=2015&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=1&year2=2015&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=2&year2=2015&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=3&year2=2015&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=4&year2=2015&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=5&year2=2015&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=6&year2=2015&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=7&year2=2015&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=8&year2=2015&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=9&year2=2015&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=10&year2=2015&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=11&year2=2015&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=12&year2=2015&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=13&year2=2015&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=14&year2=2015&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=15&year2=2015&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=16&year2=2015&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=17&year2=2015&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=18&year2=2015&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=19&year2=2015&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=20&year2=2015&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=21&year2=2015&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=22&year2=2015&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=23&year2=2015&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=24&year2=2015&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=25&year2=2015&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=26&year2=2015&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=27&year2=2015&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=28&year2=2015&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=29&year2=2015&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=11&day=30&year2=2015&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=1&year2=2015&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=2&year2=2015&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=3&year2=2015&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=4&year2=2015&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=5&year2=2015&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=6&year2=2015&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=7&year2=2015&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=8&year2=2015&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=9&year2=2015&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=10&year2=2015&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=11&year2=2015&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=12&year2=2015&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=13&year2=2015&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=14&year2=2015&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=15&year2=2015&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=16&year2=2015&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=17&year2=2015&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=18&year2=2015&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=19&year2=2015&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=20&year2=2015&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=21&year2=2015&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=22&year2=2015&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=23&year2=2015&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=24&year2=2015&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=25&year2=2015&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=26&year2=2015&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=27&year2=2015&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=28&year2=2015&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=29&year2=2015&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=30&year2=2015&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2015&month=12&day=31&year2=2016&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=1&year2=2016&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=2&year2=2016&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=3&year2=2016&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=4&year2=2016&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=5&year2=2016&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=6&year2=2016&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=7&year2=2016&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=8&year2=2016&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=9&year2=2016&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=10&year2=2016&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=11&year2=2016&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=12&year2=2016&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=13&year2=2016&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=14&year2=2016&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=15&year2=2016&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=16&year2=2016&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=17&year2=2016&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=18&year2=2016&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=19&year2=2016&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=20&year2=2016&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=21&year2=2016&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=22&year2=2016&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=23&year2=2016&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=24&year2=2016&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=25&year2=2016&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=26&year2=2016&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=27&year2=2016&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=28&year2=2016&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=29&year2=2016&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=30&year2=2016&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=1&day=31&year2=2016&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=1&year2=2016&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=2&year2=2016&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=3&year2=2016&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=4&year2=2016&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=5&year2=2016&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=6&year2=2016&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=7&year2=2016&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=8&year2=2016&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=9&year2=2016&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=10&year2=2016&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=11&year2=2016&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=12&year2=2016&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=13&year2=2016&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=14&year2=2016&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=15&year2=2016&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=16&year2=2016&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=17&year2=2016&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=18&year2=2016&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=19&year2=2016&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=20&year2=2016&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=21&year2=2016&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=22&year2=2016&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=23&year2=2016&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=24&year2=2016&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=25&year2=2016&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=26&year2=2016&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=27&year2=2016&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=28&year2=2016&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=2&day=29&year2=2016&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=1&year2=2016&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=2&year2=2016&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=3&year2=2016&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=4&year2=2016&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=5&year2=2016&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=6&year2=2016&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=7&year2=2016&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=8&year2=2016&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=9&year2=2016&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=10&year2=2016&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=11&year2=2016&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=12&year2=2016&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=13&year2=2016&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=14&year2=2016&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=15&year2=2016&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=16&year2=2016&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=17&year2=2016&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=18&year2=2016&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=19&year2=2016&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=20&year2=2016&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=21&year2=2016&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=22&year2=2016&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=23&year2=2016&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=24&year2=2016&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=25&year2=2016&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=26&year2=2016&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=27&year2=2016&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=28&year2=2016&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=29&year2=2016&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=30&year2=2016&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=3&day=31&year2=2016&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=1&year2=2016&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=2&year2=2016&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=3&year2=2016&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=4&year2=2016&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=5&year2=2016&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=6&year2=2016&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=7&year2=2016&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=8&year2=2016&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=9&year2=2016&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=10&year2=2016&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=11&year2=2016&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=12&year2=2016&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=13&year2=2016&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=14&year2=2016&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=15&year2=2016&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=16&year2=2016&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=17&year2=2016&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=18&year2=2016&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=19&year2=2016&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=20&year2=2016&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=21&year2=2016&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=22&year2=2016&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=23&year2=2016&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=24&year2=2016&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=25&year2=2016&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=26&year2=2016&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=27&year2=2016&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=28&year2=2016&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=29&year2=2016&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=4&day=30&year2=2016&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=1&year2=2016&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=2&year2=2016&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=3&year2=2016&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=4&year2=2016&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=5&year2=2016&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=6&year2=2016&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=7&year2=2016&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=8&year2=2016&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=9&year2=2016&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=10&year2=2016&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=11&year2=2016&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=12&year2=2016&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=13&year2=2016&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=14&year2=2016&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=15&year2=2016&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=16&year2=2016&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=17&year2=2016&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=18&year2=2016&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=19&year2=2016&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=20&year2=2016&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=21&year2=2016&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=22&year2=2016&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=23&year2=2016&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=24&year2=2016&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=25&year2=2016&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=26&year2=2016&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=27&year2=2016&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=28&year2=2016&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=29&year2=2016&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=30&year2=2016&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=5&day=31&year2=2016&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=1&year2=2016&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=2&year2=2016&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=3&year2=2016&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=4&year2=2016&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=5&year2=2016&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=6&year2=2016&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=7&year2=2016&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=8&year2=2016&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=9&year2=2016&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=10&year2=2016&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=11&year2=2016&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=12&year2=2016&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=13&year2=2016&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=14&year2=2016&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=15&year2=2016&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=16&year2=2016&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=17&year2=2016&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=18&year2=2016&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=19&year2=2016&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=20&year2=2016&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=21&year2=2016&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=22&year2=2016&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=23&year2=2016&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=24&year2=2016&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=25&year2=2016&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=26&year2=2016&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=27&year2=2016&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=28&year2=2016&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=29&year2=2016&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=6&day=30&year2=2016&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=1&year2=2016&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=2&year2=2016&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=3&year2=2016&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=4&year2=2016&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=5&year2=2016&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=6&year2=2016&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=7&year2=2016&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=8&year2=2016&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=9&year2=2016&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=10&year2=2016&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=11&year2=2016&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=12&year2=2016&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=13&year2=2016&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=14&year2=2016&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=15&year2=2016&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=16&year2=2016&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=17&year2=2016&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=18&year2=2016&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=19&year2=2016&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=20&year2=2016&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=21&year2=2016&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=22&year2=2016&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=23&year2=2016&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=24&year2=2016&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=25&year2=2016&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=26&year2=2016&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=27&year2=2016&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=28&year2=2016&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=29&year2=2016&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=30&year2=2016&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=7&day=31&year2=2016&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=1&year2=2016&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=2&year2=2016&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=3&year2=2016&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=4&year2=2016&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=5&year2=2016&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=6&year2=2016&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=7&year2=2016&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=8&year2=2016&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=9&year2=2016&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=10&year2=2016&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=11&year2=2016&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=12&year2=2016&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=13&year2=2016&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=14&year2=2016&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=15&year2=2016&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=16&year2=2016&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=17&year2=2016&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=18&year2=2016&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=19&year2=2016&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=20&year2=2016&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=21&year2=2016&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=22&year2=2016&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=23&year2=2016&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=24&year2=2016&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=25&year2=2016&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=26&year2=2016&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=27&year2=2016&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=28&year2=2016&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=29&year2=2016&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=30&year2=2016&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=8&day=31&year2=2016&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=1&year2=2016&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=2&year2=2016&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=3&year2=2016&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=4&year2=2016&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=5&year2=2016&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=6&year2=2016&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=7&year2=2016&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=8&year2=2016&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=9&year2=2016&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=10&year2=2016&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=11&year2=2016&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=12&year2=2016&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=13&year2=2016&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=14&year2=2016&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=15&year2=2016&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=16&year2=2016&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=17&year2=2016&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=18&year2=2016&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=19&year2=2016&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=20&year2=2016&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=21&year2=2016&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=22&year2=2016&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=23&year2=2016&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=24&year2=2016&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=25&year2=2016&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=26&year2=2016&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=27&year2=2016&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=28&year2=2016&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=29&year2=2016&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=9&day=30&year2=2016&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=1&year2=2016&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=2&year2=2016&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=3&year2=2016&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=4&year2=2016&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=5&year2=2016&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=6&year2=2016&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=7&year2=2016&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=8&year2=2016&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=9&year2=2016&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=10&year2=2016&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=11&year2=2016&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=12&year2=2016&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=13&year2=2016&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=14&year2=2016&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=15&year2=2016&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=16&year2=2016&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=17&year2=2016&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=18&year2=2016&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=19&year2=2016&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=20&year2=2016&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=21&year2=2016&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=22&year2=2016&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=23&year2=2016&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=24&year2=2016&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=25&year2=2016&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=26&year2=2016&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=27&year2=2016&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=28&year2=2016&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=29&year2=2016&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=30&year2=2016&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=10&day=31&year2=2016&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=1&year2=2016&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=2&year2=2016&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=3&year2=2016&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=4&year2=2016&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=5&year2=2016&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=6&year2=2016&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=7&year2=2016&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=8&year2=2016&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=9&year2=2016&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=10&year2=2016&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=11&year2=2016&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=12&year2=2016&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=13&year2=2016&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=14&year2=2016&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=15&year2=2016&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=16&year2=2016&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=17&year2=2016&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=18&year2=2016&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=19&year2=2016&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=20&year2=2016&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=21&year2=2016&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=22&year2=2016&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=23&year2=2016&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=24&year2=2016&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=25&year2=2016&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=26&year2=2016&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=27&year2=2016&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=28&year2=2016&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=29&year2=2016&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=11&day=30&year2=2016&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=1&year2=2016&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=2&year2=2016&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=3&year2=2016&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=4&year2=2016&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=5&year2=2016&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=6&year2=2016&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=7&year2=2016&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=8&year2=2016&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=9&year2=2016&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=10&year2=2016&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=11&year2=2016&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=12&year2=2016&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=13&year2=2016&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=14&year2=2016&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=15&year2=2016&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=16&year2=2016&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=17&year2=2016&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=18&year2=2016&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=19&year2=2016&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=20&year2=2016&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=21&year2=2016&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=22&year2=2016&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=23&year2=2016&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=24&year2=2016&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=25&year2=2016&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=26&year2=2016&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=27&year2=2016&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=28&year2=2016&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=29&year2=2016&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=30&year2=2016&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2016&month=12&day=31&year2=2017&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=1&year2=2017&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=2&year2=2017&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=3&year2=2017&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=4&year2=2017&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=5&year2=2017&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=6&year2=2017&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=7&year2=2017&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=8&year2=2017&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=9&year2=2017&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=10&year2=2017&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=11&year2=2017&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=12&year2=2017&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=13&year2=2017&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=14&year2=2017&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=15&year2=2017&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=16&year2=2017&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=17&year2=2017&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=18&year2=2017&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=19&year2=2017&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=20&year2=2017&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=21&year2=2017&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=22&year2=2017&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=23&year2=2017&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=24&year2=2017&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=25&year2=2017&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=26&year2=2017&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=27&year2=2017&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=28&year2=2017&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=29&year2=2017&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=30&year2=2017&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=1&day=31&year2=2017&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=1&year2=2017&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=2&year2=2017&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=3&year2=2017&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=4&year2=2017&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=5&year2=2017&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=6&year2=2017&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=7&year2=2017&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=8&year2=2017&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=9&year2=2017&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=10&year2=2017&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=11&year2=2017&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=12&year2=2017&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=13&year2=2017&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=14&year2=2017&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=15&year2=2017&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=16&year2=2017&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=17&year2=2017&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=18&year2=2017&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=19&year2=2017&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=20&year2=2017&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=21&year2=2017&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=22&year2=2017&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=23&year2=2017&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=24&year2=2017&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=25&year2=2017&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=26&year2=2017&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=27&year2=2017&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=2&day=28&year2=2017&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=1&year2=2017&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=2&year2=2017&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=3&year2=2017&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=4&year2=2017&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=5&year2=2017&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=6&year2=2017&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=7&year2=2017&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=8&year2=2017&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=9&year2=2017&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=10&year2=2017&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=11&year2=2017&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=12&year2=2017&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=13&year2=2017&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=14&year2=2017&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=15&year2=2017&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=16&year2=2017&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=17&year2=2017&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=18&year2=2017&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=19&year2=2017&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=20&year2=2017&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=21&year2=2017&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=22&year2=2017&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=23&year2=2017&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=24&year2=2017&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=25&year2=2017&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=26&year2=2017&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=27&year2=2017&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=28&year2=2017&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=29&year2=2017&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=30&year2=2017&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=3&day=31&year2=2017&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=1&year2=2017&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=2&year2=2017&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=3&year2=2017&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=4&year2=2017&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=5&year2=2017&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=6&year2=2017&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=7&year2=2017&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=8&year2=2017&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=9&year2=2017&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=10&year2=2017&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=11&year2=2017&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=12&year2=2017&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=13&year2=2017&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=14&year2=2017&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=15&year2=2017&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=16&year2=2017&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=17&year2=2017&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=18&year2=2017&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=19&year2=2017&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=20&year2=2017&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=21&year2=2017&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=22&year2=2017&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=23&year2=2017&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=24&year2=2017&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=25&year2=2017&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=26&year2=2017&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=27&year2=2017&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=28&year2=2017&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=29&year2=2017&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=4&day=30&year2=2017&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=1&year2=2017&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=2&year2=2017&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=3&year2=2017&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=4&year2=2017&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=5&year2=2017&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=6&year2=2017&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=7&year2=2017&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=8&year2=2017&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=9&year2=2017&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=10&year2=2017&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=11&year2=2017&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=12&year2=2017&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=13&year2=2017&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=14&year2=2017&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=15&year2=2017&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=16&year2=2017&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=17&year2=2017&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=18&year2=2017&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=19&year2=2017&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=20&year2=2017&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=21&year2=2017&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=22&year2=2017&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=23&year2=2017&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=24&year2=2017&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=25&year2=2017&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=26&year2=2017&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=27&year2=2017&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=28&year2=2017&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=29&year2=2017&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=30&year2=2017&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=5&day=31&year2=2017&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=1&year2=2017&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=2&year2=2017&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=3&year2=2017&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=4&year2=2017&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=5&year2=2017&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=6&year2=2017&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=7&year2=2017&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=8&year2=2017&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=9&year2=2017&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=10&year2=2017&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=11&year2=2017&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=12&year2=2017&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=13&year2=2017&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=14&year2=2017&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=15&year2=2017&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=16&year2=2017&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=17&year2=2017&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=18&year2=2017&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=19&year2=2017&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=20&year2=2017&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=21&year2=2017&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=22&year2=2017&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=23&year2=2017&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=24&year2=2017&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=25&year2=2017&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=26&year2=2017&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=27&year2=2017&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=28&year2=2017&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=29&year2=2017&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=6&day=30&year2=2017&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=1&year2=2017&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=2&year2=2017&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=3&year2=2017&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=4&year2=2017&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=5&year2=2017&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=6&year2=2017&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=7&year2=2017&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=8&year2=2017&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=9&year2=2017&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=10&year2=2017&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=11&year2=2017&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=12&year2=2017&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=13&year2=2017&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=14&year2=2017&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=15&year2=2017&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=16&year2=2017&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=17&year2=2017&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=18&year2=2017&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=19&year2=2017&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=20&year2=2017&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=21&year2=2017&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=22&year2=2017&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=23&year2=2017&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=24&year2=2017&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=25&year2=2017&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=26&year2=2017&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=27&year2=2017&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=28&year2=2017&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=29&year2=2017&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=30&year2=2017&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=7&day=31&year2=2017&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=1&year2=2017&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=2&year2=2017&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=3&year2=2017&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=4&year2=2017&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=5&year2=2017&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=6&year2=2017&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=7&year2=2017&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=8&year2=2017&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=9&year2=2017&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=10&year2=2017&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=11&year2=2017&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=12&year2=2017&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=13&year2=2017&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=14&year2=2017&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=15&year2=2017&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=16&year2=2017&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=17&year2=2017&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=18&year2=2017&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=19&year2=2017&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=20&year2=2017&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=21&year2=2017&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=22&year2=2017&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=23&year2=2017&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=24&year2=2017&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=25&year2=2017&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=26&year2=2017&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=27&year2=2017&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=28&year2=2017&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=29&year2=2017&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=30&year2=2017&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=8&day=31&year2=2017&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=1&year2=2017&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=2&year2=2017&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=3&year2=2017&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=4&year2=2017&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=5&year2=2017&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=6&year2=2017&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=7&year2=2017&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=8&year2=2017&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=9&year2=2017&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=10&year2=2017&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=11&year2=2017&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=12&year2=2017&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=13&year2=2017&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=14&year2=2017&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=15&year2=2017&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=16&year2=2017&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=17&year2=2017&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=18&year2=2017&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=19&year2=2017&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=20&year2=2017&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=21&year2=2017&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=22&year2=2017&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=23&year2=2017&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=24&year2=2017&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=25&year2=2017&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=26&year2=2017&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=27&year2=2017&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=28&year2=2017&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=29&year2=2017&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=9&day=30&year2=2017&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=1&year2=2017&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=2&year2=2017&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=3&year2=2017&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=4&year2=2017&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=5&year2=2017&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=6&year2=2017&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=7&year2=2017&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=8&year2=2017&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=9&year2=2017&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=10&year2=2017&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=11&year2=2017&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=12&year2=2017&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=13&year2=2017&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=14&year2=2017&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=15&year2=2017&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=16&year2=2017&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=17&year2=2017&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=18&year2=2017&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=19&year2=2017&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=20&year2=2017&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=21&year2=2017&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=22&year2=2017&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=23&year2=2017&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=24&year2=2017&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=25&year2=2017&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=26&year2=2017&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=27&year2=2017&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=28&year2=2017&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=29&year2=2017&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=30&year2=2017&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=10&day=31&year2=2017&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=1&year2=2017&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=2&year2=2017&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=3&year2=2017&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=4&year2=2017&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=5&year2=2017&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=6&year2=2017&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=7&year2=2017&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=8&year2=2017&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=9&year2=2017&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=10&year2=2017&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=11&year2=2017&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=12&year2=2017&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=13&year2=2017&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=14&year2=2017&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=15&year2=2017&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=16&year2=2017&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=17&year2=2017&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=18&year2=2017&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=19&year2=2017&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=20&year2=2017&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=21&year2=2017&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=22&year2=2017&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=23&year2=2017&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=24&year2=2017&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=25&year2=2017&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=26&year2=2017&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=27&year2=2017&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=28&year2=2017&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=29&year2=2017&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=11&day=30&year2=2017&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=1&year2=2017&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=2&year2=2017&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=3&year2=2017&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=4&year2=2017&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=5&year2=2017&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=6&year2=2017&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=7&year2=2017&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=8&year2=2017&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=9&year2=2017&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=10&year2=2017&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=11&year2=2017&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=12&year2=2017&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=13&year2=2017&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=14&year2=2017&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=15&year2=2017&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=16&year2=2017&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=17&year2=2017&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=18&year2=2017&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=19&year2=2017&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=20&year2=2017&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=21&year2=2017&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=22&year2=2017&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=23&year2=2017&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=24&year2=2017&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=25&year2=2017&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=26&year2=2017&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=27&year2=2017&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=28&year2=2017&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=29&year2=2017&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=30&year2=2017&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2017&month=12&day=31&year2=2018&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=1&year2=2018&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=2&year2=2018&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=3&year2=2018&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=4&year2=2018&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=5&year2=2018&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=6&year2=2018&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=7&year2=2018&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=8&year2=2018&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=9&year2=2018&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=10&year2=2018&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=11&year2=2018&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=12&year2=2018&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=13&year2=2018&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=14&year2=2018&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=15&year2=2018&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=16&year2=2018&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=17&year2=2018&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=18&year2=2018&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=19&year2=2018&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=20&year2=2018&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=21&year2=2018&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=22&year2=2018&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=23&year2=2018&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=24&year2=2018&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=25&year2=2018&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=26&year2=2018&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=27&year2=2018&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=28&year2=2018&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=29&year2=2018&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=30&year2=2018&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=1&day=31&year2=2018&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=1&year2=2018&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=2&year2=2018&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=3&year2=2018&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=4&year2=2018&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=5&year2=2018&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=6&year2=2018&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=7&year2=2018&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=8&year2=2018&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=9&year2=2018&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=10&year2=2018&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=11&year2=2018&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=12&year2=2018&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=13&year2=2018&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=14&year2=2018&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=15&year2=2018&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=16&year2=2018&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=17&year2=2018&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=18&year2=2018&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=19&year2=2018&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=20&year2=2018&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=21&year2=2018&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=22&year2=2018&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=23&year2=2018&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=24&year2=2018&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=25&year2=2018&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=26&year2=2018&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=27&year2=2018&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=2&day=28&year2=2018&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=1&year2=2018&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=2&year2=2018&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=3&year2=2018&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=4&year2=2018&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=5&year2=2018&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=6&year2=2018&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=7&year2=2018&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=8&year2=2018&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=9&year2=2018&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=10&year2=2018&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=11&year2=2018&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=12&year2=2018&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=13&year2=2018&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=14&year2=2018&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=15&year2=2018&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=16&year2=2018&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=17&year2=2018&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=18&year2=2018&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=19&year2=2018&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=20&year2=2018&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=21&year2=2018&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=22&year2=2018&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=23&year2=2018&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=24&year2=2018&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=25&year2=2018&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=26&year2=2018&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=27&year2=2018&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=28&year2=2018&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=29&year2=2018&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=30&year2=2018&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=3&day=31&year2=2018&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=1&year2=2018&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=2&year2=2018&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=3&year2=2018&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=4&year2=2018&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=5&year2=2018&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=6&year2=2018&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=7&year2=2018&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=8&year2=2018&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=9&year2=2018&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=10&year2=2018&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=11&year2=2018&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=12&year2=2018&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=13&year2=2018&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=14&year2=2018&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=15&year2=2018&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=16&year2=2018&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=17&year2=2018&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=18&year2=2018&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=19&year2=2018&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=20&year2=2018&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=21&year2=2018&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=22&year2=2018&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=23&year2=2018&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=24&year2=2018&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=25&year2=2018&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=26&year2=2018&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=27&year2=2018&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=28&year2=2018&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=29&year2=2018&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=4&day=30&year2=2018&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=1&year2=2018&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=2&year2=2018&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=3&year2=2018&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=4&year2=2018&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=5&year2=2018&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=6&year2=2018&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=7&year2=2018&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=8&year2=2018&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=9&year2=2018&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=10&year2=2018&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=11&year2=2018&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=12&year2=2018&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=13&year2=2018&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=14&year2=2018&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=15&year2=2018&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=16&year2=2018&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=17&year2=2018&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=18&year2=2018&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=19&year2=2018&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=20&year2=2018&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=21&year2=2018&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=22&year2=2018&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=23&year2=2018&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=24&year2=2018&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=25&year2=2018&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=26&year2=2018&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=27&year2=2018&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=28&year2=2018&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=29&year2=2018&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=30&year2=2018&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=5&day=31&year2=2018&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=1&year2=2018&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=2&year2=2018&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=3&year2=2018&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=4&year2=2018&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=5&year2=2018&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=6&year2=2018&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=7&year2=2018&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=8&year2=2018&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=9&year2=2018&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=10&year2=2018&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=11&year2=2018&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=12&year2=2018&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=13&year2=2018&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=14&year2=2018&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=15&year2=2018&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=16&year2=2018&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=17&year2=2018&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=18&year2=2018&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=19&year2=2018&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=20&year2=2018&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=21&year2=2018&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=22&year2=2018&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=23&year2=2018&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=24&year2=2018&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=25&year2=2018&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=26&year2=2018&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=27&year2=2018&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=28&year2=2018&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=29&year2=2018&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=6&day=30&year2=2018&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=1&year2=2018&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=2&year2=2018&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=3&year2=2018&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=4&year2=2018&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=5&year2=2018&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=6&year2=2018&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=7&year2=2018&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=8&year2=2018&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=9&year2=2018&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=10&year2=2018&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=11&year2=2018&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=12&year2=2018&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=13&year2=2018&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=14&year2=2018&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=15&year2=2018&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=16&year2=2018&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=17&year2=2018&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=18&year2=2018&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=19&year2=2018&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=20&year2=2018&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=21&year2=2018&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=22&year2=2018&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=23&year2=2018&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=24&year2=2018&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=25&year2=2018&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=26&year2=2018&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=27&year2=2018&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=28&year2=2018&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=29&year2=2018&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=30&year2=2018&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=7&day=31&year2=2018&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=1&year2=2018&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=2&year2=2018&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=3&year2=2018&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=4&year2=2018&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=5&year2=2018&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=6&year2=2018&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=7&year2=2018&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=8&year2=2018&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=9&year2=2018&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=10&year2=2018&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=11&year2=2018&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=12&year2=2018&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=13&year2=2018&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=14&year2=2018&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=15&year2=2018&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=16&year2=2018&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=17&year2=2018&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=18&year2=2018&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=19&year2=2018&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=20&year2=2018&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=21&year2=2018&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=22&year2=2018&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=23&year2=2018&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=24&year2=2018&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=25&year2=2018&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=26&year2=2018&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=27&year2=2018&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=28&year2=2018&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=29&year2=2018&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=30&year2=2018&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=8&day=31&year2=2018&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=1&year2=2018&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=2&year2=2018&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=3&year2=2018&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=4&year2=2018&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=5&year2=2018&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=6&year2=2018&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=7&year2=2018&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=8&year2=2018&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=9&year2=2018&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=10&year2=2018&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=11&year2=2018&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=12&year2=2018&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=13&year2=2018&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=14&year2=2018&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=15&year2=2018&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=16&year2=2018&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=17&year2=2018&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=18&year2=2018&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=19&year2=2018&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=20&year2=2018&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=21&year2=2018&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=22&year2=2018&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=23&year2=2018&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=24&year2=2018&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=25&year2=2018&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=26&year2=2018&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=27&year2=2018&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=28&year2=2018&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=29&year2=2018&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=9&day=30&year2=2018&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=1&year2=2018&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=2&year2=2018&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=3&year2=2018&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=4&year2=2018&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=5&year2=2018&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=6&year2=2018&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=7&year2=2018&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=8&year2=2018&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=9&year2=2018&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=10&year2=2018&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=11&year2=2018&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=12&year2=2018&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=13&year2=2018&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=14&year2=2018&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=15&year2=2018&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=16&year2=2018&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=17&year2=2018&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=18&year2=2018&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=19&year2=2018&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=20&year2=2018&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=21&year2=2018&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=22&year2=2018&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=23&year2=2018&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=24&year2=2018&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=25&year2=2018&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=26&year2=2018&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=27&year2=2018&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=28&year2=2018&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=29&year2=2018&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=30&year2=2018&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=10&day=31&year2=2018&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=1&year2=2018&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=2&year2=2018&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=3&year2=2018&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=4&year2=2018&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=5&year2=2018&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=6&year2=2018&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=7&year2=2018&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=8&year2=2018&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=9&year2=2018&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=10&year2=2018&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=11&year2=2018&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=12&year2=2018&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=13&year2=2018&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=14&year2=2018&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=15&year2=2018&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=16&year2=2018&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=17&year2=2018&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=18&year2=2018&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=19&year2=2018&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=20&year2=2018&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=21&year2=2018&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=22&year2=2018&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=23&year2=2018&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=24&year2=2018&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=25&year2=2018&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=26&year2=2018&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=27&year2=2018&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=28&year2=2018&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=29&year2=2018&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=11&day=30&year2=2018&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=1&year2=2018&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=2&year2=2018&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=3&year2=2018&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=4&year2=2018&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=5&year2=2018&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=6&year2=2018&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=7&year2=2018&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=8&year2=2018&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=9&year2=2018&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=10&year2=2018&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=11&year2=2018&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=12&year2=2018&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=13&year2=2018&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=14&year2=2018&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=15&year2=2018&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=16&year2=2018&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=17&year2=2018&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=18&year2=2018&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=19&year2=2018&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=20&year2=2018&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=21&year2=2018&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=22&year2=2018&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=23&year2=2018&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=24&year2=2018&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=25&year2=2018&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=26&year2=2018&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=27&year2=2018&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=28&year2=2018&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=29&year2=2018&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=30&year2=2018&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2018&month=12&day=31&year2=2019&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=1&year2=2019&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=2&year2=2019&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=3&year2=2019&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=4&year2=2019&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=5&year2=2019&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=6&year2=2019&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=7&year2=2019&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=8&year2=2019&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=9&year2=2019&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=10&year2=2019&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=11&year2=2019&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=12&year2=2019&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=13&year2=2019&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=14&year2=2019&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=15&year2=2019&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=16&year2=2019&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=17&year2=2019&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=18&year2=2019&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=19&year2=2019&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=20&year2=2019&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=21&year2=2019&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=22&year2=2019&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=23&year2=2019&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=24&year2=2019&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=25&year2=2019&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=26&year2=2019&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=27&year2=2019&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=28&year2=2019&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=29&year2=2019&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=30&year2=2019&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=1&day=31&year2=2019&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=1&year2=2019&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=2&year2=2019&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=3&year2=2019&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=4&year2=2019&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=5&year2=2019&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=6&year2=2019&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=7&year2=2019&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=8&year2=2019&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=9&year2=2019&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=10&year2=2019&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=11&year2=2019&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=12&year2=2019&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=13&year2=2019&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=14&year2=2019&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=15&year2=2019&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=16&year2=2019&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=17&year2=2019&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=18&year2=2019&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=19&year2=2019&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=20&year2=2019&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=21&year2=2019&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=22&year2=2019&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=23&year2=2019&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=24&year2=2019&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=25&year2=2019&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=26&year2=2019&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=27&year2=2019&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=2&day=28&year2=2019&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=1&year2=2019&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=2&year2=2019&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=3&year2=2019&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=4&year2=2019&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=5&year2=2019&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=6&year2=2019&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=7&year2=2019&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=8&year2=2019&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=9&year2=2019&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=10&year2=2019&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=11&year2=2019&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=12&year2=2019&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=13&year2=2019&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=14&year2=2019&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=15&year2=2019&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=16&year2=2019&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=17&year2=2019&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=18&year2=2019&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=19&year2=2019&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=20&year2=2019&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=21&year2=2019&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=22&year2=2019&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=23&year2=2019&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=24&year2=2019&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=25&year2=2019&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=26&year2=2019&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=27&year2=2019&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=28&year2=2019&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=29&year2=2019&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=30&year2=2019&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=3&day=31&year2=2019&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=1&year2=2019&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=2&year2=2019&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=3&year2=2019&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=4&year2=2019&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=5&year2=2019&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=6&year2=2019&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=7&year2=2019&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=8&year2=2019&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=9&year2=2019&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=10&year2=2019&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=11&year2=2019&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=12&year2=2019&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=13&year2=2019&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=14&year2=2019&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=15&year2=2019&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=16&year2=2019&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=17&year2=2019&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=18&year2=2019&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=19&year2=2019&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=20&year2=2019&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=21&year2=2019&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=22&year2=2019&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=23&year2=2019&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=24&year2=2019&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=25&year2=2019&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=26&year2=2019&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=27&year2=2019&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=28&year2=2019&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=29&year2=2019&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=4&day=30&year2=2019&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=1&year2=2019&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=2&year2=2019&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=3&year2=2019&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=4&year2=2019&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=5&year2=2019&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=6&year2=2019&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=7&year2=2019&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=8&year2=2019&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=9&year2=2019&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=10&year2=2019&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=11&year2=2019&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=12&year2=2019&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=13&year2=2019&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=14&year2=2019&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=15&year2=2019&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=16&year2=2019&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=17&year2=2019&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=18&year2=2019&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=19&year2=2019&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=20&year2=2019&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=21&year2=2019&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=22&year2=2019&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=23&year2=2019&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=24&year2=2019&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=25&year2=2019&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=26&year2=2019&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=27&year2=2019&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=28&year2=2019&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=29&year2=2019&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=30&year2=2019&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=5&day=31&year2=2019&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=1&year2=2019&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=2&year2=2019&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=3&year2=2019&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=4&year2=2019&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=5&year2=2019&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=6&year2=2019&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=7&year2=2019&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=8&year2=2019&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=9&year2=2019&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=10&year2=2019&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=11&year2=2019&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=12&year2=2019&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=13&year2=2019&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=14&year2=2019&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=15&year2=2019&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=16&year2=2019&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=17&year2=2019&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=18&year2=2019&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=19&year2=2019&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=20&year2=2019&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=21&year2=2019&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=22&year2=2019&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=23&year2=2019&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=24&year2=2019&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=25&year2=2019&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=26&year2=2019&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=27&year2=2019&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=28&year2=2019&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=29&year2=2019&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=6&day=30&year2=2019&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=1&year2=2019&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=2&year2=2019&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=3&year2=2019&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=4&year2=2019&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=5&year2=2019&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=6&year2=2019&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=7&year2=2019&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=8&year2=2019&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=9&year2=2019&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=10&year2=2019&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=11&year2=2019&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=12&year2=2019&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=13&year2=2019&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=14&year2=2019&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=15&year2=2019&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=16&year2=2019&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=17&year2=2019&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=18&year2=2019&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=19&year2=2019&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=20&year2=2019&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=21&year2=2019&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=22&year2=2019&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=23&year2=2019&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=24&year2=2019&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=25&year2=2019&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=26&year2=2019&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=27&year2=2019&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=28&year2=2019&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=29&year2=2019&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=30&year2=2019&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=7&day=31&year2=2019&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=1&year2=2019&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=2&year2=2019&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=3&year2=2019&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=4&year2=2019&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=5&year2=2019&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=6&year2=2019&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=7&year2=2019&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=8&year2=2019&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=9&year2=2019&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=10&year2=2019&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=11&year2=2019&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=12&year2=2019&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=13&year2=2019&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=14&year2=2019&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=15&year2=2019&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=16&year2=2019&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=17&year2=2019&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=18&year2=2019&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=19&year2=2019&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=20&year2=2019&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=21&year2=2019&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=22&year2=2019&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=23&year2=2019&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=24&year2=2019&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=25&year2=2019&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=26&year2=2019&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=27&year2=2019&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=28&year2=2019&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=29&year2=2019&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=30&year2=2019&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=8&day=31&year2=2019&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=1&year2=2019&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=2&year2=2019&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=3&year2=2019&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=4&year2=2019&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=5&year2=2019&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=6&year2=2019&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=7&year2=2019&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=8&year2=2019&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=9&year2=2019&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=10&year2=2019&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=11&year2=2019&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=12&year2=2019&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=13&year2=2019&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=14&year2=2019&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=15&year2=2019&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=16&year2=2019&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=17&year2=2019&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=18&year2=2019&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=19&year2=2019&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=20&year2=2019&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=21&year2=2019&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=22&year2=2019&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=23&year2=2019&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=24&year2=2019&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=25&year2=2019&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=26&year2=2019&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=27&year2=2019&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=28&year2=2019&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=29&year2=2019&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=9&day=30&year2=2019&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=1&year2=2019&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=2&year2=2019&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=3&year2=2019&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=4&year2=2019&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=5&year2=2019&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=6&year2=2019&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=7&year2=2019&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=8&year2=2019&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=9&year2=2019&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=10&year2=2019&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=11&year2=2019&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=12&year2=2019&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=13&year2=2019&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=14&year2=2019&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=15&year2=2019&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=16&year2=2019&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=17&year2=2019&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=18&year2=2019&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=19&year2=2019&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=20&year2=2019&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=21&year2=2019&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=22&year2=2019&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=23&year2=2019&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=24&year2=2019&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=25&year2=2019&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=26&year2=2019&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=27&year2=2019&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=28&year2=2019&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=29&year2=2019&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=30&year2=2019&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=10&day=31&year2=2019&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=1&year2=2019&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=2&year2=2019&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=3&year2=2019&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=4&year2=2019&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=5&year2=2019&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=6&year2=2019&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=7&year2=2019&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=8&year2=2019&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=9&year2=2019&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=10&year2=2019&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=11&year2=2019&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=12&year2=2019&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=13&year2=2019&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=14&year2=2019&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=15&year2=2019&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=16&year2=2019&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=17&year2=2019&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=18&year2=2019&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=19&year2=2019&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=20&year2=2019&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=21&year2=2019&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=22&year2=2019&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=23&year2=2019&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=24&year2=2019&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=25&year2=2019&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=26&year2=2019&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=27&year2=2019&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=28&year2=2019&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=29&year2=2019&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=11&day=30&year2=2019&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=1&year2=2019&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=2&year2=2019&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=3&year2=2019&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=4&year2=2019&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=5&year2=2019&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=6&year2=2019&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=7&year2=2019&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=8&year2=2019&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=9&year2=2019&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=10&year2=2019&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=11&year2=2019&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=12&year2=2019&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=13&year2=2019&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=14&year2=2019&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=15&year2=2019&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=16&year2=2019&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=17&year2=2019&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=18&year2=2019&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=19&year2=2019&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=20&year2=2019&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=21&year2=2019&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=22&year2=2019&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=23&year2=2019&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=24&year2=2019&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=25&year2=2019&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=26&year2=2019&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=27&year2=2019&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=28&year2=2019&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=29&year2=2019&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=30&year2=2019&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2019&month=12&day=31&year2=2020&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=1&year2=2020&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=2&year2=2020&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=3&year2=2020&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=4&year2=2020&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=5&year2=2020&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=6&year2=2020&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=7&year2=2020&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=8&year2=2020&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=9&year2=2020&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=10&year2=2020&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=11&year2=2020&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=12&year2=2020&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=13&year2=2020&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=14&year2=2020&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=15&year2=2020&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=16&year2=2020&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=17&year2=2020&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=18&year2=2020&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=19&year2=2020&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=20&year2=2020&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=21&year2=2020&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=22&year2=2020&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=23&year2=2020&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=24&year2=2020&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=25&year2=2020&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=26&year2=2020&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=27&year2=2020&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=28&year2=2020&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=29&year2=2020&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=30&year2=2020&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=1&day=31&year2=2020&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=1&year2=2020&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=2&year2=2020&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=3&year2=2020&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=4&year2=2020&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=5&year2=2020&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=6&year2=2020&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=7&year2=2020&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=8&year2=2020&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=9&year2=2020&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=10&year2=2020&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=11&year2=2020&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=12&year2=2020&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=13&year2=2020&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=14&year2=2020&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=15&year2=2020&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=16&year2=2020&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=17&year2=2020&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=18&year2=2020&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=19&year2=2020&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=20&year2=2020&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=21&year2=2020&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=22&year2=2020&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=23&year2=2020&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=24&year2=2020&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=25&year2=2020&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=26&year2=2020&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=27&year2=2020&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=28&year2=2020&month2=2&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=2&day=29&year2=2020&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=1&year2=2020&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=2&year2=2020&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=3&year2=2020&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=4&year2=2020&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=5&year2=2020&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=6&year2=2020&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=7&year2=2020&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=8&year2=2020&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=9&year2=2020&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=10&year2=2020&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=11&year2=2020&month2=3&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=12&year2=2020&month2=3&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=13&year2=2020&month2=3&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=14&year2=2020&month2=3&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=15&year2=2020&month2=3&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=16&year2=2020&month2=3&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=17&year2=2020&month2=3&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=18&year2=2020&month2=3&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=19&year2=2020&month2=3&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=20&year2=2020&month2=3&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=21&year2=2020&month2=3&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=22&year2=2020&month2=3&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=23&year2=2020&month2=3&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=24&year2=2020&month2=3&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=25&year2=2020&month2=3&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=26&year2=2020&month2=3&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=27&year2=2020&month2=3&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=28&year2=2020&month2=3&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=29&year2=2020&month2=3&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=30&year2=2020&month2=3&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=3&day=31&year2=2020&month2=4&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=1&year2=2020&month2=4&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=2&year2=2020&month2=4&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=3&year2=2020&month2=4&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=4&year2=2020&month2=4&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=5&year2=2020&month2=4&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=6&year2=2020&month2=4&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=7&year2=2020&month2=4&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=8&year2=2020&month2=4&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=9&year2=2020&month2=4&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=10&year2=2020&month2=4&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=11&year2=2020&month2=4&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=12&year2=2020&month2=4&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=13&year2=2020&month2=4&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=14&year2=2020&month2=4&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=15&year2=2020&month2=4&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=16&year2=2020&month2=4&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=17&year2=2020&month2=4&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=18&year2=2020&month2=4&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=19&year2=2020&month2=4&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=20&year2=2020&month2=4&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=21&year2=2020&month2=4&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=22&year2=2020&month2=4&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=23&year2=2020&month2=4&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=24&year2=2020&month2=4&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=25&year2=2020&month2=4&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=26&year2=2020&month2=4&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=27&year2=2020&month2=4&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=28&year2=2020&month2=4&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=29&year2=2020&month2=4&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=4&day=30&year2=2020&month2=5&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=1&year2=2020&month2=5&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=2&year2=2020&month2=5&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=3&year2=2020&month2=5&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=4&year2=2020&month2=5&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=5&year2=2020&month2=5&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=6&year2=2020&month2=5&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=7&year2=2020&month2=5&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=8&year2=2020&month2=5&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=9&year2=2020&month2=5&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=10&year2=2020&month2=5&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=11&year2=2020&month2=5&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=12&year2=2020&month2=5&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=13&year2=2020&month2=5&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=14&year2=2020&month2=5&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=15&year2=2020&month2=5&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=16&year2=2020&month2=5&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=17&year2=2020&month2=5&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=18&year2=2020&month2=5&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=19&year2=2020&month2=5&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=20&year2=2020&month2=5&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=21&year2=2020&month2=5&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=22&year2=2020&month2=5&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=23&year2=2020&month2=5&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=24&year2=2020&month2=5&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=25&year2=2020&month2=5&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=26&year2=2020&month2=5&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=27&year2=2020&month2=5&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=28&year2=2020&month2=5&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=29&year2=2020&month2=5&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=30&year2=2020&month2=5&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=5&day=31&year2=2020&month2=6&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=1&year2=2020&month2=6&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=2&year2=2020&month2=6&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=3&year2=2020&month2=6&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=4&year2=2020&month2=6&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=5&year2=2020&month2=6&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=6&year2=2020&month2=6&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=7&year2=2020&month2=6&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=8&year2=2020&month2=6&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=9&year2=2020&month2=6&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=10&year2=2020&month2=6&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=11&year2=2020&month2=6&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=12&year2=2020&month2=6&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=13&year2=2020&month2=6&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=14&year2=2020&month2=6&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=15&year2=2020&month2=6&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=16&year2=2020&month2=6&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=17&year2=2020&month2=6&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=18&year2=2020&month2=6&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=19&year2=2020&month2=6&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=20&year2=2020&month2=6&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=21&year2=2020&month2=6&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=22&year2=2020&month2=6&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=23&year2=2020&month2=6&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=24&year2=2020&month2=6&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=25&year2=2020&month2=6&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=26&year2=2020&month2=6&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=27&year2=2020&month2=6&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=28&year2=2020&month2=6&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=29&year2=2020&month2=6&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=6&day=30&year2=2020&month2=7&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=1&year2=2020&month2=7&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=2&year2=2020&month2=7&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=3&year2=2020&month2=7&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=4&year2=2020&month2=7&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=5&year2=2020&month2=7&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=6&year2=2020&month2=7&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=7&year2=2020&month2=7&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=8&year2=2020&month2=7&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=9&year2=2020&month2=7&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=10&year2=2020&month2=7&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=11&year2=2020&month2=7&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=12&year2=2020&month2=7&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=13&year2=2020&month2=7&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=14&year2=2020&month2=7&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=15&year2=2020&month2=7&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=16&year2=2020&month2=7&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=17&year2=2020&month2=7&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=18&year2=2020&month2=7&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=19&year2=2020&month2=7&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=20&year2=2020&month2=7&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=21&year2=2020&month2=7&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=22&year2=2020&month2=7&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=23&year2=2020&month2=7&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=24&year2=2020&month2=7&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=25&year2=2020&month2=7&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=26&year2=2020&month2=7&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=27&year2=2020&month2=7&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=28&year2=2020&month2=7&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=29&year2=2020&month2=7&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=30&year2=2020&month2=7&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=7&day=31&year2=2020&month2=8&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=1&year2=2020&month2=8&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=2&year2=2020&month2=8&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=3&year2=2020&month2=8&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=4&year2=2020&month2=8&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=5&year2=2020&month2=8&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=6&year2=2020&month2=8&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=7&year2=2020&month2=8&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=8&year2=2020&month2=8&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=9&year2=2020&month2=8&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=10&year2=2020&month2=8&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=11&year2=2020&month2=8&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=12&year2=2020&month2=8&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=13&year2=2020&month2=8&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=14&year2=2020&month2=8&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=15&year2=2020&month2=8&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=16&year2=2020&month2=8&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=17&year2=2020&month2=8&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=18&year2=2020&month2=8&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=19&year2=2020&month2=8&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=20&year2=2020&month2=8&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=21&year2=2020&month2=8&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=22&year2=2020&month2=8&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=23&year2=2020&month2=8&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=24&year2=2020&month2=8&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=25&year2=2020&month2=8&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=26&year2=2020&month2=8&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=27&year2=2020&month2=8&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=28&year2=2020&month2=8&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=29&year2=2020&month2=8&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=30&year2=2020&month2=8&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=8&day=31&year2=2020&month2=9&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=1&year2=2020&month2=9&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=2&year2=2020&month2=9&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=3&year2=2020&month2=9&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=4&year2=2020&month2=9&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=5&year2=2020&month2=9&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=6&year2=2020&month2=9&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=7&year2=2020&month2=9&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=8&year2=2020&month2=9&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=9&year2=2020&month2=9&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=10&year2=2020&month2=9&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=11&year2=2020&month2=9&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=12&year2=2020&month2=9&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=13&year2=2020&month2=9&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=14&year2=2020&month2=9&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=15&year2=2020&month2=9&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=16&year2=2020&month2=9&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=17&year2=2020&month2=9&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=18&year2=2020&month2=9&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=19&year2=2020&month2=9&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=20&year2=2020&month2=9&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=21&year2=2020&month2=9&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=22&year2=2020&month2=9&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=23&year2=2020&month2=9&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=24&year2=2020&month2=9&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=25&year2=2020&month2=9&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=26&year2=2020&month2=9&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=27&year2=2020&month2=9&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=28&year2=2020&month2=9&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=29&year2=2020&month2=9&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=9&day=30&year2=2020&month2=10&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=1&year2=2020&month2=10&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=2&year2=2020&month2=10&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=3&year2=2020&month2=10&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=4&year2=2020&month2=10&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=5&year2=2020&month2=10&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=6&year2=2020&month2=10&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=7&year2=2020&month2=10&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=8&year2=2020&month2=10&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=9&year2=2020&month2=10&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=10&year2=2020&month2=10&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=11&year2=2020&month2=10&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=12&year2=2020&month2=10&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=13&year2=2020&month2=10&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=14&year2=2020&month2=10&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=15&year2=2020&month2=10&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=16&year2=2020&month2=10&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=17&year2=2020&month2=10&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=18&year2=2020&month2=10&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=19&year2=2020&month2=10&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=20&year2=2020&month2=10&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=21&year2=2020&month2=10&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=22&year2=2020&month2=10&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=23&year2=2020&month2=10&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=24&year2=2020&month2=10&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=25&year2=2020&month2=10&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=26&year2=2020&month2=10&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=27&year2=2020&month2=10&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=28&year2=2020&month2=10&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=29&year2=2020&month2=10&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=30&year2=2020&month2=10&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=10&day=31&year2=2020&month2=11&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=1&year2=2020&month2=11&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=2&year2=2020&month2=11&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=3&year2=2020&month2=11&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=4&year2=2020&month2=11&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=5&year2=2020&month2=11&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=6&year2=2020&month2=11&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=7&year2=2020&month2=11&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=8&year2=2020&month2=11&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=9&year2=2020&month2=11&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=10&year2=2020&month2=11&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=11&year2=2020&month2=11&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=12&year2=2020&month2=11&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=13&year2=2020&month2=11&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=14&year2=2020&month2=11&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=15&year2=2020&month2=11&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=16&year2=2020&month2=11&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=17&year2=2020&month2=11&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=18&year2=2020&month2=11&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=19&year2=2020&month2=11&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=20&year2=2020&month2=11&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=21&year2=2020&month2=11&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=22&year2=2020&month2=11&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=23&year2=2020&month2=11&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=24&year2=2020&month2=11&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=25&year2=2020&month2=11&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=26&year2=2020&month2=11&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=27&year2=2020&month2=11&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=28&year2=2020&month2=11&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=29&year2=2020&month2=11&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=11&day=30&year2=2020&month2=12&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=1&year2=2020&month2=12&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=2&year2=2020&month2=12&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=3&year2=2020&month2=12&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=4&year2=2020&month2=12&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=5&year2=2020&month2=12&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=6&year2=2020&month2=12&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=7&year2=2020&month2=12&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=8&year2=2020&month2=12&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=9&year2=2020&month2=12&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=10&year2=2020&month2=12&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=11&year2=2020&month2=12&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=12&year2=2020&month2=12&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=13&year2=2020&month2=12&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=14&year2=2020&month2=12&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=15&year2=2020&month2=12&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=16&year2=2020&month2=12&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=17&year2=2020&month2=12&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=18&year2=2020&month2=12&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=19&year2=2020&month2=12&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=20&year2=2020&month2=12&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=21&year2=2020&month2=12&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=22&year2=2020&month2=12&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=23&year2=2020&month2=12&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=24&year2=2020&month2=12&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=25&year2=2020&month2=12&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=26&year2=2020&month2=12&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=27&year2=2020&month2=12&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=28&year2=2020&month2=12&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=29&year2=2020&month2=12&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=30&year2=2020&month2=12&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2020&month=12&day=31&year2=2021&month2=1&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=1&year2=2021&month2=1&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=2&year2=2021&month2=1&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=3&year2=2021&month2=1&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=4&year2=2021&month2=1&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=5&year2=2021&month2=1&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=6&year2=2021&month2=1&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=7&year2=2021&month2=1&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=8&year2=2021&month2=1&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=9&year2=2021&month2=1&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=10&year2=2021&month2=1&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=11&year2=2021&month2=1&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=12&year2=2021&month2=1&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=13&year2=2021&month2=1&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=14&year2=2021&month2=1&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=15&year2=2021&month2=1&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=16&year2=2021&month2=1&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=17&year2=2021&month2=1&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=18&year2=2021&month2=1&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=19&year2=2021&month2=1&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=20&year2=2021&month2=1&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=21&year2=2021&month2=1&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=22&year2=2021&month2=1&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=23&year2=2021&month2=1&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=24&year2=2021&month2=1&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=25&year2=2021&month2=1&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=26&year2=2021&month2=1&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=27&year2=2021&month2=1&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=28&year2=2021&month2=1&day2=29&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=29&year2=2021&month2=1&day2=30&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=30&year2=2021&month2=1&day2=31&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=1&day=31&year2=2021&month2=2&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=1&year2=2021&month2=2&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=2&year2=2021&month2=2&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=3&year2=2021&month2=2&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=4&year2=2021&month2=2&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=5&year2=2021&month2=2&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=6&year2=2021&month2=2&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=7&year2=2021&month2=2&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=8&year2=2021&month2=2&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=9&year2=2021&month2=2&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=10&year2=2021&month2=2&day2=11&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=11&year2=2021&month2=2&day2=12&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=12&year2=2021&month2=2&day2=13&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=13&year2=2021&month2=2&day2=14&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=14&year2=2021&month2=2&day2=15&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=15&year2=2021&month2=2&day2=16&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=16&year2=2021&month2=2&day2=17&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=17&year2=2021&month2=2&day2=18&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=18&year2=2021&month2=2&day2=19&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=19&year2=2021&month2=2&day2=20&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=20&year2=2021&month2=2&day2=21&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=21&year2=2021&month2=2&day2=22&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=22&year2=2021&month2=2&day2=23&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=23&year2=2021&month2=2&day2=24&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=24&year2=2021&month2=2&day2=25&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=25&year2=2021&month2=2&day2=26&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=26&year2=2021&month2=2&day2=27&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=27&year2=2021&month2=2&day2=28&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=2&day=28&year2=2021&month2=3&day2=1&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=1&year2=2021&month2=3&day2=2&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=2&year2=2021&month2=3&day2=3&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=3&year2=2021&month2=3&day2=4&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=4&year2=2021&month2=3&day2=5&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=5&year2=2021&month2=3&day2=6&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=6&year2=2021&month2=3&day2=7&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=7&year2=2021&month2=3&day2=8&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=8&year2=2021&month2=3&day2=9&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=9&year2=2021&month2=3&day2=10&product=ALL&AVG=10&ALM15=1 +Downloaded https://aeronet.gsfc.nasa.gov/cgi-bin/print_web_data_inv_v3?year=2021&month=3&day=10&year2=2021&month2=3&day2=11&product=ALL&AVG=10&ALM15=1 + +Started downloading data of EBAS diff --git a/download_scripts/log_files/nohup_CHILE_JAPAN.out b/download_scripts/log_files/nohup_CHILE_JAPAN.out new file mode 100644 index 0000000000000000000000000000000000000000..24131b54932c0cdfc0b950866dd1e751cf849d55 --- /dev/null +++ b/download_scripts/log_files/nohup_CHILE_JAPAN.out @@ -0,0 +1,1879 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +Started downloading data of JAPAN_NIES +Started downloading data of CHILE_SINCA +RXV +Downloaded RXV F01 PM25 diario.diario + +Downloaded RXV F01 PM25 horario.horario +RI +Downloaded RI 117 PM25 diario.diario +Downloaded RI 117 PM25 horario.horario +RII +Downloaded RII 237 PM10 diario.diario +Downloaded RII 237 PM10 horario.horario +Downloaded RII 237 PM25 diario.diario +Downloaded RII 237 PM25 horario.horario +Downloaded RII 237 0001 diario.diario +Downloaded RII 237 0001 horario.horario +RII +Downloaded RII 224 PM10 diario.diario +Downloaded RII 224 00Pb diario.diario +Downloaded RII 224 ARSE diario.diario +Downloaded RII 224 00Cu diario.diario +RII +Downloaded RII 226 PM10 diario.diario +RII +Downloaded RII 225 PM10 diario.diario +Downloaded RII 225 00Pb diario.diario +Downloaded RII 225 ARSE diario.diario +Downloaded RII 225 00Cu diario.diario +RII +Downloaded RII 213 PM10 diario.diario +Downloaded RII 213 0001 diario.diario +Downloaded RII 213 0001 horario.horario +Downloaded RII 213 ARSE diario.diario +RII +Downloaded RII 228 PM10 diario.diario +Downloaded RII 228 0001 diario.diario +Downloaded RII 228 0001 horario.horario +Downloaded RII 228 ARSE diario.diario +RII +Downloaded RII 233 PM10 diario.diario +Downloaded RII 233 PM10 horario.horario +Downloaded RII 233 PM25 diario.diario +Downloaded RII 233 PM25 horario.horario +Downloaded RII 233 0001 diario.diario +Downloaded RII 233 0001 horario.horario +RII +Downloaded RII 235 PM10 diario.diario +Downloaded RII 235 PM10 horario.horario +Downloaded RII 235 PM25 diario.diario +Downloaded RII 235 PM25 horario.horario +RII +Downloaded RII 236 PM10 diario.diario +Downloaded RII 236 PM10 horario.horario +Downloaded RII 236 PM25 diario.diario +Downloaded RII 236 PM25 horario.horario +Downloaded RII 236 0001 diario.diario +Downloaded RII 236 0001 horario.horario +Downloaded RII 236 0003 diario.diario +Downloaded RII 236 0003 horario.horario +Downloaded RII 236 0NOX diario.diario +Downloaded RII 236 0NOX horario.horario +Downloaded RII 236 0002 diario.diario +Downloaded RII 236 0002 horario.horario +Downloaded RII 236 0004 diario.diario +Downloaded RII 236 0004 horario.horario +Downloaded RII 236 0008 diario.diario +Downloaded RII 236 0008 horario.horario +RII +Downloaded RII 217 PM10 diario.diario +Downloaded RII 217 PM10 horario.horario +Downloaded RII 217 PM25 diario.diario +Downloaded RII 217 PM25 horario.horario +Downloaded RII 217 0001 diario.diario +Downloaded RII 217 0001 horario.horario +Downloaded RII 217 ARSE diario.diario +RII +Downloaded RII 253 PM10 diario.diario +Downloaded RII 253 PM10 horario.horario +Downloaded RII 253 0001 diario.diario +Downloaded RII 253 0001 horario.horario +RII +Downloaded RII 234 0001 diario.diario +Downloaded RII 234 0001 horario.horario +RII +Downloaded RII 227 PM10 diario.diario +Downloaded RII 227 0001 diario.diario +Downloaded RII 227 0001 horario.horario +Downloaded RII 227 ARSE diario.diario +RII +Downloaded RII 219 PM10 diario.diario +Downloaded RII 219 0001 diario.diario +Downloaded RII 219 0001 horario.horario +Downloaded RII 219 ARSE diario.diario +RII +Downloaded RII 220 PM10 diario.diario +Downloaded RII 220 0001 diario.diario +Downloaded RII 220 0001 horario.horario +Downloaded RII 220 0004 diario.diario +RII +Downloaded RII 218 PM10 diario.diario +Downloaded RII 218 0001 diario.diario +Downloaded RII 218 0001 horario.horario +RII +Downloaded RII 210 PM10 diario.diario +Downloaded RII 210 PM10 horario.horario +RII +Downloaded RII 211 PM10 diario.diario +RII +Downloaded RII 209 PM10 diario.diario +Downloaded RII 209 0003 diario.diario +Downloaded RII 209 0003 horario.horario +Downloaded RII 209 0NOX diario.diario +Downloaded RII 209 0NOX horario.horario +Downloaded RII 209 0002 diario.diario +Downloaded RII 209 0002 horario.horario +RII +Downloaded RII 252 0003 diario.diario +Downloaded RII 252 0003 horario.horario +Downloaded RII 252 0NOX diario.diario +Downloaded RII 252 0NOX horario.horario +Downloaded RII 252 0002 diario.diario +Downloaded RII 252 0002 horario.horario +RII +Downloaded RII 221 PM10 diario.diario +Downloaded RII 221 0003 diario.diario +Downloaded RII 221 0003 horario.horario +Downloaded RII 221 0NOX diario.diario +Downloaded RII 221 0NOX horario.horario +Downloaded RII 221 0002 diario.diario +Downloaded RII 221 0002 horario.horario +Downloaded RII 221 0004 diario.diario +Downloaded RII 221 0004 horario.horario +Downloaded RII 221 0008 diario.diario +Downloaded RII 221 0008 horario.horario +RII +Downloaded RII 207 PM10 diario.diario +Downloaded RII 207 0001 diario.diario +Downloaded RII 207 0001 horario.horario +Downloaded RII 207 0003 diario.diario +Downloaded RII 207 0003 horario.horario +Downloaded RII 207 0008 diario.diario +Downloaded RII 207 0008 horario.horario +RII +Downloaded RII 204 PM10 diario.diario +Downloaded RII 204 PM10 horario.horario +Downloaded RII 204 PM25 diario.diario +Downloaded RII 204 PM25 horario.horario +RII +Downloaded RII 216 PM10 diario.diario +Downloaded RII 216 0001 diario.diario +Downloaded RII 216 0001 horario.horario +Downloaded RII 216 0003 diario.diario +Downloaded RII 216 0003 horario.horario +Downloaded RII 216 0NOX diario.diario +Downloaded RII 216 0NOX horario.horario +Downloaded RII 216 0002 diario.diario +Downloaded RII 216 0002 horario.horario +Downloaded RII 216 0004 diario.diario +Downloaded RII 216 0004 horario.horario +Downloaded RII 216 0008 diario.diario +Downloaded RII 216 0008 horario.horario +RII +Downloaded RII 215 PM10 diario.diario +Downloaded RII 215 0001 diario.diario +Downloaded RII 215 0001 horario.horario +Downloaded RII 215 0003 diario.diario +Downloaded RII 215 0003 horario.horario +Downloaded RII 215 0NOX diario.diario +Downloaded RII 215 0NOX horario.horario +Downloaded RII 215 0002 diario.diario +Downloaded RII 215 0002 horario.horario +Downloaded RII 215 0004 diario.diario +Downloaded RII 215 0004 horario.horario +Downloaded RII 215 0008 diario.diario +Downloaded RII 215 0008 horario.horario +RII +Downloaded RII 230 PM25 diario.diario +Downloaded RII 230 PM25 horario.horario +RII +Downloaded RII 201 PM10 diario.diario +Downloaded RII 201 PM10 horario.horario +Downloaded RII 201 0001 diario.diario +Downloaded RII 201 0001 horario.horario +RII +Downloaded RII 251 PM10 diario.diario +Downloaded RII 251 PM10 horario.horario +Downloaded RII 251 PM25 diario.diario +Downloaded RII 251 PM25 horario.horario +Downloaded RII 251 0001 diario.diario +Downloaded RII 251 0001 horario.horario +Downloaded RII 251 0003 diario.diario +Downloaded RII 251 0003 horario.horario +Downloaded RII 251 0NOX diario.diario +Downloaded RII 251 0NOX horario.horario +Downloaded RII 251 0002 diario.diario +Downloaded RII 251 0002 horario.horario +Downloaded RII 251 0004 diario.diario +Downloaded RII 251 0004 horario.horario +Downloaded RII 251 0008 diario.diario +Downloaded RII 251 0008 horario.horario +RII +Downloaded RII 231 PM10 diario.diario +Downloaded RII 231 PM10 horario.horario +Downloaded RII 231 PM25 diario.diario +Downloaded RII 231 PM25 horario.horario +RII +Downloaded RII 222 PM10 diario.diario +Downloaded RII 222 PM10 horario.horario +Downloaded RII 222 PM25 diario.diario +Downloaded RII 222 PM25 horario.horario +Downloaded RII 222 0001 diario.diario +Downloaded RII 222 0001 horario.horario +Downloaded RII 222 0003 diario.diario +Downloaded RII 222 0003 horario.horario +Downloaded RII 222 0NOX diario.diario +Downloaded RII 222 0NOX horario.horario +Downloaded RII 222 0002 diario.diario +Downloaded RII 222 0002 horario.horario +Downloaded RII 222 0004 diario.diario +Downloaded RII 222 0004 horario.horario +Downloaded RII 222 0008 diario.diario +Downloaded RII 222 0008 horario.horario +RII +Downloaded RII 205 0001 diario.diario +RII +Downloaded RII 203 PM10 diario.diario +Downloaded RII 203 0001 diario.diario +RII +Downloaded RII 202 0001 diario.diario +RII +Downloaded RII 206 PM10 diario.diario +Downloaded RII 206 0001 diario.diario +RIII +Downloaded RIII 334 PM10 diario.diario +Downloaded RIII 334 PM10 horario.horario +RIII +Downloaded RIII 332 PM10 diario.diario +Downloaded RIII 332 PM10 horario.horario +Downloaded RIII 332 PM25 diario.diario +Downloaded RIII 332 PM25 horario.horario +Downloaded RIII 332 0001 diario.diario +Downloaded RIII 332 0001 horario.horario +RIII +Downloaded RIII 311 PM10 diario.diario +Downloaded RIII 311 0001 diario.diario +Downloaded RIII 311 0001 horario.horario +RIII +Downloaded RIII 315 PM10 diario.diario +Downloaded RIII 315 PM10 horario.horario +Downloaded RIII 315 0001 diario.diario +Downloaded RIII 315 0001 horario.horario +RIII +Downloaded RIII 314 PM10 diario.diario +Downloaded RIII 314 0001 diario.diario +Downloaded RIII 314 0001 horario.horario +RIII +Downloaded RIII 313 PM10 diario.diario +Downloaded RIII 313 0001 diario.diario +Downloaded RIII 313 0001 horario.horario +RIII +Downloaded RIII 320 PM10 diario.diario +Downloaded RIII 320 0001 diario.diario +Downloaded RIII 320 0001 horario.horario +RIII +Downloaded RIII 321 PM10 diario.diario +Downloaded RIII 321 0001 diario.diario +Downloaded RIII 321 0001 horario.horario +RIII +Downloaded RIII 306 0001 diario.diario +Downloaded RIII 306 0001 horario.horario +RIII +Downloaded RIII 307 0001 diario.diario +Downloaded RIII 307 0001 horario.horario +RIII +Downloaded RIII 308 0001 diario.diario +Downloaded RIII 308 0001 horario.horario +RIII +Downloaded RIII 333 PM25 diario.diario +Downloaded RIII 333 PM25 horario.horario +RIII +Downloaded RIII 330 PM10 diario.diario +Downloaded RIII 330 PM10 horario.horario +Downloaded RIII 330 PM25 diario.diario +Downloaded RIII 330 PM25 horario.horario +RIII +Downloaded RIII 310 PM10 diario.diario +Downloaded RIII 310 PM25 diario.diario +Downloaded RIII 310 PM25 horario.horario +Downloaded RIII 310 0001 diario.diario +Downloaded RIII 310 0001 horario.horario +Downloaded RIII 310 0003 diario.diario +Downloaded RIII 310 0003 horario.horario +Downloaded RIII 310 0002 diario.diario +Downloaded RIII 310 0002 horario.horario +Downloaded RIII 310 0004 diario.diario +Downloaded RIII 310 0004 horario.horario +Downloaded RIII 310 0008 diario.diario +Downloaded RIII 310 0008 horario.horario +RIII +Downloaded RIII 309 PM10 diario.diario +Downloaded RIII 309 PM25 diario.diario +Downloaded RIII 309 PM25 horario.horario +Downloaded RIII 309 0001 diario.diario +Downloaded RIII 309 0001 horario.horario +Downloaded RIII 309 0003 diario.diario +Downloaded RIII 309 0003 horario.horario +Downloaded RIII 309 0002 diario.diario +Downloaded RIII 309 0002 horario.horario +RIII +Downloaded RIII 324 0001 diario.diario +Downloaded RIII 324 0001 horario.horario +RIII +Downloaded RIII 329 0001 diario.diario +Downloaded RIII 329 0001 horario.horario +Downloaded RIII 329 0003 diario.diario +Downloaded RIII 329 0003 horario.horario +Downloaded RIII 329 0002 diario.diario +Downloaded RIII 329 0002 horario.horario +Downloaded RIII 329 0008 diario.diario +Downloaded RIII 329 0008 horario.horario +RIII +Downloaded RIII 301 0001 diario.diario +Downloaded RIII 301 0001 horario.horario +RIII +Downloaded RIII 302 0001 diario.diario +Downloaded RIII 302 0001 horario.horario +RIII +Downloaded RIII 303 0001 diario.diario +Downloaded RIII 303 0001 horario.horario +RIII +Downloaded RIII 304 0001 diario.diario +Downloaded RIII 304 0001 horario.horario +RIII +Downloaded RIII 305 0001 diario.diario +Downloaded RIII 305 0001 horario.horario +RIII +Downloaded RIII 312 PM10 diario.diario +Downloaded RIII 312 0001 diario.diario +Downloaded RIII 312 0001 horario.horario +RIII +Downloaded RIII 316 0001 diario.diario +Downloaded RIII 316 0001 horario.horario +RIV +Downloaded RIV 420 PM10 diario.diario +Downloaded RIV 420 PM10 horario.horario +RIV +Downloaded RIV 411 PM10 diario.diario +Downloaded RIV 411 PM10 horario.horario +RIV +Downloaded RIV 412 PM10 diario.diario +Downloaded RIV 412 PM10 horario.horario +RIV +Downloaded RIV 414 PM10 diario.diario +Downloaded RIV 414 PM10 horario.horario +RIV +Downloaded RIV 415 PM10 diario.diario +Downloaded RIV 415 PM10 horario.horario +RIV +Downloaded RIV 426 PM25 diario.diario +Downloaded RIV 426 PM25 horario.horario +RIV +Downloaded RIV 425 PM25 diario.diario +Downloaded RIV 425 PM25 horario.horario +RIV +Downloaded RIV 407 PM10 diario.diario +RIV +Downloaded RIV 402 PM10 diario.diario +RIV +Downloaded RIV 406 PM10 diario.diario +RIV +Downloaded RIV 408 PM10 diario.diario +RIV +Downloaded RIV 424 PM10 diario.diario +Downloaded RIV 424 PM10 horario.horario +Downloaded RIV 424 PM25 diario.diario +Downloaded RIV 424 PM25 horario.horario +RIV +Downloaded RIV 405 PM10 diario.diario +RIV +Downloaded RIV 404 PM10 diario.diario +RIV +Downloaded RIV 401 PM10 diario.diario +RIV +Downloaded RIV 409 PM10 diario.diario +RV +Downloaded RV 534 PM10 diario.diario +Downloaded RV 534 PM10 horario.horario +Downloaded RV 534 0001 diario.diario +Downloaded RV 534 0001 horario.horario +Downloaded RV 534 0003 diario.diario +Downloaded RV 534 0003 horario.horario +Downloaded RV 534 0NOX diario.diario +Downloaded RV 534 0NOX horario.horario +Downloaded RV 534 0002 diario.diario +Downloaded RV 534 0002 horario.horario +Downloaded RV 534 0004 diario.diario +Downloaded RV 534 0004 horario.horario +Downloaded RV 534 0008 diario.diario +Downloaded RV 534 0008 horario.horario +Downloaded RV 534 0CH4 diario.diario +Downloaded RV 534 0CH4 horario.horario +Downloaded RV 534 NMHC diario.diario +Downloaded RV 534 NMHC horario.horario +Downloaded RV 534 THCM diario.diario +Downloaded RV 534 THCM horario.horario +RV +Downloaded RV 517 PM10 diario.diario +Downloaded RV 517 0001 diario.diario +Downloaded RV 517 0001 horario.horario +Downloaded RV 517 0003 diario.diario +Downloaded RV 517 0003 horario.horario +Downloaded RV 517 0002 diario.diario +Downloaded RV 517 0002 horario.horario +Downloaded RV 517 0008 diario.diario +Downloaded RV 517 0008 horario.horario +RV +Downloaded RV 518 PM10 diario.diario +Downloaded RV 518 0001 diario.diario +Downloaded RV 518 0001 horario.horario +Downloaded RV 518 0003 diario.diario +Downloaded RV 518 0003 horario.horario +Downloaded RV 518 0002 diario.diario +Downloaded RV 518 0002 horario.horario +Downloaded RV 518 0008 diario.diario +Downloaded RV 518 0008 horario.horario +Downloaded RV 518 0CH4 diario.diario +Downloaded RV 518 0CH4 horario.horario +RV +Downloaded RV 522 PM10 diario.diario +Downloaded RV 522 0001 diario.diario +Downloaded RV 522 0001 horario.horario +RV +RV +Downloaded RV 523 0001 diario.diario +Downloaded RV 523 0001 horario.horario +RV +Downloaded RV 524 0001 diario.diario +Downloaded RV 524 0001 horario.horario +RV +Downloaded RV 560 PM25 diario.diario +Downloaded RV 560 PM25 horario.horario +RV +Downloaded RV 511 PM10 diario.diario +Downloaded RV 511 0001 diario.diario +Downloaded RV 511 0001 horario.horario +Downloaded RV 511 0003 diario.diario +Downloaded RV 511 0003 horario.horario +Downloaded RV 511 0NOX diario.diario +Downloaded RV 511 0NOX horario.horario +Downloaded RV 511 0002 diario.diario +Downloaded RV 511 0002 horario.horario +Downloaded RV 511 0004 diario.diario +Downloaded RV 511 0004 horario.horario +Downloaded RV 511 0008 diario.diario +Downloaded RV 511 0008 horario.horario +Downloaded RV 511 0CH4 diario.diario +Downloaded RV 511 0CH4 horario.horario +Downloaded RV 511 NMHC diario.diario +Downloaded RV 511 NMHC horario.horario +Downloaded RV 511 THCM diario.diario +Downloaded RV 511 THCM horario.horario +RV +Downloaded RV 509 PM10 diario.diario +Downloaded RV 509 PM10 horario.horario +Downloaded RV 509 PM25 diario.diario +Downloaded RV 509 PM25 horario.horario +Downloaded RV 509 0001 diario.diario +Downloaded RV 509 0001 horario.horario +Downloaded RV 509 0003 diario.diario +Downloaded RV 509 0003 horario.horario +Downloaded RV 509 0NOX diario.diario +Downloaded RV 509 0NOX horario.horario +Downloaded RV 509 0002 diario.diario +Downloaded RV 509 0002 horario.horario +Downloaded RV 509 0004 diario.diario +Downloaded RV 509 0004 horario.horario +Downloaded RV 509 0008 diario.diario +Downloaded RV 509 0008 horario.horario +Downloaded RV 509 0CH4 diario.diario +Downloaded RV 509 0CH4 horario.horario +Downloaded RV 509 NMHC diario.diario +Downloaded RV 509 NMHC horario.horario +Downloaded RV 509 THCM diario.diario +Downloaded RV 509 THCM horario.horario +RV +Downloaded RV 535 PM10 diario.diario +Downloaded RV 535 PM10 horario.horario +Downloaded RV 535 0001 diario.diario +Downloaded RV 535 0001 horario.horario +Downloaded RV 535 0004 diario.diario +Downloaded RV 535 0004 horario.horario +Downloaded RV 535 0CH4 diario.diario +Downloaded RV 535 0CH4 horario.horario +Downloaded RV 535 NMHC diario.diario +Downloaded RV 535 NMHC horario.horario +Downloaded RV 535 THCM diario.diario +Downloaded RV 535 THCM horario.horario +RV +Downloaded RV 512 PM10 diario.diario +Downloaded RV 512 0001 diario.diario +Downloaded RV 512 0001 horario.horario +Downloaded RV 512 0004 diario.diario +Downloaded RV 512 0004 horario.horario +Downloaded RV 512 0CH4 diario.diario +Downloaded RV 512 0CH4 horario.horario +Downloaded RV 512 NMHC diario.diario +Downloaded RV 512 NMHC horario.horario +Downloaded RV 512 THCM diario.diario +Downloaded RV 512 THCM horario.horario +RV +Downloaded RV 510 PM10 diario.diario +Downloaded RV 510 0001 diario.diario +Downloaded RV 510 0001 horario.horario +RV +Downloaded RV 519 PM10 diario.diario +Downloaded RV 519 0001 diario.diario +Downloaded RV 519 0001 horario.horario +Downloaded RV 519 0008 diario.diario +Downloaded RV 519 0008 horario.horario +RV +Downloaded RV 532 PM10 diario.diario +Downloaded RV 532 PM10 horario.horario +Downloaded RV 532 PM25 diario.diario +Downloaded RV 532 PM25 horario.horario +Downloaded RV 532 0003 diario.diario +Downloaded RV 532 0003 horario.horario +Downloaded RV 532 0NOX diario.diario +Downloaded RV 532 0NOX horario.horario +Downloaded RV 532 0002 diario.diario +Downloaded RV 532 0002 horario.horario +Downloaded RV 532 0008 diario.diario +Downloaded RV 532 0008 horario.horario +RV +Downloaded RV 521 PM10 diario.diario +Downloaded RV 521 PM10 horario.horario +Downloaded RV 521 0001 diario.diario +Downloaded RV 521 0001 horario.horario +RV +Downloaded RV 505 PM10 diario.diario +Downloaded RV 505 PM10 horario.horario +Downloaded RV 505 PM25 diario.diario +Downloaded RV 505 PM25 horario.horario +Downloaded RV 505 0001 diario.diario +Downloaded RV 505 0001 horario.horario +Downloaded RV 505 0003 diario.diario +Downloaded RV 505 0003 horario.horario +Downloaded RV 505 0NOX diario.diario +Downloaded RV 505 0NOX horario.horario +Downloaded RV 505 0002 diario.diario +Downloaded RV 505 0002 horario.horario +Downloaded RV 505 0008 diario.diario +Downloaded RV 505 0008 horario.horario +RV +Downloaded RV 501 PM10 diario.diario +Downloaded RV 501 0001 diario.diario +Downloaded RV 501 0001 horario.horario +Downloaded RV 501 0003 diario.diario +Downloaded RV 501 0003 horario.horario +Downloaded RV 501 0NOX diario.diario +Downloaded RV 501 0NOX horario.horario +Downloaded RV 501 0002 diario.diario +Downloaded RV 501 0002 horario.horario +Downloaded RV 501 0008 diario.diario +Downloaded RV 501 0008 horario.horario +Downloaded RV 501 0CH4 diario.diario +Downloaded RV 501 0CH4 horario.horario +Downloaded RV 501 NMHC diario.diario +Downloaded RV 501 NMHC horario.horario +Downloaded RV 501 THCM diario.diario +Downloaded RV 501 THCM horario.horario +RV +Downloaded RV 503 PM10 diario.diario +Downloaded RV 503 PM10 horario.horario +Downloaded RV 503 PM25 diario.diario +Downloaded RV 503 PM25 horario.horario +Downloaded RV 503 0001 diario.diario +Downloaded RV 503 0001 horario.horario +Downloaded RV 503 0003 diario.diario +Downloaded RV 503 0003 horario.horario +Downloaded RV 503 0NOX diario.diario +Downloaded RV 503 0NOX horario.horario +Downloaded RV 503 0002 diario.diario +Downloaded RV 503 0002 horario.horario +Downloaded RV 503 0008 diario.diario +Downloaded RV 503 0008 horario.horario +RV +Downloaded RV 504 PM10 diario.diario +Downloaded RV 504 PM10 horario.horario +Downloaded RV 504 PM25 diario.diario +Downloaded RV 504 PM25 horario.horario +Downloaded RV 504 0001 diario.diario +Downloaded RV 504 0001 horario.horario +Downloaded RV 504 0003 diario.diario +Downloaded RV 504 0003 horario.horario +Downloaded RV 504 0NOX diario.diario +Downloaded RV 504 0NOX horario.horario +Downloaded RV 504 0002 diario.diario +Downloaded RV 504 0002 horario.horario +Downloaded RV 504 0004 diario.diario +Downloaded RV 504 0004 horario.horario +Downloaded RV 504 0008 diario.diario +Downloaded RV 504 0008 horario.horario +Downloaded RV 504 0CH4 diario.diario +Downloaded RV 504 0CH4 horario.horario +Downloaded RV 504 NMHC diario.diario +Downloaded RV 504 NMHC horario.horario +Downloaded RV 504 THCM diario.diario +Downloaded RV 504 THCM horario.horario +RV +Downloaded RV 548 PM10 diario.diario +Downloaded RV 548 PM10 horario.horario +Downloaded RV 548 PM25 diario.diario +Downloaded RV 548 PM25 horario.horario +Downloaded RV 548 0001 diario.diario +Downloaded RV 548 0001 horario.horario +Downloaded RV 548 0003 diario.diario +Downloaded RV 548 0003 horario.horario +Downloaded RV 548 0NOX diario.diario +Downloaded RV 548 0NOX horario.horario +Downloaded RV 548 0002 diario.diario +Downloaded RV 548 0002 horario.horario +Downloaded RV 548 0008 diario.diario +Downloaded RV 548 0008 horario.horario +Downloaded RV 548 0CH4 diario.diario +Downloaded RV 548 0CH4 horario.horario +Downloaded RV 548 NMHC diario.diario +Downloaded RV 548 NMHC horario.horario +Downloaded RV 548 THCM diario.diario +Downloaded RV 548 THCM horario.horario +RV +Downloaded RV 502 PM10 diario.diario +Downloaded RV 502 0003 diario.diario +Downloaded RV 502 0003 horario.horario +Downloaded RV 502 0NOX diario.diario +Downloaded RV 502 0NOX horario.horario +Downloaded RV 502 0002 diario.diario +Downloaded RV 502 0002 horario.horario +Downloaded RV 502 0008 diario.diario +Downloaded RV 502 0008 horario.horario +Downloaded RV 502 0CH4 diario.diario +Downloaded RV 502 0CH4 horario.horario +Downloaded RV 502 NMHC diario.diario +Downloaded RV 502 NMHC horario.horario +Downloaded RV 502 THCM diario.diario +Downloaded RV 502 THCM horario.horario +RV +Downloaded RV 513 PM10 diario.diario +Downloaded RV 513 PM10 horario.horario +Downloaded RV 513 PM25 diario.diario +Downloaded RV 513 PM25 horario.horario +Downloaded RV 513 0001 diario.diario +Downloaded RV 513 0001 horario.horario +Downloaded RV 513 0003 diario.diario +Downloaded RV 513 0003 horario.horario +Downloaded RV 513 0NOX diario.diario +Downloaded RV 513 0NOX horario.horario +Downloaded RV 513 0002 diario.diario +Downloaded RV 513 0002 horario.horario +Downloaded RV 513 0004 diario.diario +Downloaded RV 513 0004 horario.horario +Downloaded RV 513 0008 diario.diario +Downloaded RV 513 0008 horario.horario +Downloaded RV 513 0CH4 diario.diario +Downloaded RV 513 0CH4 horario.horario +Downloaded RV 513 NMHC diario.diario +Downloaded RV 513 NMHC horario.horario +Downloaded RV 513 THCM diario.diario +Downloaded RV 513 THCM horario.horario +RV +Downloaded RV 515 PM10 diario.diario +Downloaded RV 515 PM10 horario.horario +Downloaded RV 515 PM25 diario.diario +Downloaded RV 515 PM25 horario.horario +Downloaded RV 515 0001 diario.diario +Downloaded RV 515 0001 horario.horario +Downloaded RV 515 0003 diario.diario +Downloaded RV 515 0003 horario.horario +Downloaded RV 515 0NOX diario.diario +Downloaded RV 515 0NOX horario.horario +Downloaded RV 515 0002 diario.diario +Downloaded RV 515 0002 horario.horario +Downloaded RV 515 0004 diario.diario +Downloaded RV 515 0004 horario.horario +Downloaded RV 515 0008 diario.diario +Downloaded RV 515 0008 horario.horario +Downloaded RV 515 0CH4 diario.diario +Downloaded RV 515 0CH4 horario.horario +Downloaded RV 515 NMHC diario.diario +Downloaded RV 515 NMHC horario.horario +Downloaded RV 515 THCM diario.diario +Downloaded RV 515 THCM horario.horario +RV +Downloaded RV 514 PM10 diario.diario +Downloaded RV 514 PM10 horario.horario +Downloaded RV 514 PM25 diario.diario +Downloaded RV 514 PM25 horario.horario +Downloaded RV 514 0001 diario.diario +Downloaded RV 514 0001 horario.horario +Downloaded RV 514 0003 diario.diario +Downloaded RV 514 0003 horario.horario +Downloaded RV 514 0NOX diario.diario +Downloaded RV 514 0NOX horario.horario +Downloaded RV 514 0002 diario.diario +Downloaded RV 514 0002 horario.horario +Downloaded RV 514 0004 diario.diario +Downloaded RV 514 0004 horario.horario +Downloaded RV 514 0008 diario.diario +Downloaded RV 514 0008 horario.horario +Downloaded RV 514 0CH4 diario.diario +Downloaded RV 514 0CH4 horario.horario +Downloaded RV 514 NMHC diario.diario +Downloaded RV 514 NMHC horario.horario +Downloaded RV 514 THCM diario.diario +Downloaded RV 514 THCM horario.horario +RV +Downloaded RV 533 PM10 diario.diario +Downloaded RV 533 PM10 horario.horario +Downloaded RV 533 0001 diario.diario +Downloaded RV 533 0001 horario.horario +Downloaded RV 533 0003 diario.diario +Downloaded RV 533 0003 horario.horario +Downloaded RV 533 0NOX diario.diario +Downloaded RV 533 0NOX horario.horario +Downloaded RV 533 0002 diario.diario +Downloaded RV 533 0002 horario.horario +Downloaded RV 533 0004 diario.diario +Downloaded RV 533 0004 horario.horario +Downloaded RV 533 0008 diario.diario +Downloaded RV 533 0008 horario.horario +Downloaded RV 533 0CH4 diario.diario +Downloaded RV 533 0CH4 horario.horario +Downloaded RV 533 NMHC diario.diario +Downloaded RV 533 NMHC horario.horario +Downloaded RV 533 THCM diario.diario +Downloaded RV 533 THCM horario.horario +RV +Downloaded RV 549 PM10 diario.diario +Downloaded RV 549 PM10 horario.horario +Downloaded RV 549 PM25 diario.diario +Downloaded RV 549 PM25 horario.horario +RV +Downloaded RV 551 PM10 diario.diario +Downloaded RV 551 PM10 horario.horario +Downloaded RV 551 PM25 diario.diario +Downloaded RV 551 PM25 horario.horario +RV +Downloaded RV 525 PM10 diario.diario +RV +Downloaded RV 539 PM10 diario.diario +Downloaded RV 539 PM10 horario.horario +Downloaded RV 539 PM25 diario.diario +Downloaded RV 539 PM25 horario.horario +Downloaded RV 539 0001 diario.diario +Downloaded RV 539 0001 horario.horario +Downloaded RV 539 0003 diario.diario +Downloaded RV 539 0003 horario.horario +Downloaded RV 539 0NOX diario.diario +Downloaded RV 539 0NOX horario.horario +Downloaded RV 539 0002 diario.diario +Downloaded RV 539 0002 horario.horario +Downloaded RV 539 0004 diario.diario +Downloaded RV 539 0004 horario.horario +Downloaded RV 539 0008 diario.diario +Downloaded RV 539 0008 horario.horario +Downloaded RV 539 0CH4 diario.diario +Downloaded RV 539 0CH4 horario.horario +Downloaded RV 539 NMHC diario.diario +Downloaded RV 539 NMHC horario.horario +Downloaded RV 539 THCM diario.diario +Downloaded RV 539 THCM horario.horario +RV +Downloaded RV 547 PM10 diario.diario +Downloaded RV 547 PM10 horario.horario +Downloaded RV 547 PM25 diario.diario +Downloaded RV 547 PM25 horario.horario +Downloaded RV 547 0001 diario.diario +Downloaded RV 547 0001 horario.horario +Downloaded RV 547 0003 diario.diario +Downloaded RV 547 0003 horario.horario +Downloaded RV 547 0NOX diario.diario +Downloaded RV 547 0NOX horario.horario +Downloaded RV 547 0002 diario.diario +Downloaded RV 547 0002 horario.horario +Downloaded RV 547 0004 diario.diario +Downloaded RV 547 0004 horario.horario +Downloaded RV 547 0008 diario.diario +Downloaded RV 547 0008 horario.horario +Downloaded RV 547 0CH4 diario.diario +Downloaded RV 547 0CH4 horario.horario +Downloaded RV 547 NMHC diario.diario +Downloaded RV 547 NMHC horario.horario +Downloaded RV 547 THCM diario.diario +Downloaded RV 547 THCM horario.horario +RV +Downloaded RV 540 PM10 diario.diario +Downloaded RV 540 PM10 horario.horario +Downloaded RV 540 PM25 diario.diario +Downloaded RV 540 PM25 horario.horario +Downloaded RV 540 0001 diario.diario +Downloaded RV 540 0001 horario.horario +Downloaded RV 540 0003 diario.diario +Downloaded RV 540 0003 horario.horario +Downloaded RV 540 0NOX diario.diario +Downloaded RV 540 0NOX horario.horario +Downloaded RV 540 0002 diario.diario +Downloaded RV 540 0002 horario.horario +Downloaded RV 540 0004 diario.diario +Downloaded RV 540 0004 horario.horario +Downloaded RV 540 0008 diario.diario +Downloaded RV 540 0008 horario.horario +RV +Downloaded RV 506 PM10 diario.diario +Downloaded RV 506 PM10 horario.horario +Downloaded RV 506 0001 diario.diario +Downloaded RV 506 0001 horario.horario +Downloaded RV 506 0003 diario.diario +Downloaded RV 506 0003 horario.horario +Downloaded RV 506 0NOX diario.diario +Downloaded RV 506 0NOX horario.horario +Downloaded RV 506 0002 diario.diario +Downloaded RV 506 0002 horario.horario +Downloaded RV 506 0004 diario.diario +Downloaded RV 506 0004 horario.horario +Downloaded RV 506 0008 diario.diario +Downloaded RV 506 0008 horario.horario +Downloaded RV 506 0CH4 diario.diario +Downloaded RV 506 0CH4 horario.horario +Downloaded RV 506 NMHC diario.diario +Downloaded RV 506 NMHC horario.horario +Downloaded RV 506 THCM diario.diario +Downloaded RV 506 THCM horario.horario +RV +Downloaded RV 507 PM10 diario.diario +Downloaded RV 507 PM10 horario.horario +Downloaded RV 507 0001 diario.diario +Downloaded RV 507 0001 horario.horario +Downloaded RV 507 0003 diario.diario +Downloaded RV 507 0003 horario.horario +Downloaded RV 507 0NOX diario.diario +Downloaded RV 507 0NOX horario.horario +Downloaded RV 507 0002 diario.diario +Downloaded RV 507 0002 horario.horario +Downloaded RV 507 0008 diario.diario +Downloaded RV 507 0008 horario.horario +RV +Downloaded RV 550 PM25 diario.diario +Downloaded RV 550 PM25 horario.horario +RV +Downloaded RV 529 PM10 diario.diario +Downloaded RV 529 PM10 horario.horario +Downloaded RV 529 PM25 diario.diario +Downloaded RV 529 PM25 horario.horario +Downloaded RV 529 0001 diario.diario +Downloaded RV 529 0001 horario.horario +Downloaded RV 529 0003 diario.diario +Downloaded RV 529 0003 horario.horario +Downloaded RV 529 0NOX diario.diario +Downloaded RV 529 0NOX horario.horario +Downloaded RV 529 0002 diario.diario +Downloaded RV 529 0002 horario.horario +Downloaded RV 529 0004 diario.diario +Downloaded RV 529 0004 horario.horario +Downloaded RV 529 0008 diario.diario +Downloaded RV 529 0008 horario.horario +RM +Downloaded RM D35 PM10 diario.diario +Downloaded RM D35 PM10 horario.horario +Downloaded RM D35 PM25 diario.diario +Downloaded RM D35 PM25 horario.horario +RM +Downloaded RM D16 PM10 diario.diario +Downloaded RM D16 PM10 horario.horario +Downloaded RM D16 PM25 diario.diario +Downloaded RM D16 PM25 horario.horario +Downloaded RM D16 0001 diario.diario +Downloaded RM D16 0001 horario.horario +Downloaded RM D16 0003 diario.diario +Downloaded RM D16 0003 horario.horario +Downloaded RM D16 0NOX diario.diario +Downloaded RM D16 0NOX horario.horario +Downloaded RM D16 0002 diario.diario +Downloaded RM D16 0002 horario.horario +Downloaded RM D16 0004 diario.diario +Downloaded RM D16 0004 horario.horario +Downloaded RM D16 0008 diario.diario +Downloaded RM D16 0008 horario.horario +RM +Downloaded RM D18 PM10 diario.diario +Downloaded RM D18 PM10 horario.horario +Downloaded RM D18 PM25 diario.diario +Downloaded RM D18 PM25 horario.horario +Downloaded RM D18 0001 diario.diario +Downloaded RM D18 0001 horario.horario +Downloaded RM D18 0003 diario.diario +Downloaded RM D18 0003 horario.horario +Downloaded RM D18 0NOX diario.diario +Downloaded RM D18 0NOX horario.horario +Downloaded RM D18 0002 diario.diario +Downloaded RM D18 0002 horario.horario +Downloaded RM D18 0004 diario.diario +Downloaded RM D18 0004 horario.horario +Downloaded RM D18 0008 diario.diario +Downloaded RM D18 0008 horario.horario +RM +Downloaded RM D17 PM10 diario.diario +Downloaded RM D17 PM10 horario.horario +Downloaded RM D17 PM25 diario.diario +Downloaded RM D17 PM25 horario.horario +Downloaded RM D17 0001 diario.diario +Downloaded RM D17 0001 horario.horario +Downloaded RM D17 0003 diario.diario +Downloaded RM D17 0003 horario.horario +Downloaded RM D17 0NOX diario.diario +Downloaded RM D17 0NOX horario.horario +Downloaded RM D17 0002 diario.diario +Downloaded RM D17 0002 horario.horario +Downloaded RM D17 0004 diario.diario +Downloaded RM D17 0004 horario.horario +Downloaded RM D17 0008 diario.diario +Downloaded RM D17 0008 horario.horario +RM +Downloaded RM D11 PM10 diario.diario +Downloaded RM D11 PM10 horario.horario +Downloaded RM D11 PM25 diario.diario +Downloaded RM D11 PM25 horario.horario +Downloaded RM D11 0001 diario.diario +Downloaded RM D11 0001 horario.horario +Downloaded RM D11 0003 diario.diario +Downloaded RM D11 0003 horario.horario +Downloaded RM D11 0NOX diario.diario +Downloaded RM D11 0NOX horario.horario +Downloaded RM D11 0002 diario.diario +Downloaded RM D11 0002 horario.horario +Downloaded RM D11 0004 diario.diario +Downloaded RM D11 0004 horario.horario +Downloaded RM D11 0008 diario.diario +Downloaded RM D11 0008 horario.horario +RM +Downloaded RM D12 PM10 diario.diario +Downloaded RM D12 PM10 horario.horario +Downloaded RM D12 PM25 diario.diario +Downloaded RM D12 PM25 horario.horario +Downloaded RM D12 0001 diario.diario +Downloaded RM D12 0001 horario.horario +Downloaded RM D12 0003 diario.diario +Downloaded RM D12 0003 horario.horario +Downloaded RM D12 0NOX diario.diario +Downloaded RM D12 0NOX horario.horario +Downloaded RM D12 0002 diario.diario +Downloaded RM D12 0002 horario.horario +Downloaded RM D12 0004 diario.diario +Downloaded RM D12 0004 horario.horario +Downloaded RM D12 0008 diario.diario +Downloaded RM D12 0008 horario.horario +RM +RM +Downloaded RM D13 PM10 diario.diario +Downloaded RM D13 PM10 horario.horario +Downloaded RM D13 PM25 diario.diario +Downloaded RM D13 PM25 horario.horario +Downloaded RM D13 0001 diario.diario +Downloaded RM D13 0001 horario.horario +Downloaded RM D13 0003 diario.diario +Downloaded RM D13 0003 horario.horario +Downloaded RM D13 0NOX diario.diario +Downloaded RM D13 0NOX horario.horario +Downloaded RM D13 0002 diario.diario +Downloaded RM D13 0002 horario.horario +Downloaded RM D13 0004 diario.diario +Downloaded RM D13 0004 horario.horario +Downloaded RM D13 0008 diario.diario +Downloaded RM D13 0008 horario.horario +RM +Downloaded RM D15 PM10 diario.diario +Downloaded RM D15 PM10 horario.horario +Downloaded RM D15 PM25 diario.diario +Downloaded RM D15 PM25 horario.horario +Downloaded RM D15 0001 diario.diario +Downloaded RM D15 0001 horario.horario +Downloaded RM D15 0003 diario.diario +Downloaded RM D15 0003 horario.horario +Downloaded RM D15 0NOX diario.diario +Downloaded RM D15 0NOX horario.horario +Downloaded RM D15 0002 diario.diario +Downloaded RM D15 0002 horario.horario +Downloaded RM D15 0004 diario.diario +Downloaded RM D15 0004 horario.horario +Downloaded RM D15 0008 diario.diario +Downloaded RM D15 0008 horario.horario +RM +Downloaded RM D27 PM10 diario.diario +Downloaded RM D27 PM10 horario.horario +Downloaded RM D27 PM25 diario.diario +Downloaded RM D27 PM25 horario.horario +Downloaded RM D27 0001 diario.diario +Downloaded RM D27 0001 horario.horario +Downloaded RM D27 0003 diario.diario +Downloaded RM D27 0003 horario.horario +Downloaded RM D27 0NOX diario.diario +Downloaded RM D27 0NOX horario.horario +Downloaded RM D27 0002 diario.diario +Downloaded RM D27 0002 horario.horario +Downloaded RM D27 0004 diario.diario +Downloaded RM D27 0004 horario.horario +Downloaded RM D27 0008 diario.diario +Downloaded RM D27 0008 horario.horario +RM +Downloaded RM D30 PM10 diario.diario +Downloaded RM D30 PM10 horario.horario +Downloaded RM D30 PM25 diario.diario +Downloaded RM D30 PM25 horario.horario +RM +Downloaded RM D29 PM10 diario.diario +Downloaded RM D29 PM10 horario.horario +Downloaded RM D29 PM25 diario.diario +Downloaded RM D29 PM25 horario.horario +Downloaded RM D29 0001 diario.diario +Downloaded RM D29 0001 horario.horario +Downloaded RM D29 0003 diario.diario +Downloaded RM D29 0003 horario.horario +Downloaded RM D29 0NOX diario.diario +Downloaded RM D29 0NOX horario.horario +Downloaded RM D29 0002 diario.diario +Downloaded RM D29 0002 horario.horario +Downloaded RM D29 0004 diario.diario +Downloaded RM D29 0004 horario.horario +Downloaded RM D29 0008 diario.diario +Downloaded RM D29 0008 horario.horario +RM +Downloaded RM D14 PM10 diario.diario +Downloaded RM D14 PM10 horario.horario +Downloaded RM D14 PM25 diario.diario +Downloaded RM D14 PM25 horario.horario +Downloaded RM D14 0001 diario.diario +Downloaded RM D14 0001 horario.horario +Downloaded RM D14 0003 diario.diario +Downloaded RM D14 0003 horario.horario +Downloaded RM D14 0NOX diario.diario +Downloaded RM D14 0NOX horario.horario +Downloaded RM D14 0002 diario.diario +Downloaded RM D14 0002 horario.horario +Downloaded RM D14 0004 diario.diario +Downloaded RM D14 0004 horario.horario +Downloaded RM D14 0008 diario.diario +Downloaded RM D14 0008 horario.horario +RM +Downloaded RM D28 0001 diario.diario +Downloaded RM D28 0001 horario.horario +Downloaded RM D28 0003 diario.diario +Downloaded RM D28 0003 horario.horario +Downloaded RM D28 0002 diario.diario +Downloaded RM D28 0002 horario.horario +Downloaded RM D28 0004 diario.diario +Downloaded RM D28 0004 horario.horario +RVI +Downloaded RVI 601 PM10 diario.diario +Downloaded RVI 601 PM10 horario.horario +Downloaded RVI 601 0001 diario.diario +Downloaded RVI 601 0001 horario.horario +Downloaded RVI 601 0003 diario.diario +Downloaded RVI 601 0003 horario.horario +Downloaded RVI 601 0NOX diario.diario +Downloaded RVI 601 0NOX horario.horario +Downloaded RVI 601 0002 diario.diario +Downloaded RVI 601 0002 horario.horario +Downloaded RVI 601 0004 diario.diario +Downloaded RVI 601 0004 horario.horario +Downloaded RVI 601 0008 diario.diario +Downloaded RVI 601 0008 horario.horario +Downloaded RVI 601 0CH4 diario.diario +Downloaded RVI 601 0CH4 horario.horario +Downloaded RVI 601 NMHC diario.diario +Downloaded RVI 601 NMHC horario.horario +Downloaded RVI 601 THCM diario.diario +Downloaded RVI 601 THCM horario.horario +RVI +Downloaded RVI 606 0001 diario.diario +Downloaded RVI 606 0001 horario.horario +RVI +Downloaded RVI 605 0001 diario.diario +Downloaded RVI 605 0001 horario.horario +RVI +Downloaded RVI 604 PM10 diario.diario +Downloaded RVI 604 0001 diario.diario +Downloaded RVI 604 0001 horario.horario +RVI +Downloaded RVI 608 PM10 diario.diario +Downloaded RVI 608 PM10 horario.horario +Downloaded RVI 608 0001 diario.diario +Downloaded RVI 608 0001 horario.horario +RVI +Downloaded RVI 603 PM10 diario.diario +Downloaded RVI 603 PM10 horario.horario +Downloaded RVI 603 0001 diario.diario +Downloaded RVI 603 0001 horario.horario +Downloaded RVI 603 0003 diario.diario +Downloaded RVI 603 0003 horario.horario +Downloaded RVI 603 0NOX diario.diario +Downloaded RVI 603 0NOX horario.horario +Downloaded RVI 603 0002 diario.diario +Downloaded RVI 603 0002 horario.horario +Downloaded RVI 603 0004 diario.diario +Downloaded RVI 603 0004 horario.horario +Downloaded RVI 603 0008 diario.diario +Downloaded RVI 603 0008 horario.horario +Downloaded RVI 603 0CH4 diario.diario +Downloaded RVI 603 0CH4 horario.horario +Downloaded RVI 603 NMHC diario.diario +Downloaded RVI 603 NMHC horario.horario +Downloaded RVI 603 THCM diario.diario +Downloaded RVI 603 THCM horario.horario +RVI +Downloaded RVI 602 PM10 diario.diario +Downloaded RVI 602 PM10 horario.horario +Downloaded RVI 602 0001 diario.diario +Downloaded RVI 602 0001 horario.horario +Downloaded RVI 602 0003 diario.diario +Downloaded RVI 602 0003 horario.horario +Downloaded RVI 602 0NOX diario.diario +Downloaded RVI 602 0NOX horario.horario +Downloaded RVI 602 0002 diario.diario +Downloaded RVI 602 0002 horario.horario +Downloaded RVI 602 0004 diario.diario +Downloaded RVI 602 0004 horario.horario +Downloaded RVI 602 0008 diario.diario +Downloaded RVI 602 0008 horario.horario +Downloaded RVI 602 0CH4 diario.diario +Downloaded RVI 602 0CH4 horario.horario +Downloaded RVI 602 NMHC diario.diario +Downloaded RVI 602 NMHC horario.horario +Downloaded RVI 602 THCM diario.diario +Downloaded RVI 602 THCM horario.horario +RVI +Downloaded RVI 609 PM10 diario.diario +Downloaded RVI 609 PM10 horario.horario +Downloaded RVI 609 PM25 diario.diario +Downloaded RVI 609 PM25 horario.horario +Downloaded RVI 609 0001 diario.diario +Downloaded RVI 609 0001 horario.horario +Downloaded RVI 609 0003 diario.diario +Downloaded RVI 609 0003 horario.horario +Downloaded RVI 609 0NOX diario.diario +Downloaded RVI 609 0NOX horario.horario +Downloaded RVI 609 0002 diario.diario +Downloaded RVI 609 0002 horario.horario +Downloaded RVI 609 0004 diario.diario +Downloaded RVI 609 0004 horario.horario +Downloaded RVI 609 0008 diario.diario +Downloaded RVI 609 0008 horario.horario +RVI +Downloaded RVI 615 PM10 diario.diario +Downloaded RVI 615 PM10 horario.horario +Downloaded RVI 615 PM25 diario.diario +Downloaded RVI 615 PM25 horario.horario +RVI +Downloaded RVI 611 PM10 diario.diario +Downloaded RVI 611 PM10 horario.horario +Downloaded RVI 611 PM25 diario.diario +Downloaded RVI 611 PM25 horario.horario +Downloaded RVI 611 0008 diario.diario +Downloaded RVI 611 0008 horario.horario +RVI +Downloaded RVI 613 PM10 diario.diario +Downloaded RVI 613 PM10 horario.horario +Downloaded RVI 613 0001 diario.diario +Downloaded RVI 613 0001 horario.horario +Downloaded RVI 613 0003 diario.diario +Downloaded RVI 613 0003 horario.horario +Downloaded RVI 613 0NOX diario.diario +Downloaded RVI 613 0NOX horario.horario +Downloaded RVI 613 0002 diario.diario +Downloaded RVI 613 0002 horario.horario +Downloaded RVI 613 0004 diario.diario +Downloaded RVI 613 0004 horario.horario +Downloaded RVI 613 0008 diario.diario +Downloaded RVI 613 0008 horario.horario +RVI +Downloaded RVI 614 PM10 diario.diario +Downloaded RVI 614 PM10 horario.horario +Downloaded RVI 614 0001 diario.diario +Downloaded RVI 614 0001 horario.horario +Downloaded RVI 614 0003 diario.diario +Downloaded RVI 614 0003 horario.horario +Downloaded RVI 614 0004 diario.diario +Downloaded RVI 614 0004 horario.horario +Downloaded RVI 614 0008 diario.diario +Downloaded RVI 614 0008 horario.horario +RVI +Downloaded RVI 612 PM10 diario.diario +Downloaded RVI 612 PM10 horario.horario +Downloaded RVI 612 PM25 diario.diario +Downloaded RVI 612 PM25 horario.horario +Downloaded RVI 612 0008 diario.diario +Downloaded RVI 612 0008 horario.horario +RVII +Downloaded RVII 714 PM10 diario.diario +Downloaded RVII 714 PM10 horario.horario +Downloaded RVII 714 PM25 diario.diario +Downloaded RVII 714 PM25 horario.horario +RVII +Downloaded RVII 709 PM10 diario.diario +Downloaded RVII 709 PM10 horario.horario +Downloaded RVII 709 PM25 diario.diario +Downloaded RVII 709 PM25 horario.horario +RVII +Downloaded RVII 706 PM10 diario.diario +Downloaded RVII 706 PM25 diario.diario +RVII +Downloaded RVII 713 PM25 diario.diario +Downloaded RVII 713 PM25 horario.horario +RVII +Downloaded RVII 703 PM10 diario.diario +Downloaded RVII 703 PM10 horario.horario +Downloaded RVII 703 PM25 diario.diario +Downloaded RVII 703 PM25 horario.horario +Downloaded RVII 703 0001 diario.diario +Downloaded RVII 703 0001 horario.horario +Downloaded RVII 703 0003 diario.diario +Downloaded RVII 703 0003 horario.horario +Downloaded RVII 703 0NOX diario.diario +Downloaded RVII 703 0NOX horario.horario +Downloaded RVII 703 0002 diario.diario +Downloaded RVII 703 0002 horario.horario +Downloaded RVII 703 0004 diario.diario +Downloaded RVII 703 0004 horario.horario +Downloaded RVII 703 0008 diario.diario +Downloaded RVII 703 0008 horario.horario +RVII +Downloaded RVII 710 PM10 diario.diario +Downloaded RVII 710 PM10 horario.horario +Downloaded RVII 710 PM25 diario.diario +Downloaded RVII 710 PM25 horario.horario +RVII +Downloaded RVII 711 PM10 diario.diario +Downloaded RVII 711 PM10 horario.horario +Downloaded RVII 711 PM25 diario.diario +Downloaded RVII 711 PM25 horario.horario +RVII +Downloaded RVII 704 PM10 diario.diario +Downloaded RVII 704 PM10 horario.horario +Downloaded RVII 704 0001 diario.diario +Downloaded RVII 704 0001 horario.horario +Downloaded RVII 704 0003 diario.diario +Downloaded RVII 704 0003 horario.horario +Downloaded RVII 704 0NOX diario.diario +Downloaded RVII 704 0NOX horario.horario +Downloaded RVII 704 0002 diario.diario +Downloaded RVII 704 0002 horario.horario +Downloaded RVII 704 0004 diario.diario +Downloaded RVII 704 0004 horario.horario +RVII +Downloaded RVII 705 0001 diario.diario +Downloaded RVII 705 0001 horario.horario +Downloaded RVII 705 0003 diario.diario +Downloaded RVII 705 0003 horario.horario +Downloaded RVII 705 0004 diario.diario +Downloaded RVII 705 0004 horario.horario +Downloaded RVII 705 0008 diario.diario +Downloaded RVII 705 0008 horario.horario +RVIII +Downloaded RVIII 810 PM10 diario.diario +Downloaded RVIII 810 PM10 horario.horario +Downloaded RVIII 810 PM25 diario.diario +Downloaded RVIII 810 PM25 horario.horario +Downloaded RVIII 810 0004 diario.diario +Downloaded RVIII 810 0004 horario.horario +RVIII +Downloaded RVIII 873 PM10 diario.diario +Downloaded RVIII 873 PM10 horario.horario +Downloaded RVIII 873 PM25 diario.diario +Downloaded RVIII 873 PM25 horario.horario +RVIII +Downloaded RVIII 871 0001 diario.diario +Downloaded RVIII 871 0001 horario.horario +RVIII +Downloaded RVIII 850 0001 diario.diario +Downloaded RVIII 850 0001 horario.horario +Downloaded RVIII 850 0003 diario.diario +Downloaded RVIII 850 0003 horario.horario +Downloaded RVIII 850 0004 diario.diario +Downloaded RVIII 850 0004 horario.horario +Downloaded RVIII 850 0008 diario.diario +Downloaded RVIII 850 0008 horario.horario +RVIII +Downloaded RVIII 846 PM10 diario.diario +Downloaded RVIII 846 PM10 horario.horario +Downloaded RVIII 846 0001 diario.diario +Downloaded RVIII 846 0001 horario.horario +Downloaded RVIII 846 0003 diario.diario +Downloaded RVIII 846 0003 horario.horario +Downloaded RVIII 846 0004 diario.diario +Downloaded RVIII 846 0004 horario.horario +Downloaded RVIII 846 0008 diario.diario +Downloaded RVIII 846 0008 horario.horario +RVIII +Downloaded RVIII 884 PM25 diario.diario +Downloaded RVIII 884 PM25 horario.horario +RVIII +Downloaded RVIII 876 PM10 diario.diario +Downloaded RVIII 876 PM10 horario.horario +Downloaded RVIII 876 0001 diario.diario +Downloaded RVIII 876 0001 horario.horario +Downloaded RVIII 876 0003 diario.diario +Downloaded RVIII 876 0003 horario.horario +Downloaded RVIII 876 0NOX diario.diario +Downloaded RVIII 876 0NOX horario.horario +Downloaded RVIII 876 0002 diario.diario +Downloaded RVIII 876 0002 horario.horario +Downloaded RVIII 876 0004 diario.diario +Downloaded RVIII 876 0004 horario.horario +Downloaded RVIII 876 0008 diario.diario +Downloaded RVIII 876 0008 horario.horario +Downloaded RVIII 876 0CH4 diario.diario +Downloaded RVIII 876 0CH4 horario.horario +Downloaded RVIII 876 NMHC diario.diario +Downloaded RVIII 876 NMHC horario.horario +Downloaded RVIII 876 THCM diario.diario +Downloaded RVIII 876 THCM horario.horario +RVIII +Downloaded RVIII 854 PM10 diario.diario +Downloaded RVIII 854 PM10 horario.horario +Downloaded RVIII 854 PM25 diario.diario +Downloaded RVIII 854 PM25 horario.horario +Downloaded RVIII 854 0001 diario.diario +Downloaded RVIII 854 0001 horario.horario +Downloaded RVIII 854 0003 diario.diario +Downloaded RVIII 854 0003 horario.horario +Downloaded RVIII 854 0NOX diario.diario +Downloaded RVIII 854 0NOX horario.horario +Downloaded RVIII 854 0002 diario.diario +Downloaded RVIII 854 0002 horario.horario +RVIII +Downloaded RVIII 833 PM10 diario.diario +Downloaded RVIII 833 PM10 horario.horario +Downloaded RVIII 833 PM25 diario.diario +Downloaded RVIII 833 PM25 horario.horario +RVIII +Downloaded RVIII 827 PM10 diario.diario +Downloaded RVIII 827 PM10 horario.horario +Downloaded RVIII 827 PM25 diario.diario +Downloaded RVIII 827 PM25 horario.horario +Downloaded RVIII 827 0001 diario.diario +Downloaded RVIII 827 0001 horario.horario +Downloaded RVIII 827 0003 diario.diario +Downloaded RVIII 827 0003 horario.horario +Downloaded RVIII 827 0NOX diario.diario +Downloaded RVIII 827 0NOX horario.horario +Downloaded RVIII 827 0002 diario.diario +Downloaded RVIII 827 0002 horario.horario +Downloaded RVIII 827 0004 diario.diario +Downloaded RVIII 827 0004 horario.horario +Downloaded RVIII 827 0008 diario.diario +Downloaded RVIII 827 0008 horario.horario +RVIII +Downloaded RVIII 831 PM10 diario.diario +Downloaded RVIII 831 PM10 horario.horario +Downloaded RVIII 831 PM25 diario.diario +Downloaded RVIII 831 PM25 horario.horario +Downloaded RVIII 831 0001 diario.diario +Downloaded RVIII 831 0001 horario.horario +RVIII +Downloaded RVIII 809 0001 diario.diario +Downloaded RVIII 809 0001 horario.horario +RVIII +Downloaded RVIII 878 PM10 diario.diario +Downloaded RVIII 878 PM10 horario.horario +Downloaded RVIII 878 PM25 diario.diario +Downloaded RVIII 878 PM25 horario.horario +Downloaded RVIII 878 0001 diario.diario +Downloaded RVIII 878 0001 horario.horario +Downloaded RVIII 878 0003 diario.diario +Downloaded RVIII 878 0003 horario.horario +Downloaded RVIII 878 0NOX diario.diario +Downloaded RVIII 878 0NOX horario.horario +Downloaded RVIII 878 0002 diario.diario +Downloaded RVIII 878 0002 horario.horario +Downloaded RVIII 878 0004 diario.diario +Downloaded RVIII 878 0004 horario.horario +Downloaded RVIII 878 0008 diario.diario +Downloaded RVIII 878 0008 horario.horario +RVIII +Downloaded RVIII 816 PM10 diario.diario +Downloaded RVIII 816 PM10 horario.horario +Downloaded RVIII 816 0001 diario.diario +Downloaded RVIII 816 0001 horario.horario +Downloaded RVIII 816 0003 diario.diario +Downloaded RVIII 816 0003 horario.horario +Downloaded RVIII 816 0NOX diario.diario +Downloaded RVIII 816 0NOX horario.horario +Downloaded RVIII 816 0002 diario.diario +Downloaded RVIII 816 0002 horario.horario +Downloaded RVIII 816 0004 diario.diario +Downloaded RVIII 816 0004 horario.horario +Downloaded RVIII 816 0008 diario.diario +Downloaded RVIII 816 0008 horario.horario +Downloaded RVIII 816 0CH4 diario.diario +Downloaded RVIII 816 0CH4 horario.horario +Downloaded RVIII 816 NMHC diario.diario +Downloaded RVIII 816 NMHC horario.horario +Downloaded RVIII 816 THCM diario.diario +Downloaded RVIII 816 THCM horario.horario +RVIII +Downloaded RVIII 880 PM10 diario.diario +Downloaded RVIII 880 PM10 horario.horario +Downloaded RVIII 880 PM25 diario.diario +Downloaded RVIII 880 PM25 horario.horario +Downloaded RVIII 880 0001 diario.diario +Downloaded RVIII 880 0001 horario.horario +Downloaded RVIII 880 0003 diario.diario +Downloaded RVIII 880 0003 horario.horario +Downloaded RVIII 880 0NOX diario.diario +Downloaded RVIII 880 0NOX horario.horario +Downloaded RVIII 880 0002 diario.diario +Downloaded RVIII 880 0002 horario.horario +Downloaded RVIII 880 0004 diario.diario +Downloaded RVIII 880 0004 horario.horario +Downloaded RVIII 880 0008 diario.diario +Downloaded RVIII 880 0008 horario.horario +RVIII +Downloaded RVIII 881 PM10 diario.diario +Downloaded RVIII 881 PM10 horario.horario +Downloaded RVIII 881 PM25 diario.diario +Downloaded RVIII 881 PM25 horario.horario +RVIII +Downloaded RVIII 879 PM10 diario.diario +Downloaded RVIII 879 PM10 horario.horario +Downloaded RVIII 879 PM25 diario.diario +Downloaded RVIII 879 PM25 horario.horario +Downloaded RVIII 879 0001 diario.diario +Downloaded RVIII 879 0001 horario.horario +Downloaded RVIII 879 0003 diario.diario +Downloaded RVIII 879 0003 horario.horario +Downloaded RVIII 879 0NOX diario.diario +Downloaded RVIII 879 0NOX horario.horario +Downloaded RVIII 879 0002 diario.diario +Downloaded RVIII 879 0002 horario.horario +Downloaded RVIII 879 0004 diario.diario +Downloaded RVIII 879 0004 horario.horario +Downloaded RVIII 879 0008 diario.diario +Downloaded RVIII 879 0008 horario.horario +RVIII +Downloaded RVIII 859 PM10 diario.diario +Downloaded RVIII 859 PM10 horario.horario +Downloaded RVIII 859 PM25 diario.diario +Downloaded RVIII 859 PM25 horario.horario +Downloaded RVIII 859 0001 diario.diario +Downloaded RVIII 859 0001 horario.horario +Downloaded RVIII 859 0003 diario.diario +Downloaded RVIII 859 0003 horario.horario +Downloaded RVIII 859 0NOX diario.diario +Downloaded RVIII 859 0NOX horario.horario +Downloaded RVIII 859 0002 diario.diario +Downloaded RVIII 859 0002 horario.horario +Downloaded RVIII 859 0004 diario.diario +Downloaded RVIII 859 0004 horario.horario +Downloaded RVIII 859 0008 diario.diario +Downloaded RVIII 859 0008 horario.horario +RVIII +Downloaded RVIII 860 PM10 diario.diario +Downloaded RVIII 860 PM10 horario.horario +Downloaded RVIII 860 PM25 diario.diario +Downloaded RVIII 860 PM25 horario.horario +Downloaded RVIII 860 0001 diario.diario +Downloaded RVIII 860 0001 horario.horario +Downloaded RVIII 860 0003 diario.diario +Downloaded RVIII 860 0003 horario.horario +Downloaded RVIII 860 0NOX diario.diario +Downloaded RVIII 860 0NOX horario.horario +Downloaded RVIII 860 0002 diario.diario +Downloaded RVIII 860 0002 horario.horario +Downloaded RVIII 860 0004 diario.diario +Downloaded RVIII 860 0004 horario.horario +Downloaded RVIII 860 0008 diario.diario +Downloaded RVIII 860 0008 horario.horario +RVIII +Downloaded RVIII 832 PM10 diario.diario +Downloaded RVIII 832 PM25 diario.diario +Downloaded RVIII 832 PM25 horario.horario +Downloaded RVIII 832 0001 diario.diario +Downloaded RVIII 832 0001 horario.horario +RVIII +Downloaded RVIII 805 PM10 diario.diario +Downloaded RVIII 805 PM10 horario.horario +Downloaded RVIII 805 PM25 diario.diario +Downloaded RVIII 805 PM25 horario.horario +Downloaded RVIII 805 0001 diario.diario +Downloaded RVIII 805 0001 horario.horario +RVIII +Downloaded RVIII 838 PM10 diario.diario +Downloaded RVIII 838 PM10 horario.horario +Downloaded RVIII 838 PM25 diario.diario +Downloaded RVIII 838 PM25 horario.horario +Downloaded RVIII 838 0001 diario.diario +Downloaded RVIII 838 0001 horario.horario +Downloaded RVIII 838 0003 diario.diario +Downloaded RVIII 838 0003 horario.horario +Downloaded RVIII 838 0004 diario.diario +Downloaded RVIII 838 0004 horario.horario +Downloaded RVIII 838 0008 diario.diario +Downloaded RVIII 838 0008 horario.horario +RVIII +Downloaded RVIII 804 PM10 diario.diario +Downloaded RVIII 804 PM10 horario.horario +Downloaded RVIII 804 PM25 diario.diario +Downloaded RVIII 804 PM25 horario.horario +Downloaded RVIII 804 0001 diario.diario +Downloaded RVIII 804 0001 horario.horario +Downloaded RVIII 804 0003 diario.diario +Downloaded RVIII 804 0003 horario.horario +Downloaded RVIII 804 0004 diario.diario +Downloaded RVIII 804 0004 horario.horario +Downloaded RVIII 804 0008 diario.diario +Downloaded RVIII 804 0008 horario.horario +RVIII +Downloaded RVIII 841 PM10 diario.diario +Downloaded RVIII 841 PM10 horario.horario +Downloaded RVIII 841 PM25 diario.diario +Downloaded RVIII 841 PM25 horario.horario +Downloaded RVIII 841 0001 diario.diario +Downloaded RVIII 841 0001 horario.horario +Downloaded RVIII 841 0003 diario.diario +Downloaded RVIII 841 0003 horario.horario +Downloaded RVIII 841 0NOX diario.diario +Downloaded RVIII 841 0NOX horario.horario +Downloaded RVIII 841 0002 diario.diario +Downloaded RVIII 841 0002 horario.horario +Downloaded RVIII 841 0008 diario.diario +Downloaded RVIII 841 0008 horario.horario +RVIII +Downloaded RVIII 826 PM10 diario.diario +Downloaded RVIII 826 PM10 horario.horario +Downloaded RVIII 826 PM25 diario.diario +Downloaded RVIII 826 PM25 horario.horario +Downloaded RVIII 826 0001 diario.diario +Downloaded RVIII 826 0001 horario.horario +Downloaded RVIII 826 0003 diario.diario +Downloaded RVIII 826 0003 horario.horario +Downloaded RVIII 826 0002 diario.diario +Downloaded RVIII 826 0002 horario.horario +Downloaded RVIII 826 0004 diario.diario +Downloaded RVIII 826 0004 horario.horario +Downloaded RVIII 826 0008 diario.diario +Downloaded RVIII 826 0008 horario.horario +RVIII +Downloaded RVIII 875 PM10 diario.diario +Downloaded RVIII 875 PM10 horario.horario +Downloaded RVIII 875 PM25 diario.diario +Downloaded RVIII 875 PM25 horario.horario +RVIII +Downloaded RVIII 874 PM10 diario.diario +Downloaded RVIII 874 PM10 horario.horario +Downloaded RVIII 874 PM25 diario.diario +Downloaded RVIII 874 PM25 horario.horario +RVIII +Downloaded RVIII 836 PM10 diario.diario +Downloaded RVIII 836 PM10 horario.horario +RVIII +Downloaded RVIII 818 PM10 diario.diario +Downloaded RVIII 818 PM10 horario.horario +Downloaded RVIII 818 PM25 diario.diario +Downloaded RVIII 818 PM25 horario.horario +Downloaded RVIII 818 0001 diario.diario +Downloaded RVIII 818 0001 horario.horario +Downloaded RVIII 818 0003 diario.diario +Downloaded RVIII 818 0003 horario.horario +Downloaded RVIII 818 0002 diario.diario +Downloaded RVIII 818 0002 horario.horario +Downloaded RVIII 818 0004 diario.diario +Downloaded RVIII 818 0004 horario.horario +Downloaded RVIII 818 0008 diario.diario +Downloaded RVIII 818 0008 horario.horario +RVIII +Downloaded RVIII 852 PM10 diario.diario +Downloaded RVIII 852 PM10 horario.horario +RVIII +Downloaded RVIII 870 PM10 diario.diario +Downloaded RVIII 870 PM10 horario.horario +Downloaded RVIII 870 PM25 diario.diario +Downloaded RVIII 870 PM25 horario.horario +Downloaded RVIII 870 0001 diario.diario +Downloaded RVIII 870 0001 horario.horario +Downloaded RVIII 870 0003 diario.diario +Downloaded RVIII 870 0003 horario.horario +Downloaded RVIII 870 0002 diario.diario +Downloaded RVIII 870 0002 horario.horario +Downloaded RVIII 870 0004 diario.diario +Downloaded RVIII 870 0004 horario.horario +Downloaded RVIII 870 0008 diario.diario +Downloaded RVIII 870 0008 horario.horario +RVIII +Downloaded RVIII 819 PM10 diario.diario +Downloaded RVIII 819 PM10 horario.horario +Downloaded RVIII 819 0001 diario.diario +Downloaded RVIII 819 0001 horario.horario +RVIII +Downloaded RVIII 802 PM10 diario.diario +Downloaded RVIII 802 PM10 horario.horario +Downloaded RVIII 802 PM25 diario.diario +Downloaded RVIII 802 PM25 horario.horario +Downloaded RVIII 802 0001 diario.diario +Downloaded RVIII 802 0001 horario.horario +Downloaded RVIII 802 0003 diario.diario +Downloaded RVIII 802 0003 horario.horario +Downloaded RVIII 802 0NOX diario.diario +Downloaded RVIII 802 0NOX horario.horario +Downloaded RVIII 802 0002 diario.diario +Downloaded RVIII 802 0002 horario.horario +RVIII +Downloaded RVIII 803 PM10 diario.diario +Downloaded RVIII 803 PM25 diario.diario +RVIII +Downloaded RVIII 801 0001 diario.diario +Downloaded RVIII 801 0001 horario.horario +RVIII +Downloaded RVIII 807 PM10 diario.diario +Downloaded RVIII 807 PM10 horario.horario +Downloaded RVIII 807 PM25 diario.diario +Downloaded RVIII 807 PM25 horario.horario +Downloaded RVIII 807 0001 diario.diario +Downloaded RVIII 807 0001 horario.horario +Downloaded RVIII 807 0003 diario.diario +Downloaded RVIII 807 0003 horario.horario +Downloaded RVIII 807 0004 diario.diario +Downloaded RVIII 807 0004 horario.horario +Downloaded RVIII 807 0008 diario.diario +Downloaded RVIII 807 0008 horario.horario +RVIII +Downloaded RVIII 806 PM10 diario.diario +Downloaded RVIII 806 PM10 horario.horario +Downloaded RVIII 806 PM25 diario.diario +Downloaded RVIII 806 PM25 horario.horario +Downloaded RVIII 806 0001 diario.diario +Downloaded RVIII 806 0001 horario.horario +RVIII +Downloaded RVIII 837 PM10 diario.diario +Downloaded RVIII 837 PM10 horario.horario +Downloaded RVIII 837 PM25 diario.diario +Downloaded RVIII 837 PM25 horario.horario +Downloaded RVIII 837 0001 diario.diario +Downloaded RVIII 837 0001 horario.horario +Downloaded RVIII 837 0003 diario.diario +Downloaded RVIII 837 0003 horario.horario +Downloaded RVIII 837 0NOX diario.diario +Downloaded RVIII 837 0NOX horario.horario +Downloaded RVIII 837 0002 diario.diario +Downloaded RVIII 837 0002 horario.horario +Downloaded RVIII 837 0004 diario.diario +Downloaded RVIII 837 0004 horario.horario +Downloaded RVIII 837 0008 diario.diario +Downloaded RVIII 837 0008 horario.horario +Downloaded RVIII 837 0CH4 diario.diario +Downloaded RVIII 837 0CH4 horario.horario +Downloaded RVIII 837 THCM diario.diario +Downloaded RVIII 837 THCM horario.horario +RVIII +Downloaded RVIII 830 PM10 diario.diario +Downloaded RVIII 830 PM10 horario.horario +Downloaded RVIII 830 PM25 diario.diario +Downloaded RVIII 830 PM25 horario.horario +Downloaded RVIII 830 0001 diario.diario +Downloaded RVIII 830 0001 horario.horario +Downloaded RVIII 830 0003 diario.diario +Downloaded RVIII 830 0003 horario.horario +Downloaded RVIII 830 0NOX diario.diario +Downloaded RVIII 830 0NOX horario.horario +Downloaded RVIII 830 0002 diario.diario +Downloaded RVIII 830 0002 horario.horario +Downloaded RVIII 830 0008 diario.diario +Downloaded RVIII 830 0008 horario.horario +RIX +Downloaded RIX 902 PM10 diario.diario +Downloaded RIX 902 PM10 horario.horario +Downloaded RIX 902 PM25 diario.diario +Downloaded RIX 902 PM25 horario.horario +Downloaded RIX 902 0003 diario.diario +Downloaded RIX 902 0003 horario.horario +Downloaded RIX 902 0NOX diario.diario +Downloaded RIX 902 0NOX horario.horario +Downloaded RIX 902 0002 diario.diario +Downloaded RIX 902 0002 horario.horario +Downloaded RIX 902 0004 diario.diario +Downloaded RIX 902 0004 horario.horario +RIX +Downloaded RIX 903 PM10 diario.diario +Downloaded RIX 903 PM10 horario.horario +RIX +Downloaded RIX 901 PM10 diario.diario +Downloaded RIX 901 PM10 horario.horario +Downloaded RIX 901 PM25 diario.diario +Downloaded RIX 901 PM25 horario.horario +Downloaded RIX 901 0001 diario.diario +Downloaded RIX 901 0001 horario.horario +Downloaded RIX 901 0003 diario.diario +Downloaded RIX 901 0003 horario.horario +Downloaded RIX 901 0NOX diario.diario +Downloaded RIX 901 0NOX horario.horario +Downloaded RIX 901 0002 diario.diario +Downloaded RIX 901 0002 horario.horario +Downloaded RIX 901 0004 diario.diario +Downloaded RIX 901 0004 horario.horario +Downloaded RIX 901 0008 diario.diario +Downloaded RIX 901 0008 horario.horario +RIX +Downloaded RIX 905 PM10 diario.diario +Downloaded RIX 905 PM10 horario.horario +Downloaded RIX 905 PM25 diario.diario +Downloaded RIX 905 PM25 horario.horario +RIX +Downloaded RIX 904 PM10 diario.diario +Downloaded RIX 904 PM10 horario.horario +Downloaded RIX 904 PM25 diario.diario +Downloaded RIX 904 PM25 horario.horario +RIX +Downloaded RIX 906 PM25 diario.diario +Downloaded RIX 906 PM25 horario.horario +RXIV +Downloaded RXIV E06 PM10 diario.diario +Downloaded RXIV E06 PM10 horario.horario +Downloaded RXIV E06 PM25 diario.diario +Downloaded RXIV E06 PM25 horario.horario +Downloaded RXIV E06 0001 diario.diario +Downloaded RXIV E06 0001 horario.horario +Downloaded RXIV E06 0003 diario.diario +Downloaded RXIV E06 0003 horario.horario +Downloaded RXIV E06 0004 diario.diario +Downloaded RXIV E06 0004 horario.horario +RXIV +Downloaded RXIV E04 PM25 diario.diario +Downloaded RXIV E04 PM25 horario.horario +RXIV +Downloaded RXIV E01 PM10 diario.diario +Downloaded RXIV E01 PM10 horario.horario +Downloaded RXIV E01 0001 diario.diario +Downloaded RXIV E01 0001 horario.horario +Downloaded RXIV E01 0003 diario.diario +Downloaded RXIV E01 0003 horario.horario +Downloaded RXIV E01 0NOX diario.diario +Downloaded RXIV E01 0NOX horario.horario +Downloaded RXIV E01 0002 diario.diario +Downloaded RXIV E01 0002 horario.horario +Downloaded RXIV E01 0004 diario.diario +Downloaded RXIV E01 0004 horario.horario +Downloaded RXIV E01 0008 diario.diario +Downloaded RXIV E01 0008 horario.horario +RXIV +Downloaded RXIV E05 PM10 diario.diario +Downloaded RXIV E05 0001 diario.diario +Downloaded RXIV E05 0003 diario.diario +Downloaded RXIV E05 0NOX diario.diario +Downloaded RXIV E05 0002 diario.diario +Downloaded RXIV E05 0004 diario.diario +Downloaded RXIV E05 0008 diario.diario +RXIV +Downloaded RXIV E02 PM10 diario.diario +Downloaded RXIV E02 0001 diario.diario +Downloaded RXIV E02 0003 diario.diario +Downloaded RXIV E02 0NOX diario.diario +Downloaded RXIV E02 0002 diario.diario +Downloaded RXIV E02 0004 diario.diario +Downloaded RXIV E02 0008 diario.diario +RXIV +Downloaded RXIV E03 PM10 diario.diario +Downloaded RXIV E03 PM10 horario.horario +Downloaded RXIV E03 PM25 diario.diario +Downloaded RXIV E03 PM25 horario.horario +Downloaded RXIV E03 0001 diario.diario +Downloaded RXIV E03 0001 horario.horario +Downloaded RXIV E03 0003 diario.diario +Downloaded RXIV E03 0003 horario.horario +Downloaded RXIV E03 0004 diario.diario +Downloaded RXIV E03 0004 horario.horario +Downloaded RXIV E03 0008 diario.diario +Downloaded RXIV E03 0008 horario.horario +RXIV +Downloaded RXIV E08 PM10 diario.diario +Downloaded RXIV E08 PM10 horario.horario +Downloaded RXIV E08 PM25 diario.diario +Downloaded RXIV E08 PM25 horario.horario +RX +Downloaded RX A01 PM10 diario.diario +Downloaded RX A01 PM10 horario.horario +Downloaded RX A01 PM25 diario.diario +Downloaded RX A01 PM25 horario.horario +RX +Downloaded RX AA2 PM25 diario.diario +Downloaded RX AA2 PM25 horario.horario +RX +Downloaded RX A04 PM10 diario.diario +Downloaded RX A04 PM10 horario.horario +Downloaded RX A04 PM25 diario.diario +Downloaded RX A04 PM25 horario.horario +Downloaded RX A04 0001 diario.diario +Downloaded RX A04 0001 horario.horario +Downloaded RX A04 0003 diario.diario +Downloaded RX A04 0003 horario.horario +Downloaded RX A04 0004 diario.diario +Downloaded RX A04 0004 horario.horario +RX +Downloaded RX A08 PM25 diario.diario +Downloaded RX A08 PM25 horario.horario +RX +Downloaded RX A07 PM10 diario.diario +Downloaded RX A07 PM10 horario.horario +Downloaded RX A07 PM25 diario.diario +Downloaded RX A07 PM25 horario.horario +RX +Downloaded RX A02 PM10 diario.diario +Downloaded RX A02 0001 diario.diario +Downloaded RX A02 0001 horario.horario +Downloaded RX A02 0003 diario.diario +Downloaded RX A02 0003 horario.horario +Downloaded RX A02 0004 diario.diario +Downloaded RX A02 0004 horario.horario +Downloaded RX A02 0008 diario.diario +Downloaded RX A02 0008 horario.horario +RX +Downloaded RX A03 PM10 diario.diario +Downloaded RX A03 0001 diario.diario +Downloaded RX A03 0001 horario.horario +Downloaded RX A03 0003 diario.diario +Downloaded RX A03 0003 horario.horario +Downloaded RX A03 0004 diario.diario +Downloaded RX A03 0004 horario.horario +Downloaded RX A03 0008 diario.diario +Downloaded RX A03 0008 horario.horario +RX +Downloaded RX A09 PM10 diario.diario +Downloaded RX A09 PM10 horario.horario +Downloaded RX A09 PM25 diario.diario +Downloaded RX A09 PM25 horario.horario +RXI +Downloaded RXI B05 PM25 diario.diario +Downloaded RXI B05 PM25 horario.horario +RXI +Downloaded RXI B06 PM25 diario.diario +Downloaded RXI B06 PM25 horario.horario +RXI +Downloaded RXI B03 PM10 diario.diario +Downloaded RXI B03 PM10 horario.horario +Downloaded RXI B03 PM25 diario.diario +Downloaded RXI B03 PM25 horario.horario +RXI +Downloaded RXI B04 PM10 diario.diario +Downloaded RXI B04 PM10 horario.horario +Downloaded RXI B04 PM25 diario.diario +Downloaded RXI B04 PM25 horario.horario +Downloaded RXI B04 0001 diario.diario +Downloaded RXI B04 0001 horario.horario +Downloaded RXI B04 0003 diario.diario +Downloaded RXI B04 0003 horario.horario +Downloaded RXI B04 0NOX diario.diario +Downloaded RXI B04 0NOX horario.horario +Downloaded RXI B04 0002 diario.diario +Downloaded RXI B04 0002 horario.horario +Downloaded RXI B04 0004 diario.diario +Downloaded RXI B04 0004 horario.horario +Downloaded RXI B04 0008 diario.diario +Downloaded RXI B04 0008 horario.horario +RXII +Downloaded RXII C05 PM25 diario.diario +Downloaded RXII C05 PM25 horario.horario +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) + +real 285m10,027s +user 1m40,176s +sys 0m45,613s diff --git a/download_scripts/log_files/nohup_EANET_CAPMoN.out b/download_scripts/log_files/nohup_EANET_CAPMoN.out new file mode 100644 index 0000000000000000000000000000000000000000..456158cc7b2020dac6f21ff57c2fc09262c51823 --- /dev/null +++ b/download_scripts/log_files/nohup_EANET_CAPMoN.out @@ -0,0 +1,105 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +Started downloading data of EANET +Started downloading data of CAPMoN +['1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1980.csv +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1981.csv +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1982.csv +No ozone l data found, error 404 + +['Cambodia', 'China', 'Indonesia', 'Japan', 'Korea, Republic of', "Lao People's Democratic Republic", 'Malaysia', 'Mongolia', 'Myanmar', 'Philippines', 'Russia', 'Thailand', 'Viet Nam'] +['CAMBODIA', 'CHINA', 'INDONESIA', 'JAPAN', 'SOUTH_KOREA', 'LAOS', 'MALAYSIA', 'MONGOLIA', 'MYANMAR', 'PHILIPPINES', 'RUSSIA', 'THAILAND', 'VIETNAM'] +successfully selected Cambodia +Cambodia download successful +successfully selected China +China download successful +successfully selected Indonesia +Indonesia download successful +successfully selected Japan +Japan download successful +successfully selected Korea, Republic of +Korea, Republic of download successful +successfully selected Lao People's Democratic Republic +Lao People's Democratic Republic download successful +successfully selected Malaysia +Malaysia download successful +successfully selected Mongolia +Mongolia download successful +successfully selected Myanmar +Myanmar download successful +successfully selected Philippines +Philippines download successful +successfully selected Russia +Russia download successful +successfully selected Thailand +Thailand download successful +successfully selected Viet Nam +Viet Nam download successful +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 279291 +multiprocessing.pool.RemoteTraceback: +""" +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/CAPMoN_download.py", line 84, in download_data + with open(download_location_wetdep+"precip/major-ions/"+os.path.basename(baseurl_ions.format(year)), 'wb') as outfile: +FileNotFoundError: [Errno 2] No such file or directory: '/esarchive/obs/ghost/CAPMoN/original_files/1.6/precip/major-ions/precip/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1983.csv' + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 125, in worker + result = (True, func(*args, **kwds)) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 51, in starmapstar + return list(itertools.starmap(args[0], args[1])) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 61, in download_network + res = '{} data unsuccessful -- total: {} min +++ download: {} min +++ rsync: {} min \n'.format(network, total_dl_time, dl_time, rsync_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' +UnboundLocalError: local variable 'dl_time' referenced before assignment +""" + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 162, in + pool.starmap(download_network, zip(networks, itertools.repeat(dlconfig.dl_data), itertools.repeat(dlconfig.dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode), itertools.repeat(start_date), itertools.repeat(stop_date), itertools.repeat(dlconfig.root), itertools.repeat(q))) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 372, in starmap + return self._map_async(func, iterable, starmapstar, chunksize).get() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 771, in get + raise self._value +UnboundLocalError: local variable 'dl_time' referenced before assignment +Process Process-4: +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap + self.run() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 108, in run + self._target(*self._args, **self._kwargs) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 108, in writer + message = q.get() + File "", line 2, in get + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/managers.py", line 809, in _callmethod + kind, result = conn.recv() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 255, in recv + buf = self._recv_bytes() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 419, in _recv_bytes + buf = self._recv(4) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 388, in _recv + raise EOFError +EOFError + +real 2m8,570s +user 0m5,191s +sys 0m3,469s diff --git a/download_scripts/log_files/nohup_MEX_NOAA.out b/download_scripts/log_files/nohup_MEX_NOAA.out new file mode 100644 index 0000000000000000000000000000000000000000..13fa831d33dbeb9780a596854fb257b8abbe1dfd --- /dev/null +++ b/download_scripts/log_files/nohup_MEX_NOAA.out @@ -0,0 +1,185 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +Started downloading data of WMO_WDCGG +Started downloading data of MEXICO_CDMX +No data found, error 404, year 1980 +No data found, error 404, year 1981 + +Started downloading data of NOAA_ISD +1970 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1970_c20170317T000557.tar.gz +Successfully logged in +Un-tarring file +co download successful +1971 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1971_c20170317T000459.tar.gz +Un-tarring file +1972 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1972_c20170317T000423.tar.gz +Un-tarring file +1973 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1973_c20200517T235551.tar.gz +Un-tarring file +1974 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1974_c20170316T235418.tar.gz +Un-tarring file +1975 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1975_c20200517T093634.tar.gz +Un-tarring file +1976 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1976_c20200516T200826.tar.gz +Un-tarring file +1977 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1977_c20200828T104824.tar.gz +Un-tarring file +1978 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1978_c20200515T165737.tar.gz +Un-tarring file +1979 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1979_c20200510T223908.tar.gz +Un-tarring file +1980 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1980_c20200510T152011.tar.gz +Un-tarring file +1981 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1981_c20200510T092725.tar.gz +Un-tarring file +1982 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1982_c20200509T164129.tar.gz +Un-tarring file +1983 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1983_c20200509T101211.tar.gz +Un-tarring file +1984 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1984_c20200508T214040.tar.gz +Un-tarring file +1985 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1985_c20200508T153312.tar.gz +Un-tarring file +1986 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1986_c20200508T094752.tar.gz +Un-tarring file +1987 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1987_c20200507T200703.tar.gz +Un-tarring file +1988 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1988_c20200417T085545.tar.gz +Un-tarring file +1989 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1989_c20200416T193403.tar.gz +Un-tarring file +1990 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1990_c20200416T092303.tar.gz +Un-tarring file +1991 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1991_c20200415T205633.tar.gz +Un-tarring file +1992 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1992_c20200415T102243.tar.gz +Un-tarring file +1993 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1993_c20200401T092117.tar.gz +Un-tarring file +1994 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1994_c20200331T081256.tar.gz +Un-tarring file +1995 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1995_c20210628T141146.tar.gz +Un-tarring file +1996 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1996_c20200324T160351.tar.gz +Un-tarring file +1997 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1997_c20220831T220007.tar.gz +Un-tarring file +1998 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1998_c20200318T130823.tar.gz +Un-tarring file +1999 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_1999_c20200317T234104.tar.gz +Un-tarring file +2000 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2000_c20200317T101120.tar.gz +Un-tarring file +2001 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2001_c20200316T165214.tar.gz +Un-tarring file +2002 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2002_c20200224T154757.tar.gz +Un-tarring file +2003 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2003_c20200222T190944.tar.gz +Un-tarring file +2004 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2004_c20200219T105715.tar.gz +Un-tarring file +2005 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2005_c20210203T130932.tar.gz +Un-tarring file +2006 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2006_c20210203T134937.tar.gz +Un-tarring file +2007 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2007_c20210203T142840.tar.gz +Un-tarring file +2008 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2008_c20210203T151501.tar.gz +Un-tarring file +2009 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2009_c20210203T160245.tar.gz +Un-tarring file +2010 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2010_c20210203T165735.tar.gz +Un-tarring file +2011 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2011_c20210403T091926.tar.gz +Un-tarring file +2012 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2012_c20210402T185259.tar.gz +Un-tarring file +2013 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2013_c20210203T203216.tar.gz +Un-tarring file +2014 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2014_c20210203T214104.tar.gz +Un-tarring file +2015 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2015_c20210203T223931.tar.gz +Un-tarring file +2016 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2016_c20210203T233620.tar.gz +Un-tarring file +2017 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2017_c20201205T220841.tar.gz +Un-tarring file +2018 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2018_c20201205T083740.tar.gz +Un-tarring file +2019 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2019_c20201023T133240.tar.gz +Un-tarring file +2020 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2020_c20210226T222709.tar.gz +Un-tarring file +2021 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2021_c20220203T204923.tar.gz +Un-tarring file +2022 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2022_c20230109T224155.tar.gz +Un-tarring file +2023 +Checking/Downloading https://www.ncei.noaa.gov/data/global-hourly/archive/isd/isd_2023_c20240105T134534.tar.gz +Un-tarring file +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +co download successful +co download successful + diff --git a/download_scripts/log_files/nohup_MIT_CASTNET.out b/download_scripts/log_files/nohup_MIT_CASTNET.out new file mode 100644 index 0000000000000000000000000000000000000000..4d2c11f1b6e37b410322c25ddc397324189e3ad1 --- /dev/null +++ b/download_scripts/log_files/nohup_MIT_CASTNET.out @@ -0,0 +1,13 @@ +run_GHOST_downloads.py: line 3: $'\nrun the download of GHOST network data and metadata\n': command not found +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +import: unable to open X server `localhost:21.0' @ error/import.c/ImportImageCommand/347. +run_GHOST_downloads.py: line 16: from: command not found +run_GHOST_downloads.py: line 19: syntax error near unexpected token `(' +run_GHOST_downloads.py: line 19: `def download_network(network, dl_data, dl_metadata, download_params, version, mode, start, stop, dl_root, q):' diff --git a/download_scripts/log_files/nohup_NZ.out b/download_scripts/log_files/nohup_NZ.out new file mode 100644 index 0000000000000000000000000000000000000000..5c9df9766a21c80b316c058cbfd3f991b8dc4061 --- /dev/null +++ b/download_scripts/log_files/nohup_NZ.out @@ -0,0 +1,1816 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of US_NADP_AMNet +Started downloading data of NZ_ECAN +['1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +Error 500 resolution hourly station 36 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 36 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 36 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 36 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 36 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 36 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 36 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 36 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 36 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 36 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 36 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 36 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 36 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 36 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 36 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 36 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 36 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 36 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 36 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 36 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 36 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 36 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 36 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 36 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 36 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 36 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 36 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 36 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 36 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 36 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 36 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 36 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 36 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 36 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 36 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 7 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 7 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 7 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 7 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 7 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 7 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 7 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 7 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 7 start 01/01/1998 end 31/12/1998 +Downloaded resolution hourly station 7 start 01/01/1999 end 31/12/1999 +Downloaded resolution hourly station 7 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 7 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 7 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 7 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 7 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 7 start 01/01/2005 end 31/12/2005 +AMNET-ALL-h.csv download successful +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Downloaded resolution hourly station 7 start 01/01/2006 end 31/12/2006 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 284199 +Started downloading data of US_NADP_AMoN +Downloaded resolution hourly station 7 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 7 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 7 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 7 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 7 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 7 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 7 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 7 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 7 start 01/01/2015 end 31/12/2015 +AMoN-ALL-W-i.csv download successful +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Downloaded resolution hourly station 7 start 01/01/2016 end 31/12/2016 +Submitted batch job 284200 +Downloaded resolution hourly station 7 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 7 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 7 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 7 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 7 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 7 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 7 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 7 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 64 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 64 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 64 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 64 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 64 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 64 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 64 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 64 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 64 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 64 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 64 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 64 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 64 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 64 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 64 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 64 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 64 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 64 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 64 start 01/01/2008 end 31/12/2008 +Error 500 resolution hourly station 64 start 01/01/2009 end 31/12/2009 +Error 500 resolution hourly station 64 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 64 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 64 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 64 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 64 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 64 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 64 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 64 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 64 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 64 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 64 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 64 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 64 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 64 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 64 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 90 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 90 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 90 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 90 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 90 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 90 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 90 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 90 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 90 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 90 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 90 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 90 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 90 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 90 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 90 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 90 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 90 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 90 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 90 start 01/01/2008 end 31/12/2008 +Error 500 resolution hourly station 90 start 01/01/2009 end 31/12/2009 +Error 500 resolution hourly station 90 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 90 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 90 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 90 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 90 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 90 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 90 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 90 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 90 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 90 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 90 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 90 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 90 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 90 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 90 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 12 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 12 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 12 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 12 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 12 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 12 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 12 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 12 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 12 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 12 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 12 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 12 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 12 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 12 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 12 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 12 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 12 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 12 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 12 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 12 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 12 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 12 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 12 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 12 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 12 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 12 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 12 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 12 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 12 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 12 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 12 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 12 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 12 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 12 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 12 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 2 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 2 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 2 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 2 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 2 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 2 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 2 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 2 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 2 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 2 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 2 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 2 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 2 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 2 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 2 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 2 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 2 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 2 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 2 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 2 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 2 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 2 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 2 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 2 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 2 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 2 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 2 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 2 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 2 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 2 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 2 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 2 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 2 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 2 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 2 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 11 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 11 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 11 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 11 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 11 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 11 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 11 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 11 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 11 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 11 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 11 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 11 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 11 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 11 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 11 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 11 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 11 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 11 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 11 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 11 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 11 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 11 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 11 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 11 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 11 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 11 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 11 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 11 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 11 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 11 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 11 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 11 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 11 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 11 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 11 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 5 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 5 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 5 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 5 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 5 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 5 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 5 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 5 start 01/01/1997 end 31/12/1997 +Downloaded resolution hourly station 5 start 01/01/1998 end 31/12/1998 +Downloaded resolution hourly station 5 start 01/01/1999 end 31/12/1999 +Downloaded resolution hourly station 5 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 5 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 5 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 5 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 5 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 5 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 5 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 5 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 5 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 5 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 5 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 5 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 5 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 5 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 5 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 5 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 5 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 5 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 5 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 5 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 5 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 5 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 5 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 5 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 5 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 54 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 54 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 54 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 54 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 54 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 54 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 54 start 01/01/1996 end 31/12/1996 +Downloaded resolution hourly station 54 start 01/01/1997 end 31/12/1997 +Downloaded resolution hourly station 54 start 01/01/1998 end 31/12/1998 +Downloaded resolution hourly station 54 start 01/01/1999 end 31/12/1999 +Downloaded resolution hourly station 54 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 54 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 54 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 54 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 54 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 54 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 54 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 54 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 54 start 01/01/2008 end 31/12/2008 +Error 500 resolution hourly station 54 start 01/01/2009 end 31/12/2009 +Error 500 resolution hourly station 54 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 54 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 54 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 54 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 54 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 54 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 54 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 54 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 54 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 54 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 54 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 54 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 54 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 54 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 54 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 3 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 3 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 3 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 3 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 3 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 3 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 3 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 3 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 3 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 3 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 3 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 3 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 3 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 3 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 3 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 3 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 3 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 3 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 3 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 3 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 3 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 3 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 3 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 3 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 3 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 3 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 3 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 3 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 3 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 3 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 3 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 3 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 3 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 3 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 3 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 4 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 4 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 4 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 4 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 4 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 4 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 4 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 4 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 4 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 4 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 4 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 4 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 4 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 4 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 4 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 4 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 4 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 4 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 4 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 4 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 4 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 4 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 4 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 4 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 4 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 4 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 4 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 4 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 4 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 4 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 4 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 4 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 4 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 4 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 4 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 77 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 77 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 77 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 77 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 77 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 77 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 77 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 77 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 77 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 77 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 77 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 77 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 77 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 77 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 77 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 77 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 77 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 77 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 77 start 01/01/2008 end 31/12/2008 +Error 500 resolution hourly station 77 start 01/01/2009 end 31/12/2009 +Error 500 resolution hourly station 77 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 77 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 77 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 77 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 77 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 77 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 77 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 77 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 77 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 77 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 77 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 77 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 77 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 77 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 77 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 87 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 87 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 87 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 87 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 87 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 87 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 87 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 87 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 87 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 87 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 87 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 87 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 87 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 87 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 87 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 87 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 87 start 01/01/2006 end 31/12/2006 +Error 500 resolution hourly station 87 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 87 start 01/01/2008 end 31/12/2008 +Error 500 resolution hourly station 87 start 01/01/2009 end 31/12/2009 +Error 500 resolution hourly station 87 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 87 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 87 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 87 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 87 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 87 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 87 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 87 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 87 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 87 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 87 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 87 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 87 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 87 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 87 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 6 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 6 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 6 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 6 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 6 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 6 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 6 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 6 start 01/01/1997 end 31/12/1997 +Downloaded resolution hourly station 6 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 6 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 6 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 6 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 6 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 6 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 6 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 6 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 6 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 6 start 01/01/2007 end 31/12/2007 +Error 500 resolution hourly station 6 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 6 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 6 start 01/01/2010 end 31/12/2010 +Error 500 resolution hourly station 6 start 01/01/2011 end 31/12/2011 +Error 500 resolution hourly station 6 start 01/01/2012 end 31/12/2012 +Error 500 resolution hourly station 6 start 01/01/2013 end 31/12/2013 +Error 500 resolution hourly station 6 start 01/01/2014 end 31/12/2014 +Error 500 resolution hourly station 6 start 01/01/2015 end 31/12/2015 +Error 500 resolution hourly station 6 start 01/01/2016 end 31/12/2016 +Error 500 resolution hourly station 6 start 01/01/2017 end 31/12/2017 +Error 500 resolution hourly station 6 start 01/01/2018 end 31/12/2018 +Error 500 resolution hourly station 6 start 01/01/2019 end 31/12/2019 +Error 500 resolution hourly station 6 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 6 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 6 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 6 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 6 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 10 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 10 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 10 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 10 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 10 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 10 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 10 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 10 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 10 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 10 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 10 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 10 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 10 start 01/01/2002 end 31/12/2002 +Error 500 resolution hourly station 10 start 01/01/2003 end 31/12/2003 +Error 500 resolution hourly station 10 start 01/01/2004 end 31/12/2004 +Error 500 resolution hourly station 10 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 10 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 10 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 10 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 10 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 10 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 10 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 10 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 10 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 10 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 10 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 10 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 10 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 10 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 10 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 10 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 10 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 10 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 10 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 10 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 1 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 1 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 1 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 1 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 1 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 1 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 1 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 1 start 01/01/1997 end 31/12/1997 +Downloaded resolution hourly station 1 start 01/01/1998 end 31/12/1998 +Downloaded resolution hourly station 1 start 01/01/1999 end 31/12/1999 +Downloaded resolution hourly station 1 start 01/01/2000 end 31/12/2000 +Downloaded resolution hourly station 1 start 01/01/2001 end 31/12/2001 +Downloaded resolution hourly station 1 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 1 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 1 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 1 start 01/01/2005 end 31/12/2005 +Downloaded resolution hourly station 1 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 1 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 1 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 1 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 1 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 1 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 1 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 1 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 1 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 1 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 1 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 1 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 1 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 1 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 1 start 01/01/2020 end 31/12/2020 +Error 500 resolution hourly station 1 start 01/01/2021 end 31/12/2021 +Error 500 resolution hourly station 1 start 01/01/2022 end 31/12/2022 +Error 500 resolution hourly station 1 start 01/01/2023 end 31/12/2023 +Error 500 resolution hourly station 1 start 01/01/2024 end 31/12/2024 +Error 500 resolution hourly station 9 start 01/01/1990 end 31/12/1990 +Error 500 resolution hourly station 9 start 01/01/1991 end 31/12/1991 +Error 500 resolution hourly station 9 start 01/01/1992 end 31/12/1992 +Error 500 resolution hourly station 9 start 01/01/1993 end 31/12/1993 +Error 500 resolution hourly station 9 start 01/01/1994 end 31/12/1994 +Error 500 resolution hourly station 9 start 01/01/1995 end 31/12/1995 +Error 500 resolution hourly station 9 start 01/01/1996 end 31/12/1996 +Error 500 resolution hourly station 9 start 01/01/1997 end 31/12/1997 +Error 500 resolution hourly station 9 start 01/01/1998 end 31/12/1998 +Error 500 resolution hourly station 9 start 01/01/1999 end 31/12/1999 +Error 500 resolution hourly station 9 start 01/01/2000 end 31/12/2000 +Error 500 resolution hourly station 9 start 01/01/2001 end 31/12/2001 +Error 500 resolution hourly station 9 start 01/01/2002 end 31/12/2002 +Downloaded resolution hourly station 9 start 01/01/2003 end 31/12/2003 +Downloaded resolution hourly station 9 start 01/01/2004 end 31/12/2004 +Downloaded resolution hourly station 9 start 01/01/2005 end 31/12/2005 +Error 500 resolution hourly station 9 start 01/01/2006 end 31/12/2006 +Downloaded resolution hourly station 9 start 01/01/2007 end 31/12/2007 +Downloaded resolution hourly station 9 start 01/01/2008 end 31/12/2008 +Downloaded resolution hourly station 9 start 01/01/2009 end 31/12/2009 +Downloaded resolution hourly station 9 start 01/01/2010 end 31/12/2010 +Downloaded resolution hourly station 9 start 01/01/2011 end 31/12/2011 +Downloaded resolution hourly station 9 start 01/01/2012 end 31/12/2012 +Downloaded resolution hourly station 9 start 01/01/2013 end 31/12/2013 +Downloaded resolution hourly station 9 start 01/01/2014 end 31/12/2014 +Downloaded resolution hourly station 9 start 01/01/2015 end 31/12/2015 +Downloaded resolution hourly station 9 start 01/01/2016 end 31/12/2016 +Downloaded resolution hourly station 9 start 01/01/2017 end 31/12/2017 +Downloaded resolution hourly station 9 start 01/01/2018 end 31/12/2018 +Downloaded resolution hourly station 9 start 01/01/2019 end 31/12/2019 +Downloaded resolution hourly station 9 start 01/01/2020 end 31/12/2020 +Downloaded resolution hourly station 9 start 01/01/2021 end 31/12/2021 +Downloaded resolution hourly station 9 start 01/01/2022 end 31/12/2022 +Downloaded resolution hourly station 9 start 01/01/2023 end 31/12/2023 +Downloaded resolution hourly station 9 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 36 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 36 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 36 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 36 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 36 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 36 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 36 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 36 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 36 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 36 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 36 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 36 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 36 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 36 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 36 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 36 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 36 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 36 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 36 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 36 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 36 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 36 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 36 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 36 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 36 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 36 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 36 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 36 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 36 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 36 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 36 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 36 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 36 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 36 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 36 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 7 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 7 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 7 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 7 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 7 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 7 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 7 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 7 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 7 start 01/01/1998 end 31/12/1998 +Downloaded resolution daily station 7 start 01/01/1999 end 31/12/1999 +Downloaded resolution daily station 7 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 7 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 7 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 7 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 7 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 7 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 7 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 7 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 7 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 7 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 7 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 7 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 7 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 7 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 7 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 7 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 7 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 7 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 7 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 7 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 7 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 7 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 7 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 7 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 7 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 64 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 64 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 64 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 64 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 64 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 64 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 64 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 64 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 64 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 64 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 64 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 64 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 64 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 64 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 64 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 64 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 64 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 64 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 64 start 01/01/2008 end 31/12/2008 +Error 500 resolution daily station 64 start 01/01/2009 end 31/12/2009 +Error 500 resolution daily station 64 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 64 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 64 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 64 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 64 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 64 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 64 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 64 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 64 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 64 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 64 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 64 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 64 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 64 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 64 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 90 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 90 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 90 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 90 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 90 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 90 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 90 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 90 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 90 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 90 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 90 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 90 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 90 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 90 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 90 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 90 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 90 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 90 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 90 start 01/01/2008 end 31/12/2008 +Error 500 resolution daily station 90 start 01/01/2009 end 31/12/2009 +Error 500 resolution daily station 90 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 90 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 90 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 90 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 90 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 90 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 90 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 90 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 90 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 90 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 90 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 90 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 90 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 90 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 90 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 12 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 12 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 12 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 12 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 12 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 12 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 12 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 12 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 12 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 12 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 12 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 12 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 12 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 12 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 12 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 12 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 12 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 12 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 12 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 12 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 12 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 12 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 12 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 12 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 12 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 12 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 12 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 12 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 12 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 12 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 12 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 12 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 12 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 12 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 12 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 2 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 2 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 2 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 2 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 2 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 2 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 2 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 2 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 2 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 2 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 2 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 2 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 2 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 2 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 2 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 2 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 2 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 2 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 2 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 2 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 2 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 2 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 2 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 2 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 2 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 2 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 2 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 2 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 2 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 2 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 2 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 2 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 2 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 2 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 2 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 11 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 11 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 11 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 11 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 11 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 11 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 11 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 11 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 11 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 11 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 11 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 11 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 11 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 11 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 11 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 11 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 11 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 11 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 11 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 11 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 11 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 11 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 11 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 11 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 11 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 11 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 11 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 11 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 11 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 11 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 11 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 11 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 11 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 11 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 11 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 5 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 5 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 5 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 5 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 5 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 5 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 5 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 5 start 01/01/1997 end 31/12/1997 +Downloaded resolution daily station 5 start 01/01/1998 end 31/12/1998 +Downloaded resolution daily station 5 start 01/01/1999 end 31/12/1999 +Downloaded resolution daily station 5 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 5 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 5 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 5 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 5 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 5 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 5 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 5 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 5 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 5 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 5 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 5 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 5 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 5 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 5 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 5 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 5 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 5 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 5 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 5 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 5 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 5 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 5 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 5 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 5 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 54 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 54 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 54 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 54 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 54 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 54 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 54 start 01/01/1996 end 31/12/1996 +Downloaded resolution daily station 54 start 01/01/1997 end 31/12/1997 +Downloaded resolution daily station 54 start 01/01/1998 end 31/12/1998 +Downloaded resolution daily station 54 start 01/01/1999 end 31/12/1999 +Downloaded resolution daily station 54 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 54 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 54 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 54 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 54 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 54 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 54 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 54 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 54 start 01/01/2008 end 31/12/2008 +Error 500 resolution daily station 54 start 01/01/2009 end 31/12/2009 +Error 500 resolution daily station 54 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 54 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 54 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 54 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 54 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 54 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 54 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 54 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 54 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 54 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 54 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 54 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 54 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 54 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 54 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 3 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 3 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 3 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 3 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 3 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 3 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 3 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 3 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 3 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 3 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 3 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 3 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 3 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 3 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 3 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 3 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 3 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 3 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 3 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 3 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 3 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 3 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 3 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 3 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 3 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 3 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 3 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 3 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 3 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 3 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 3 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 3 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 3 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 3 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 3 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 4 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 4 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 4 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 4 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 4 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 4 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 4 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 4 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 4 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 4 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 4 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 4 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 4 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 4 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 4 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 4 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 4 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 4 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 4 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 4 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 4 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 4 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 4 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 4 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 4 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 4 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 4 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 4 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 4 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 4 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 4 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 4 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 4 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 4 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 4 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 77 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 77 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 77 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 77 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 77 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 77 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 77 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 77 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 77 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 77 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 77 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 77 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 77 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 77 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 77 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 77 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 77 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 77 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 77 start 01/01/2008 end 31/12/2008 +Error 500 resolution daily station 77 start 01/01/2009 end 31/12/2009 +Error 500 resolution daily station 77 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 77 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 77 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 77 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 77 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 77 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 77 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 77 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 77 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 77 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 77 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 77 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 77 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 77 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 77 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 87 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 87 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 87 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 87 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 87 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 87 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 87 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 87 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 87 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 87 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 87 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 87 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 87 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 87 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 87 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 87 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 87 start 01/01/2006 end 31/12/2006 +Error 500 resolution daily station 87 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 87 start 01/01/2008 end 31/12/2008 +Error 500 resolution daily station 87 start 01/01/2009 end 31/12/2009 +Error 500 resolution daily station 87 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 87 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 87 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 87 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 87 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 87 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 87 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 87 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 87 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 87 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 87 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 87 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 87 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 87 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 87 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 6 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 6 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 6 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 6 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 6 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 6 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 6 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 6 start 01/01/1997 end 31/12/1997 +Downloaded resolution daily station 6 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 6 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 6 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 6 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 6 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 6 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 6 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 6 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 6 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 6 start 01/01/2007 end 31/12/2007 +Error 500 resolution daily station 6 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 6 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 6 start 01/01/2010 end 31/12/2010 +Error 500 resolution daily station 6 start 01/01/2011 end 31/12/2011 +Error 500 resolution daily station 6 start 01/01/2012 end 31/12/2012 +Error 500 resolution daily station 6 start 01/01/2013 end 31/12/2013 +Error 500 resolution daily station 6 start 01/01/2014 end 31/12/2014 +Error 500 resolution daily station 6 start 01/01/2015 end 31/12/2015 +Error 500 resolution daily station 6 start 01/01/2016 end 31/12/2016 +Error 500 resolution daily station 6 start 01/01/2017 end 31/12/2017 +Error 500 resolution daily station 6 start 01/01/2018 end 31/12/2018 +Error 500 resolution daily station 6 start 01/01/2019 end 31/12/2019 +Error 500 resolution daily station 6 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 6 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 6 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 6 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 6 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 10 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 10 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 10 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 10 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 10 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 10 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 10 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 10 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 10 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 10 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 10 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 10 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 10 start 01/01/2002 end 31/12/2002 +Error 500 resolution daily station 10 start 01/01/2003 end 31/12/2003 +Error 500 resolution daily station 10 start 01/01/2004 end 31/12/2004 +Error 500 resolution daily station 10 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 10 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 10 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 10 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 10 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 10 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 10 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 10 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 10 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 10 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 10 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 10 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 10 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 10 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 10 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 10 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 10 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 10 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 10 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 10 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 1 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 1 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 1 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 1 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 1 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 1 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 1 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 1 start 01/01/1997 end 31/12/1997 +Downloaded resolution daily station 1 start 01/01/1998 end 31/12/1998 +Downloaded resolution daily station 1 start 01/01/1999 end 31/12/1999 +Downloaded resolution daily station 1 start 01/01/2000 end 31/12/2000 +Downloaded resolution daily station 1 start 01/01/2001 end 31/12/2001 +Downloaded resolution daily station 1 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 1 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 1 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 1 start 01/01/2005 end 31/12/2005 +Downloaded resolution daily station 1 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 1 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 1 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 1 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 1 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 1 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 1 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 1 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 1 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 1 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 1 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 1 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 1 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 1 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 1 start 01/01/2020 end 31/12/2020 +Error 500 resolution daily station 1 start 01/01/2021 end 31/12/2021 +Error 500 resolution daily station 1 start 01/01/2022 end 31/12/2022 +Error 500 resolution daily station 1 start 01/01/2023 end 31/12/2023 +Error 500 resolution daily station 1 start 01/01/2024 end 31/12/2024 +Error 500 resolution daily station 9 start 01/01/1990 end 31/12/1990 +Error 500 resolution daily station 9 start 01/01/1991 end 31/12/1991 +Error 500 resolution daily station 9 start 01/01/1992 end 31/12/1992 +Error 500 resolution daily station 9 start 01/01/1993 end 31/12/1993 +Error 500 resolution daily station 9 start 01/01/1994 end 31/12/1994 +Error 500 resolution daily station 9 start 01/01/1995 end 31/12/1995 +Error 500 resolution daily station 9 start 01/01/1996 end 31/12/1996 +Error 500 resolution daily station 9 start 01/01/1997 end 31/12/1997 +Error 500 resolution daily station 9 start 01/01/1998 end 31/12/1998 +Error 500 resolution daily station 9 start 01/01/1999 end 31/12/1999 +Error 500 resolution daily station 9 start 01/01/2000 end 31/12/2000 +Error 500 resolution daily station 9 start 01/01/2001 end 31/12/2001 +Error 500 resolution daily station 9 start 01/01/2002 end 31/12/2002 +Downloaded resolution daily station 9 start 01/01/2003 end 31/12/2003 +Downloaded resolution daily station 9 start 01/01/2004 end 31/12/2004 +Downloaded resolution daily station 9 start 01/01/2005 end 31/12/2005 +Error 500 resolution daily station 9 start 01/01/2006 end 31/12/2006 +Downloaded resolution daily station 9 start 01/01/2007 end 31/12/2007 +Downloaded resolution daily station 9 start 01/01/2008 end 31/12/2008 +Downloaded resolution daily station 9 start 01/01/2009 end 31/12/2009 +Downloaded resolution daily station 9 start 01/01/2010 end 31/12/2010 +Downloaded resolution daily station 9 start 01/01/2011 end 31/12/2011 +Downloaded resolution daily station 9 start 01/01/2012 end 31/12/2012 +Downloaded resolution daily station 9 start 01/01/2013 end 31/12/2013 +Downloaded resolution daily station 9 start 01/01/2014 end 31/12/2014 +Downloaded resolution daily station 9 start 01/01/2015 end 31/12/2015 +Downloaded resolution daily station 9 start 01/01/2016 end 31/12/2016 +Downloaded resolution daily station 9 start 01/01/2017 end 31/12/2017 +Downloaded resolution daily station 9 start 01/01/2018 end 31/12/2018 +Downloaded resolution daily station 9 start 01/01/2019 end 31/12/2019 +Downloaded resolution daily station 9 start 01/01/2020 end 31/12/2020 +Downloaded resolution daily station 9 start 01/01/2021 end 31/12/2021 +Downloaded resolution daily station 9 start 01/01/2022 end 31/12/2022 +Downloaded resolution daily station 9 start 01/01/2023 end 31/12/2023 +Downloaded resolution daily station 9 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 36 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 36 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 36 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 36 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 36 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 36 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 36 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 36 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 36 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 36 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 36 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 36 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 36 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 36 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 36 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 36 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 36 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 36 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 36 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 36 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 36 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 36 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 36 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 36 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 36 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 36 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 36 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 36 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 36 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 36 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 36 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 36 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 36 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 36 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 36 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 7 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 7 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 7 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 7 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 7 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 7 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 7 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 7 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 7 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 7 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 7 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 7 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 7 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 7 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 7 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 7 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 7 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 7 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 7 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 7 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 7 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 7 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 7 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 7 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 7 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 7 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 7 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 7 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 7 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 7 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 7 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 7 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 7 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 7 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 7 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 64 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 64 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 64 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 64 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 64 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 64 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 64 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 64 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 64 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 64 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 64 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 64 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 64 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 64 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 64 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 64 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 64 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 64 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 64 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 64 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 64 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 64 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 64 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 64 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 64 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 64 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 64 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 64 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 64 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 64 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 64 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 64 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 64 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 64 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 64 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 90 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 90 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 90 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 90 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 90 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 90 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 90 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 90 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 90 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 90 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 90 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 90 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 90 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 90 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 90 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 90 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 90 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 90 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 90 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 90 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 90 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 90 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 90 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 90 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 90 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 90 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 90 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 90 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 90 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 90 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 90 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 90 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 90 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 90 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 90 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 12 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 12 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 12 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 12 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 12 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 12 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 12 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 12 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 12 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 12 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 12 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 12 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 12 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 12 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 12 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 12 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 12 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 12 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 12 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 12 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 12 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 12 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 12 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 12 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 12 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 12 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 12 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 12 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 12 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 12 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 12 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 12 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 12 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 12 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 12 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 2 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 2 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 2 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 2 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 2 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 2 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 2 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 2 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 2 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 2 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 2 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 2 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 2 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 2 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 2 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 2 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 2 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 2 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 2 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 2 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 2 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 2 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 2 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 2 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 2 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 2 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 2 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 2 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 2 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 2 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 2 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 2 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 2 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 2 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 2 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 11 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 11 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 11 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 11 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 11 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 11 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 11 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 11 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 11 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 11 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 11 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 11 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 11 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 11 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 11 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 11 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 11 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 11 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 11 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 11 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 11 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 11 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 11 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 11 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 11 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 11 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 11 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 11 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 11 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 11 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 11 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 11 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 11 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 11 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 11 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 5 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 5 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 5 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 5 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 5 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 5 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 5 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 5 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 5 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 5 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 5 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 5 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 5 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 5 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 5 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 5 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 5 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 5 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 5 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 5 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 5 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 5 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 5 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 5 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 5 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 5 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 5 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 5 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 5 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 5 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 5 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 5 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 5 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 5 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 5 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 54 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 54 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 54 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 54 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 54 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 54 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 54 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 54 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 54 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 54 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 54 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 54 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 54 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 54 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 54 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 54 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 54 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 54 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 54 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 54 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 54 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 54 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 54 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 54 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 54 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 54 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 54 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 54 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 54 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 54 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 54 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 54 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 54 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 54 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 54 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 3 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 3 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 3 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 3 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 3 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 3 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 3 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 3 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 3 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 3 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 3 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 3 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 3 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 3 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 3 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 3 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 3 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 3 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 3 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 3 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 3 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 3 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 3 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 3 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 3 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 3 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 3 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 3 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 3 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 3 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 3 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 3 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 3 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 3 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 3 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 4 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 4 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 4 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 4 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 4 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 4 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 4 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 4 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 4 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 4 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 4 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 4 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 4 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 4 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 4 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 4 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 4 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 4 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 4 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 4 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 4 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 4 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 4 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 4 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 4 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 4 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 4 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 4 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 4 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 4 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 4 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 4 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 4 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 4 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 4 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 77 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 77 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 77 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 77 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 77 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 77 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 77 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 77 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 77 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 77 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 77 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 77 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 77 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 77 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 77 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 77 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 77 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 77 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 77 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 77 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 77 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 77 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 77 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 77 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 77 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 77 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 77 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 77 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 77 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 77 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 77 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 77 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 77 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 77 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 77 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 87 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 87 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 87 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 87 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 87 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 87 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 87 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 87 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 87 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 87 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 87 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 87 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 87 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 87 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 87 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 87 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 87 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 87 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 87 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 87 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 87 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 87 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 87 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 87 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 87 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 87 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 87 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 87 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 87 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 87 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 87 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 87 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 87 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 87 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 87 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 6 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 6 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 6 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 6 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 6 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 6 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 6 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 6 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 6 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 6 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 6 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 6 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 6 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 6 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 6 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 6 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 6 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 6 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 6 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 6 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 6 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 6 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 6 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 6 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 6 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 6 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 6 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 6 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 6 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 6 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 6 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 6 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 6 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 6 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 6 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 10 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 10 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 10 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 10 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 10 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 10 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 10 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 10 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 10 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 10 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 10 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 10 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 10 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 10 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 10 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 10 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 10 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 10 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 10 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 10 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 10 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 10 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 10 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 10 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 10 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 10 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 10 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 10 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 10 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 10 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 10 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 10 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 10 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 10 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 10 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 1 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 1 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 1 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 1 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 1 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 1 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 1 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 1 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 1 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 1 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 1 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 1 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 1 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 1 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 1 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 1 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 1 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 1 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 1 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 1 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 1 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 1 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 1 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 1 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 1 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 1 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 1 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 1 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 1 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 1 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 1 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 1 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 1 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 1 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 1 start 01/01/2024 end 31/12/2024 +Downloaded resolution 10 minute station 9 start 01/01/1990 end 31/12/1990 +Downloaded resolution 10 minute station 9 start 01/01/1991 end 31/12/1991 +Downloaded resolution 10 minute station 9 start 01/01/1992 end 31/12/1992 +Downloaded resolution 10 minute station 9 start 01/01/1993 end 31/12/1993 +Downloaded resolution 10 minute station 9 start 01/01/1994 end 31/12/1994 +Downloaded resolution 10 minute station 9 start 01/01/1995 end 31/12/1995 +Downloaded resolution 10 minute station 9 start 01/01/1996 end 31/12/1996 +Downloaded resolution 10 minute station 9 start 01/01/1997 end 31/12/1997 +Downloaded resolution 10 minute station 9 start 01/01/1998 end 31/12/1998 +Downloaded resolution 10 minute station 9 start 01/01/1999 end 31/12/1999 +Downloaded resolution 10 minute station 9 start 01/01/2000 end 31/12/2000 +Downloaded resolution 10 minute station 9 start 01/01/2001 end 31/12/2001 +Downloaded resolution 10 minute station 9 start 01/01/2002 end 31/12/2002 +Downloaded resolution 10 minute station 9 start 01/01/2003 end 31/12/2003 +Downloaded resolution 10 minute station 9 start 01/01/2004 end 31/12/2004 +Downloaded resolution 10 minute station 9 start 01/01/2005 end 31/12/2005 +Downloaded resolution 10 minute station 9 start 01/01/2006 end 31/12/2006 +Downloaded resolution 10 minute station 9 start 01/01/2007 end 31/12/2007 +Downloaded resolution 10 minute station 9 start 01/01/2008 end 31/12/2008 +Downloaded resolution 10 minute station 9 start 01/01/2009 end 31/12/2009 +Downloaded resolution 10 minute station 9 start 01/01/2010 end 31/12/2010 +Downloaded resolution 10 minute station 9 start 01/01/2011 end 31/12/2011 +Downloaded resolution 10 minute station 9 start 01/01/2012 end 31/12/2012 +Downloaded resolution 10 minute station 9 start 01/01/2013 end 31/12/2013 +Downloaded resolution 10 minute station 9 start 01/01/2014 end 31/12/2014 +Downloaded resolution 10 minute station 9 start 01/01/2015 end 31/12/2015 +Downloaded resolution 10 minute station 9 start 01/01/2016 end 31/12/2016 +Downloaded resolution 10 minute station 9 start 01/01/2017 end 31/12/2017 +Downloaded resolution 10 minute station 9 start 01/01/2018 end 31/12/2018 +Downloaded resolution 10 minute station 9 start 01/01/2019 end 31/12/2019 +Downloaded resolution 10 minute station 9 start 01/01/2020 end 31/12/2020 +Downloaded resolution 10 minute station 9 start 01/01/2021 end 31/12/2021 +Downloaded resolution 10 minute station 9 start 01/01/2022 end 31/12/2022 +Downloaded resolution 10 minute station 9 start 01/01/2023 end 31/12/2023 +Downloaded resolution 10 minute station 9 start 01/01/2024 end 31/12/2024 +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 284355 + +real 65m5,704s +user 0m24,770s +sys 0m7,170s diff --git a/download_scripts/log_files/nohup_WMO_CAPMoN.out b/download_scripts/log_files/nohup_WMO_CAPMoN.out new file mode 100644 index 0000000000000000000000000000000000000000..00a4665084dcabe07fb747b41cf5f61b138d6e6c --- /dev/null +++ b/download_scripts/log_files/nohup_WMO_CAPMoN.out @@ -0,0 +1,161 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +Started downloading data of WMO_WDCGG +Started downloading data of CAPMoN +['1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1980.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1981.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1982.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1983.csv +Successfully logged in +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1984.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1985.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1986.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1987.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1988.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1988.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1989.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1989.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1990.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1990.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1991.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1991.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1992.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1992.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1993.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1993.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1994.csv +co download successful +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1994.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1995.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1995.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1996.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1996.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1997.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1997.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1998.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1998.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-1999.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1999.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2000.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2000.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2001.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2001.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2002.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2002.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2003.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2003.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2004.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2004.csv +Permission denied for AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2005.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2005.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2006.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2006.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2007.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2007.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2008.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2008.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2009.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2009.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2010.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2010.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2011.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2011.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2012.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2012.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2013.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2013.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2014.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2014.csv +Downloaded AtmosphericGases-GroundLevelOzone-CAPMoN-AllSites-2015.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2015.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2016.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2017.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2018.csv +No ozone data found, error 404 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2019.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2020.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2021.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2022.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2023.csv +No ozone data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-2024.csv +Downloaded AtmosphericParticles-ParticulateMetals-GLBM-MultipleSites-1988_2017.csv +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 279725 +co download successful +co download successful + +multiprocessing.pool.RemoteTraceback: +""" +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/WMO_WDCGG_download.py", line 83, in download_data + shutil.move(download_location+"txt/"+variable, download_location) +IndexError: list index out of range + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 125, in worker + result = (True, func(*args, **kwds)) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 51, in starmapstar + return list(itertools.starmap(args[0], args[1])) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 61, in download_network + res = '{} data unsuccessful -- run for {} min +++ \n'.format(network, total_dl_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' +UnboundLocalError: local variable 'dl_time' referenced before assignment +""" + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 162, in + pool.starmap(download_network, zip(networks, itertools.repeat(dlconfig.dl_data), itertools.repeat(dlconfig.dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode), itertools.repeat(start_date), itertools.repeat(stop_date), itertools.repeat(dlconfig.root), itertools.repeat(q))) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 372, in starmap + return self._map_async(func, iterable, starmapstar, chunksize).get() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 771, in get + raise self._value +UnboundLocalError: local variable 'dl_time' referenced before assignment +Process Process-4: +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap + self.run() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 108, in run + self._target(*self._args, **self._kwargs) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 108, in writer + message = q.get() + File "", line 2, in get + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/managers.py", line 809, in _callmethod + kind, result = conn.recv() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 255, in recv + buf = self._recv_bytes() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 419, in _recv_bytes + buf = self._recv(4) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 388, in _recv + raise EOFError +EOFError diff --git a/download_scripts/log_files/nohup_all.out b/download_scripts/log_files/nohup_all.out new file mode 100644 index 0000000000000000000000000000000000000000..e5aa498f36b06b4cc9ddf4a469019ba3ff442bc9 --- /dev/null +++ b/download_scripts/log_files/nohup_all.out @@ -0,0 +1,12816 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of CNEMCStarted downloading data of BJMEMC + +['20140501', '20140502', '20140503', '20140504', '20140505', '20140506', '20140507', '20140508', '20140509', '20140510', '20140511', '20140512', '20140513', '20140514', '20140515', '20140516', '20140517', '20140518', '20140519', '20140520', '20140521', '20140522', '20140523', '20140524', '20140525', '20140526', '20140527', '20140528', '20140529', '20140530', '20140531', '20140601', '20140602', '20140603', '20140604', '20140605', '20140606', '20140607', '20140608', '20140609', '20140610', '20140611', '20140612', '20140613', '20140614', '20140615', '20140616', '20140617', '20140618', '20140619', '20140620', '20140621', '20140622', '20140623', '20140624', '20140625', '20140626', '20140627', '20140628', '20140629', '20140630', '20140701', '20140702', '20140703', '20140704', '20140705', '20140706', '20140707', '20140708', '20140709', '20140710', '20140711', '20140712', '20140713', '20140714', '20140715', '20140716', '20140717', '20140718', '20140719', '20140720', '20140721', '20140722', '20140723', '20140724', '20140725', '20140726', '20140727', '20140728', '20140729', '20140730', '20140731', '20140801', '20140802', '20140803', '20140804', '20140805', '20140806', '20140807', '20140808', '20140809', '20140810', '20140811', '20140812', '20140813', '20140814', '20140815', '20140816', '20140817', '20140818', '20140819', '20140820', '20140821', '20140822', '20140823', '20140824', '20140825', '20140826', '20140827', '20140828', '20140829', '20140830', '20140831', '20140901', '20140902', '20140903', '20140904', '20140905', '20140906', '20140907', '20140908', '20140909', '20140910', '20140911', '20140912', '20140913', '20140914', '20140915', '20140916', '20140917', '20140918', '20140919', '20140920', '20140921', '20140922', '20140923', '20140924', '20140925', '20140926', '20140927', '20140928', '20140929', '20140930', '20141001', '20141002', '20141003', '20141004', '20141005', '20141006', '20141007', '20141008', '20141009', '20141010', '20141011', '20141012', '20141013', '20141014', '20141015', '20141016', '20141017', '20141018', '20141019', '20141020', '20141021', '20141022', '20141023', '20141024', '20141025', '20141026', '20141027', '20141028', '20141029', '20141030', '20141031', '20141101', '20141102', '20141103', '20141104', '20141105', '20141106', '20141107', '20141108', '20141109', '20141110', '20141111', '20141112', '20141113', '20141114', '20141115', '20141116', '20141117', '20141118', '20141119', '20141120', '20141121', '20141122', '20141123', '20141124', '20141125', '20141126', '20141127', '20141128', '20141129', '20141130', '20141201', '20141202', '20141203', '20141204', '20141205', '20141206', '20141207', '20141208', '20141209', '20141210', '20141211', '20141212', '20141213', '20141214', '20141215', '20141216', '20141217', '20141218', '20141219', '20141220', '20141221', '20141222', '20141223', '20141224', '20141225', '20141226', '20141227', '20141228', '20141229', '20141230', '20141231', '20150101', '20150102', '20150103', '20150104', '20150105', '20150106', '20150107', '20150108', '20150109', '20150110', '20150111', '20150112', '20150113', '20150114', '20150115', '20150116', '20150117', '20150118', '20150119', '20150120', '20150121', '20150122', '20150123', '20150124', '20150125', '20150126', '20150127', '20150128', '20150129', '20150130', '20150131', '20150201', '20150202', '20150203', '20150204', '20150205', '20150206', '20150207', '20150208', '20150209', '20150210', '20150211', '20150212', '20150213', '20150214', '20150215', '20150216', '20150217', '20150218', '20150219', '20150220', '20150221', '20150222', '20150223', '20150224', '20150225', '20150226', '20150227', '20150228', '20150301', '20150302', '20150303', '20150304', '20150305', '20150306', '20150307', '20150308', '20150309', '20150310', '20150311', '20150312', '20150313', '20150314', '20150315', '20150316', '20150317', '20150318', '20150319', '20150320', '20150321', '20150322', '20150323', '20150324', '20150325', '20150326', '20150327', '20150328', '20150329', '20150330', '20150331', '20150401', '20150402', '20150403', '20150404', '20150405', '20150406', '20150407', '20150408', '20150409', '20150410', '20150411', '20150412', '20150413', '20150414', '20150415', '20150416', '20150417', '20150418', '20150419', '20150420', '20150421', '20150422', '20150423', '20150424', '20150425', '20150426', '20150427', '20150428', '20150429', '20150430', '20150501', '20150502', '20150503', '20150504', '20150505', '20150506', '20150507', '20150508', '20150509', '20150510', '20150511', '20150512', '20150513', '20150514', '20150515', '20150516', '20150517', '20150518', '20150519', '20150520', '20150521', '20150522', '20150523', '20150524', '20150525', '20150526', '20150527', '20150528', '20150529', '20150530', '20150531', '20150601', '20150602', '20150603', '20150604', '20150605', '20150606', '20150607', '20150608', '20150609', '20150610', '20150611', '20150612', '20150613', '20150614', '20150615', '20150616', '20150617', '20150618', '20150619', '20150620', '20150621', '20150622', '20150623', '20150624', '20150625', '20150626', '20150627', '20150628', '20150629', '20150630', '20150701', '20150702', '20150703', '20150704', '20150705', '20150706', '20150707', '20150708', '20150709', '20150710', '20150711', '20150712', '20150713', '20150714', '20150715', '20150716', '20150717', '20150718', '20150719', '20150720', '20150721', '20150722', '20150723', '20150724', '20150725', '20150726', '20150727', '20150728', '20150729', '20150730', '20150731', '20150801', '20150802', '20150803', '20150804', '20150805', '20150806', '20150807', '20150808', '20150809', '20150810', '20150811', '20150812', '20150813', '20150814', '20150815', '20150816', '20150817', '20150818', '20150819', '20150820', '20150821', '20150822', '20150823', '20150824', '20150825', '20150826', '20150827', '20150828', '20150829', '20150830', '20150831', '20150901', '20150902', '20150903', '20150904', '20150905', '20150906', '20150907', '20150908', '20150909', '20150910', '20150911', '20150912', '20150913', '20150914', '20150915', '20150916', '20150917', '20150918', '20150919', '20150920', '20150921', '20150922', '20150923', '20150924', '20150925', '20150926', '20150927', '20150928', '20150929', '20150930', '20151001', '20151002', '20151003', '20151004', '20151005', '20151006', '20151007', '20151008', '20151009', '20151010', '20151011', '20151012', '20151013', '20151014', '20151015', '20151016', '20151017', '20151018', '20151019', '20151020', '20151021', '20151022', '20151023', '20151024', '20151025', '20151026', '20151027', '20151028', '20151029', '20151030', '20151031', '20151101', '20151102', '20151103', '20151104', '20151105', '20151106', '20151107', '20151108', '20151109', '20151110', '20151111', '20151112', '20151113', '20151114', '20151115', '20151116', '20151117', '20151118', '20151119', '20151120', '20151121', '20151122', '20151123', '20151124', '20151125', '20151126', '20151127', '20151128', '20151129', '20151130', '20151201', '20151202', '20151203', '20151204', '20151205', '20151206', '20151207', '20151208', '20151209', '20151210', '20151211', '20151212', '20151213', '20151214', '20151215', '20151216', '20151217', '20151218', '20151219', '20151220', '20151221', '20151222', '20151223', '20151224', '20151225', '20151226', '20151227', '20151228', '20151229', '20151230', '20151231', '20160101', '20160102', '20160103', '20160104', '20160105', '20160106', '20160107', '20160108', '20160109', '20160110', '20160111', '20160112', '20160113', '20160114', '20160115', '20160116', '20160117', '20160118', '20160119', '20160120', '20160121', '20160122', '20160123', '20160124', '20160125', '20160126', '20160127', '20160128', '20160129', '20160130', '20160131', '20160201', '20160202', '20160203', '20160204', '20160205', '20160206', '20160207', '20160208', '20160209', '20160210', '20160211', '20160212', '20160213', '20160214', '20160215', '20160216', '20160217', '20160218', '20160219', '20160220', '20160221', '20160222', '20160223', '20160224', '20160225', '20160226', '20160227', '20160228', '20160229', '20160301', '20160302', '20160303', '20160304', '20160305', '20160306', '20160307', '20160308', '20160309', '20160310', '20160311', '20160312', '20160313', '20160314', '20160315', '20160316', '20160317', '20160318', '20160319', '20160320', '20160321', '20160322', '20160323', '20160324', '20160325', '20160326', '20160327', '20160328', '20160329', '20160330', '20160331', '20160401', '20160402', '20160403', '20160404', '20160405', '20160406', '20160407', '20160408', '20160409', '20160410', '20160411', '20160412', '20160413', '20160414', '20160415', '20160416', '20160417', '20160418', '20160419', '20160420', '20160421', '20160422', '20160423', '20160424', '20160425', '20160426', '20160427', '20160428', '20160429', '20160430', '20160501', '20160502', '20160503', '20160504', '20160505', '20160506', '20160507', '20160508', '20160509', '20160510', '20160511', '20160512', '20160513', '20160514', '20160515', '20160516', '20160517', '20160518', '20160519', '20160520', '20160521', '20160522', '20160523', '20160524', '20160525', '20160526', '20160527', '20160528', '20160529', '20160530', '20160531', '20160601', '20160602', '20160603', '20160604', '20160605', '20160606', '20160607', '20160608', '20160609', '20160610', '20160611', '20160612', '20160613', '20160614', '20160615', '20160616', '20160617', '20160618', '20160619', '20160620', '20160621', '20160622', '20160623', '20160624', '20160625', '20160626', '20160627', '20160628', '20160629', '20160630', '20160701', '20160702', '20160703', '20160704', '20160705', '20160706', '20160707', '20160708', '20160709', '20160710', '20160711', '20160712', '20160713', '20160714', '20160715', '20160716', '20160717', '20160718', '20160719', '20160720', '20160721', '20160722', '20160723', '20160724', '20160725', '20160726', '20160727', '20160728', '20160729', '20160730', '20160731', '20160801', '20160802', '20160803', '20160804', '20160805', '20160806', '20160807', '20160808', '20160809', '20160810', '20160811', '20160812', '20160813', '20160814', '20160815', '20160816', '20160817', '20160818', '20160819', '20160820', '20160821', '20160822', '20160823', '20160824', '20160825', '20160826', '20160827', '20160828', '20160829', '20160830', '20160831', '20160901', '20160902', '20160903', '20160904', '20160905', '20160906', '20160907', '20160908', '20160909', '20160910', '20160911', '20160912', '20160913', '20160914', '20160915', '20160916', '20160917', '20160918', '20160919', '20160920', '20160921', '20160922', '20160923', '20160924', '20160925', '20160926', '20160927', '20160928', '20160929', '20160930', '20161001', '20161002', '20161003', '20161004', '20161005', '20161006', '20161007', '20161008', '20161009', '20161010', '20161011', '20161012', '20161013', '20161014', '20161015', '20161016', '20161017', '20161018', '20161019', '20161020', '20161021', '20161022', '20161023', '20161024', '20161025', '20161026', '20161027', '20161028', '20161029', '20161030', '20161031', '20161101', '20161102', '20161103', '20161104', '20161105', '20161106', '20161107', '20161108', '20161109', '20161110', '20161111', '20161112', '20161113', '20161114', '20161115', '20161116', '20161117', '20161118', '20161119', '20161120', '20161121', '20161122', '20161123', '20161124', '20161125', '20161126', '20161127', '20161128', '20161129', '20161130', '20161201', '20161202', '20161203', '20161204', '20161205', '20161206', '20161207', '20161208', '20161209', '20161210', '20161211', '20161212', '20161213', '20161214', '20161215', '20161216', '20161217', '20161218', '20161219', '20161220', '20161221', '20161222', '20161223', '20161224', '20161225', '20161226', '20161227', '20161228', '20161229', '20161230', '20161231', '20170101', '20170102', '20170103', '20170104', '20170105', '20170106', '20170107', '20170108', '20170109', '20170110', '20170111', '20170112', '20170113', '20170114', '20170115', '20170116', '20170117', '20170118', '20170119', '20170120', '20170121', '20170122', '20170123', '20170124', '20170125', '20170126', '20170127', '20170128', '20170129', '20170130', '20170131', '20170201', '20170202', '20170203', '20170204', '20170205', '20170206', '20170207', '20170208', '20170209', '20170210', '20170211', '20170212', '20170213', '20170214', '20170215', '20170216', '20170217', '20170218', '20170219', '20170220', '20170221', '20170222', '20170223', '20170224', '20170225', '20170226', '20170227', '20170228', '20170301', '20170302', '20170303', '20170304', '20170305', '20170306', '20170307', '20170308', '20170309', '20170310', '20170311', '20170312', '20170313', '20170314', '20170315', '20170316', '20170317', '20170318', '20170319', '20170320', '20170321', '20170322', '20170323', '20170324', '20170325', '20170326', '20170327', '20170328', '20170329', '20170330', '20170331', '20170401', '20170402', '20170403', '20170404', '20170405', '20170406', '20170407', '20170408', '20170409', '20170410', '20170411', '20170412', '20170413', '20170414', '20170415', '20170416', '20170417', '20170418', '20170419', '20170420', '20170421', '20170422', '20170423', '20170424', '20170425', '20170426', '20170427', '20170428', '20170429', '20170430', '20170501', '20170502', '20170503', '20170504', '20170505', '20170506', '20170507', '20170508', '20170509', '20170510', '20170511', '20170512', '20170513', '20170514', '20170515', '20170516', '20170517', '20170518', '20170519', '20170520', '20170521', '20170522', '20170523', '20170524', '20170525', '20170526', '20170527', '20170528', '20170529', '20170530', '20170531', '20170601', '20170602', '20170603', '20170604', '20170605', '20170606', '20170607', '20170608', '20170609', '20170610', '20170611', '20170612', '20170613', '20170614', '20170615', '20170616', '20170617', '20170618', '20170619', '20170620', '20170621', '20170622', '20170623', '20170624', '20170625', '20170626', '20170627', '20170628', '20170629', '20170630', '20170701', '20170702', '20170703', '20170704', '20170705', '20170706', '20170707', '20170708', '20170709', '20170710', '20170711', '20170712', '20170713', '20170714', '20170715', '20170716', '20170717', '20170718', '20170719', '20170720', '20170721', '20170722', '20170723', '20170724', '20170725', '20170726', '20170727', '20170728', '20170729', '20170730', '20170731', '20170801', '20170802', '20170803', '20170804', '20170805', '20170806', '20170807', '20170808', '20170809', '20170810', '20170811', '20170812', '20170813', '20170814', '20170815', '20170816', '20170817', '20170818', '20170819', '20170820', '20170821', '20170822', '20170823', '20170824', '20170825', '20170826', '20170827', '20170828', '20170829', '20170830', '20170831', '20170901', '20170902', '20170903', '20170904', '20170905', '20170906', '20170907', '20170908', '20170909', '20170910', '20170911', '20170912', '20170913', '20170914', '20170915', '20170916', '20170917', '20170918', '20170919', '20170920', '20170921', '20170922', '20170923', '20170924', '20170925', '20170926', '20170927', '20170928', '20170929', '20170930', '20171001', '20171002', '20171003', '20171004', '20171005', '20171006', '20171007', '20171008', '20171009', '20171010', '20171011', '20171012', '20171013', '20171014', '20171015', '20171016', '20171017', '20171018', '20171019', '20171020', '20171021', '20171022', '20171023', '20171024', '20171025', '20171026', '20171027', '20171028', '20171029', '20171030', '20171031', '20171101', '20171102', '20171103', '20171104', '20171105', '20171106', '20171107', '20171108', '20171109', '20171110', '20171111', '20171112', '20171113', '20171114', '20171115', '20171116', '20171117', '20171118', '20171119', '20171120', '20171121', '20171122', '20171123', '20171124', '20171125', '20171126', '20171127', '20171128', '20171129', '20171130', '20171201', '20171202', '20171203', '20171204', '20171205', '20171206', '20171207', '20171208', '20171209', '20171210', '20171211', '20171212', '20171213', '20171214', '20171215', '20171216', '20171217', '20171218', '20171219', '20171220', '20171221', '20171222', '20171223', '20171224', '20171225', '20171226', '20171227', '20171228', '20171229', '20171230', '20171231', '20180101', '20180102', '20180103', '20180104', '20180105', '20180106', '20180107', '20180108', '20180109', '20180110', '20180111', '20180112', '20180113', '20180114', '20180115', '20180116', '20180117', '20180118', '20180119', '20180120', '20180121', '20180122', '20180123', '20180124', '20180125', '20180126', '20180127', '20180128', '20180129', '20180130', '20180131', '20180201', '20180202', '20180203', '20180204', '20180205', '20180206', '20180207', '20180208', '20180209', '20180210', '20180211', '20180212', '20180213', '20180214', '20180215', '20180216', '20180217', '20180218', '20180219', '20180220', '20180221', '20180222', '20180223', '20180224', '20180225', '20180226', '20180227', '20180228', '20180301', '20180302', '20180303', '20180304', '20180305', '20180306', '20180307', '20180308', '20180309', '20180310', '20180311', '20180312', '20180313', '20180314', '20180315', '20180316', '20180317', '20180318', '20180319', '20180320', '20180321', '20180322', '20180323', '20180324', '20180325', '20180326', '20180327', '20180328', '20180329', '20180330', '20180331', '20180401', '20180402', '20180403', '20180404', '20180405', '20180406', '20180407', '20180408', '20180409', '20180410', '20180411', '20180412', '20180413', '20180414', '20180415', '20180416', '20180417', '20180418', '20180419', '20180420', '20180421', '20180422', '20180423', '20180424', '20180425', '20180426', '20180427', '20180428', '20180429', '20180430', '20180501', '20180502', '20180503', '20180504', '20180505', '20180506', '20180507', '20180508', '20180509', '20180510', '20180511', '20180512', '20180513', '20180514', '20180515', '20180516', '20180517', '20180518', '20180519', '20180520', '20180521', '20180522', '20180523', '20180524', '20180525', '20180526', '20180527', '20180528', '20180529', '20180530', '20180531', '20180601', '20180602', '20180603', '20180604', '20180605', '20180606', '20180607', '20180608', '20180609', '20180610', '20180611', '20180612', '20180613', '20180614', '20180615', '20180616', '20180617', '20180618', '20180619', '20180620', '20180621', '20180622', '20180623', '20180624', '20180625', '20180626', '20180627', '20180628', '20180629', '20180630', '20180701', '20180702', '20180703', '20180704', '20180705', '20180706', '20180707', '20180708', '20180709', '20180710', '20180711', '20180712', '20180713', '20180714', '20180715', '20180716', '20180717', '20180718', '20180719', '20180720', '20180721', '20180722', '20180723', '20180724', '20180725', '20180726', '20180727', '20180728', '20180729', '20180730', '20180731', '20180801', '20180802', '20180803', '20180804', '20180805', '20180806', '20180807', '20180808', '20180809', '20180810', '20180811', '20180812', '20180813', '20180814', '20180815', '20180816', '20180817', '20180818', '20180819', '20180820', '20180821', '20180822', '20180823', '20180824', '20180825', '20180826', '20180827', '20180828', '20180829', '20180830', '20180831', '20180901', '20180902', '20180903', '20180904', '20180905', '20180906', '20180907', '20180908', '20180909', '20180910', '20180911', '20180912', '20180913', '20180914', '20180915', '20180916', '20180917', '20180918', '20180919', '20180920', '20180921', '20180922', '20180923', '20180924', '20180925', '20180926', '20180927', '20180928', '20180929', '20180930', '20181001', '20181002', '20181003', '20181004', '20181005', '20181006', '20181007', '20181008', '20181009', '20181010', '20181011', '20181012', '20181013', '20181014', '20181015', '20181016', '20181017', '20181018', '20181019', '20181020', '20181021', '20181022', '20181023', '20181024', '20181025', '20181026', '20181027', '20181028', '20181029', '20181030', '20181031', '20181101', '20181102', '20181103', '20181104', '20181105', '20181106', '20181107', '20181108', '20181109', '20181110', '20181111', '20181112', '20181113', '20181114', '20181115', '20181116', '20181117', '20181118', '20181119', '20181120', '20181121', '20181122', '20181123', '20181124', '20181125', '20181126', '20181127', '20181128', '20181129', '20181130', '20181201', '20181202', '20181203', '20181204', '20181205', '20181206', '20181207', '20181208', '20181209', '20181210', '20181211', '20181212', '20181213', '20181214', '20181215', '20181216', '20181217', '20181218', '20181219', '20181220', '20181221', '20181222', '20181223', '20181224', '20181225', '20181226', '20181227', '20181228', '20181229', '20181230', '20181231', '20190101', '20190102', '20190103', '20190104', '20190105', '20190106', '20190107', '20190108', '20190109', '20190110', '20190111', '20190112', '20190113', '20190114', '20190115', '20190116', '20190117', '20190118', '20190119', '20190120', '20190121', '20190122', '20190123', '20190124', '20190125', '20190126', '20190127', '20190128', '20190129', '20190130', '20190131', '20190201', '20190202', '20190203', '20190204', '20190205', '20190206', '20190207', '20190208', '20190209', '20190210', '20190211', '20190212', '20190213', '20190214', '20190215', '20190216', '20190217', '20190218', '20190219', '20190220', '20190221', '20190222', '20190223', '20190224', '20190225', '20190226', '20190227', '20190228', '20190301', '20190302', '20190303', '20190304', '20190305', '20190306', '20190307', '20190308', '20190309', '20190310', '20190311', '20190312', '20190313', '20190314', '20190315', '20190316', '20190317', '20190318', '20190319', '20190320', '20190321', '20190322', '20190323', '20190324', '20190325', '20190326', '20190327', '20190328', '20190329', '20190330', '20190331', '20190401', '20190402', '20190403', '20190404', '20190405', '20190406', '20190407', '20190408', '20190409', '20190410', '20190411', '20190412', '20190413', '20190414', '20190415', '20190416', '20190417', '20190418', '20190419', '20190420', '20190421', '20190422', '20190423', '20190424', '20190425', '20190426', '20190427', '20190428', '20190429', '20190430', '20190501', '20190502', '20190503', '20190504', '20190505', '20190506', '20190507', '20190508', '20190509', '20190510', '20190511', '20190512', '20190513', '20190514', '20190515', '20190516', '20190517', '20190518', '20190519', '20190520', '20190521', '20190522', '20190523', '20190524', '20190525', '20190526', '20190527', '20190528', '20190529', '20190530', '20190531', '20190601', '20190602', '20190603', '20190604', '20190605', '20190606', '20190607', '20190608', '20190609', '20190610', '20190611', '20190612', '20190613', '20190614', '20190615', '20190616', '20190617', '20190618', '20190619', '20190620', '20190621', '20190622', '20190623', '20190624', '20190625', '20190626', '20190627', '20190628', '20190629', '20190630', '20190701', '20190702', '20190703', '20190704', '20190705', '20190706', '20190707', '20190708', '20190709', '20190710', '20190711', '20190712', '20190713', '20190714', '20190715', '20190716', '20190717', '20190718', '20190719', '20190720', '20190721', '20190722', '20190723', '20190724', '20190725', '20190726', '20190727', '20190728', '20190729', '20190730', '20190731', '20190801', '20190802', '20190803', '20190804', '20190805', '20190806', '20190807', '20190808', '20190809', '20190810', '20190811', '20190812', '20190813', '20190814', '20190815', '20190816', '20190817', '20190818', '20190819', '20190820', '20190821', '20190822', '20190823', '20190824', '20190825', '20190826', '20190827', '20190828', '20190829', '20190830', '20190831', '20190901', '20190902', '20190903', '20190904', '20190905', '20190906', '20190907', '20190908', '20190909', '20190910', '20190911', '20190912', '20190913', '20190914', '20190915', '20190916', '20190917', '20190918', '20190919', '20190920', '20190921', '20190922', '20190923', '20190924', '20190925', '20190926', '20190927', '20190928', '20190929', '20190930', '20191001', '20191002', '20191003', '20191004', '20191005', '20191006', '20191007', '20191008', '20191009', '20191010', '20191011', '20191012', '20191013', '20191014', '20191015', '20191016', '20191017', '20191018', '20191019', '20191020', '20191021', '20191022', '20191023', '20191024', '20191025', '20191026', '20191027', '20191028', '20191029', '20191030', '20191031', '20191101', '20191102', '20191103', '20191104', '20191105', '20191106', '20191107', '20191108', '20191109', '20191110', '20191111', '20191112', '20191113', '20191114', '20191115', '20191116', '20191117', '20191118', '20191119', '20191120', '20191121', '20191122', '20191123', '20191124', '20191125', '20191126', '20191127', '20191128', '20191129', '20191130', '20191201', '20191202', '20191203', '20191204', '20191205', '20191206', '20191207', '20191208', '20191209', '20191210', '20191211', '20191212', '20191213', '20191214', '20191215', '20191216', '20191217', '20191218', '20191219', '20191220', '20191221', '20191222', '20191223', '20191224', '20191225', '20191226', '20191227', '20191228', '20191229', '20191230', '20191231', '20200101', '20200102', '20200103', '20200104', '20200105', '20200106', '20200107', '20200108', '20200109', '20200110', '20200111', '20200112', '20200113', '20200114', '20200115', '20200116', '20200117', '20200118', '20200119', '20200120', '20200121', '20200122', '20200123', '20200124', '20200125', '20200126', '20200127', '20200128', '20200129', '20200130', '20200131', '20200201', '20200202', '20200203', '20200204', '20200205', '20200206', '20200207', '20200208', '20200209', '20200210', '20200211', '20200212', '20200213', '20200214', '20200215', '20200216', '20200217', '20200218', '20200219', '20200220', '20200221', '20200222', '20200223', '20200224', '20200225', '20200226', '20200227', '20200228', '20200229', '20200301', '20200302', '20200303', '20200304', '20200305', '20200306', '20200307', '20200308', '20200309', '20200310', '20200311', '20200312', '20200313', '20200314', '20200315', '20200316', '20200317', '20200318', '20200319', '20200320', '20200321', '20200322', '20200323', '20200324', '20200325', '20200326', '20200327', '20200328', '20200329', '20200330', '20200331', '20200401', '20200402', '20200403', '20200404', '20200405', '20200406', '20200407', '20200408', '20200409', '20200410', '20200411', '20200412', '20200413', '20200414', '20200415', '20200416', '20200417', '20200418', '20200419', '20200420', '20200421', '20200422', '20200423', '20200424', '20200425', '20200426', '20200427', '20200428', '20200429', '20200430', '20200501', '20200502', '20200503', '20200504', '20200505', '20200506', '20200507', '20200508', '20200509', '20200510', '20200511', '20200512', '20200513', '20200514', '20200515', '20200516', '20200517', '20200518', '20200519', '20200520', '20200521', '20200522', '20200523', '20200524', '20200525', '20200526', '20200527', '20200528', '20200529', '20200530', '20200531', '20200601', '20200602', '20200603', '20200604', '20200605', '20200606', '20200607', '20200608', '20200609', '20200610', '20200611', '20200612', '20200613', '20200614', '20200615', '20200616', '20200617', '20200618', '20200619', '20200620', '20200621', '20200622', '20200623', '20200624', '20200625', '20200626', '20200627', '20200628', '20200629', '20200630', '20200701', '20200702', '20200703', '20200704', '20200705', '20200706', '20200707', '20200708', '20200709', '20200710', '20200711', '20200712', '20200713', '20200714', '20200715', '20200716', '20200717', '20200718', '20200719', '20200720', '20200721', '20200722', '20200723', '20200724', '20200725', '20200726', '20200727', '20200728', '20200729', '20200730', '20200731', '20200801', '20200802', '20200803', '20200804', '20200805', '20200806', '20200807', '20200808', '20200809', '20200810', '20200811', '20200812', '20200813', '20200814', '20200815', '20200816', '20200817', '20200818', '20200819', '20200820', '20200821', '20200822', '20200823', '20200824', '20200825', '20200826', '20200827', '20200828', '20200829', '20200830', '20200831', '20200901', '20200902', '20200903', '20200904', '20200905', '20200906', '20200907', '20200908', '20200909', '20200910', '20200911', '20200912', '20200913', '20200914', '20200915', '20200916', '20200917', '20200918', '20200919', '20200920', '20200921', '20200922', '20200923', '20200924', '20200925', '20200926', '20200927', '20200928', '20200929', '20200930', '20201001', '20201002', '20201003', '20201004', '20201005', '20201006', '20201007', '20201008', '20201009', '20201010', '20201011', '20201012', '20201013', '20201014', '20201015', '20201016', '20201017', '20201018', '20201019', '20201020', '20201021', '20201022', '20201023', '20201024', '20201025', '20201026', '20201027', '20201028', '20201029', '20201030', '20201031', '20201101', '20201102', '20201103', '20201104', '20201105', '20201106', '20201107', '20201108', '20201109', '20201110', '20201111', '20201112', '20201113', '20201114', '20201115', '20201116', '20201117', '20201118', '20201119', '20201120', '20201121', '20201122', '20201123', '20201124', '20201125', '20201126', '20201127', '20201128', '20201129', '20201130', '20201201', '20201202', '20201203', '20201204', '20201205', '20201206', '20201207', '20201208', '20201209', '20201210', '20201211', '20201212', '20201213', '20201214', '20201215', '20201216', '20201217', '20201218', '20201219', '20201220', '20201221', '20201222', '20201223', '20201224', '20201225', '20201226', '20201227', '20201228', '20201229', '20201230', '20201231', '20210101', '20210102', '20210103', '20210104', '20210105', '20210106', '20210107', '20210108', '20210109', '20210110', '20210111', '20210112', '20210113', '20210114', '20210115', '20210116', '20210117', '20210118', '20210119', '20210120', '20210121', '20210122', '20210123', '20210124', '20210125', '20210126', '20210127', '20210128', '20210129', '20210130', '20210131', '20210201', '20210202', '20210203', '20210204', '20210205', '20210206', '20210207', '20210208', '20210209', '20210210', '20210211', '20210212', '20210213', '20210214', '20210215', '20210216', '20210217', '20210218', '20210219', '20210220', '20210221', '20210222', '20210223', '20210224', '20210225', '20210226', '20210227', '20210228', '20210301', '20210302', '20210303', '20210304', '20210305', '20210306', '20210307', '20210308', '20210309', '20210310', '20210311', '20210312', '20210313', '20210314', '20210315', '20210316', '20210317', '20210318', '20210319', '20210320', '20210321', '20210322', '20210323', '20210324', '20210325', '20210326', '20210327', '20210328', '20210329', '20210330', '20210331', '20210401', '20210402', '20210403', '20210404', '20210405', '20210406', '20210407', '20210408', '20210409', '20210410', '20210411', '20210412', '20210413', '20210414', '20210415', '20210416', '20210417', '20210418', '20210419', '20210420', '20210421', '20210422', '20210423', '20210424', '20210425', '20210426', '20210427', '20210428', '20210429', '20210430', '20210501', '20210502', '20210503', '20210504', '20210505', '20210506', '20210507', '20210508', '20210509', '20210510', '20210511', '20210512', '20210513', '20210514', '20210515', '20210516', '20210517', '20210518', '20210519', '20210520', '20210521', '20210522', '20210523', '20210524', '20210525', '20210526', '20210527', '20210528', '20210529', '20210530', '20210531', '20210601', '20210602', '20210603', '20210604', '20210605', '20210606', '20210607', '20210608', '20210609', '20210610', '20210611', '20210612', '20210613', '20210614', '20210615', '20210616', '20210617', '20210618', '20210619', '20210620', '20210621', '20210622', '20210623', '20210624', '20210625', '20210626', '20210627', '20210628', '20210629', '20210630', '20210701', '20210702', '20210703', '20210704', '20210705', '20210706', '20210707', '20210708', '20210709', '20210710', '20210711', '20210712', '20210713', '20210714', '20210715', '20210716', '20210717', '20210718', '20210719', '20210720', '20210721', '20210722', '20210723', '20210724', '20210725', '20210726', '20210727', '20210728', '20210729', '20210730', '20210731', '20210801', '20210802', '20210803', '20210804', '20210805', '20210806', '20210807', '20210808', '20210809', '20210810', '20210811', '20210812', '20210813', '20210814', '20210815', '20210816', '20210817', '20210818', '20210819', '20210820', '20210821', '20210822', '20210823', '20210824', '20210825', '20210826', '20210827', '20210828', '20210829', '20210830', '20210831', '20210901', '20210902', '20210903', '20210904', '20210905', '20210906', '20210907', '20210908', '20210909', '20210910', '20210911', '20210912', '20210913', '20210914', '20210915', '20210916', '20210917', '20210918', '20210919', '20210920', '20210921', '20210922', '20210923', '20210924', '20210925', '20210926', '20210927', '20210928', '20210929', '20210930', '20211001', '20211002', '20211003', '20211004', '20211005', '20211006', '20211007', '20211008', '20211009', '20211010', '20211011', '20211012', '20211013', '20211014', '20211015', '20211016', '20211017', '20211018', '20211019', '20211020', '20211021', '20211022', '20211023', '20211024', '20211025', '20211026', '20211027', '20211028', '20211029', '20211030', '20211031', '20211101', '20211102', '20211103', '20211104', '20211105', '20211106', '20211107', '20211108', '20211109', '20211110', '20211111', '20211112', '20211113', '20211114', '20211115', '20211116', '20211117', '20211118', '20211119', '20211120', '20211121', '20211122', '20211123', '20211124', '20211125', '20211126', '20211127', '20211128', '20211129', '20211130', '20211201', '20211202', '20211203', '20211204', '20211205', '20211206', '20211207', '20211208', '20211209', '20211210', '20211211', '20211212', '20211213', '20211214', '20211215', '20211216', '20211217', '20211218', '20211219', '20211220', '20211221', '20211222', '20211223', '20211224', '20211225', '20211226', '20211227', '20211228', '20211229', '20211230', '20211231', '20220101', '20220102', '20220103', '20220104', '20220105', '20220106', '20220107', '20220108', '20220109', '20220110', '20220111', '20220112', '20220113', '20220114', '20220115', '20220116', '20220117', '20220118', '20220119', '20220120', '20220121', '20220122', '20220123', '20220124', '20220125', '20220126', '20220127', '20220128', '20220129', '20220130', '20220131', '20220201', '20220202', '20220203', '20220204', '20220205', '20220206', '20220207', '20220208', '20220209', '20220210', '20220211', '20220212', '20220213', '20220214', '20220215', '20220216', '20220217', '20220218', '20220219', '20220220', '20220221', '20220222', '20220223', '20220224', '20220225', '20220226', '20220227', '20220228', '20220301', '20220302', '20220303', '20220304', '20220305', '20220306', '20220307', '20220308', '20220309', '20220310', '20220311', '20220312', '20220313', '20220314', '20220315', '20220316', '20220317', '20220318', '20220319', '20220320', '20220321', '20220322', '20220323', '20220324', '20220325', '20220326', '20220327', '20220328', '20220329', '20220330', '20220331', '20220401', '20220402', '20220403', '20220404', '20220405', '20220406', '20220407', '20220408', '20220409', '20220410', '20220411', '20220412', '20220413', '20220414', '20220415', '20220416', '20220417', '20220418', '20220419', '20220420', '20220421', '20220422', '20220423', '20220424', '20220425', '20220426', '20220427', '20220428', '20220429', '20220430', '20220501', '20220502', '20220503', '20220504', '20220505', '20220506', '20220507', '20220508', '20220509', '20220510', '20220511', '20220512', '20220513', '20220514', '20220515', '20220516', '20220517', '20220518', '20220519', '20220520', '20220521', '20220522', '20220523', '20220524', '20220525', '20220526', '20220527', '20220528', '20220529', '20220530', '20220531', '20220601', '20220602', '20220603', '20220604', '20220605', '20220606', '20220607', '20220608', '20220609', '20220610', '20220611', '20220612', '20220613', '20220614', '20220615', '20220616', '20220617', '20220618', '20220619', '20220620', '20220621', '20220622', '20220623', '20220624', '20220625', '20220626', '20220627', '20220628', '20220629', '20220630', '20220701', '20220702', '20220703', '20220704', '20220705', '20220706', '20220707', '20220708', '20220709', '20220710', '20220711', '20220712', '20220713', '20220714', '20220715', '20220716', '20220717', '20220718', '20220719', '20220720', '20220721', '20220722', '20220723', '20220724', '20220725', '20220726', '20220727', '20220728', '20220729', '20220730', '20220731', '20220801', '20220802', '20220803', '20220804', '20220805', '20220806', '20220807', '20220808', '20220809', '20220810', '20220811', '20220812', '20220813', '20220814', '20220815', '20220816', '20220817', '20220818', '20220819', '20220820', '20220821', '20220822', '20220823', '20220824', '20220825', '20220826', '20220827', '20220828', '20220829', '20220830', '20220831', '20220901', '20220902', '20220903', '20220904', '20220905', '20220906', '20220907', '20220908', '20220909', '20220910', '20220911', '20220912', '20220913', '20220914', '20220915', '20220916', '20220917', '20220918', '20220919', '20220920', '20220921', '20220922', '20220923', '20220924', '20220925', '20220926', '20220927', '20220928', '20220929', '20220930', '20221001', '20221002', '20221003', '20221004', '20221005', '20221006', '20221007', '20221008', '20221009', '20221010', '20221011', '20221012', '20221013', '20221014', '20221015', '20221016', '20221017', '20221018', '20221019', '20221020', '20221021', '20221022', '20221023', '20221024', '20221025', '20221026', '20221027', '20221028', '20221029', '20221030', '20221031', '20221101', '20221102', '20221103', '20221104', '20221105', '20221106', '20221107', '20221108', '20221109', '20221110', '20221111', '20221112', '20221113', '20221114', '20221115', '20221116', '20221117', '20221118', '20221119', '20221120', '20221121', '20221122', '20221123', '20221124', '20221125', '20221126', '20221127', '20221128', '20221129', '20221130', '20221201', '20221202', '20221203', '20221204', '20221205', '20221206', '20221207', '20221208', '20221209', '20221210', '20221211', '20221212', '20221213', '20221214', '20221215', '20221216', '20221217', '20221218', '20221219', '20221220', '20221221', '20221222', '20221223', '20221224', '20221225', '20221226', '20221227', '20221228', '20221229', '20221230', '20221231', '20230101', '20230102', '20230103', '20230104', '20230105', '20230106', '20230107', '20230108', '20230109', '20230110', '20230111', '20230112', '20230113', '20230114', '20230115', '20230116', '20230117', '20230118', '20230119', '20230120', '20230121', '20230122', '20230123', '20230124', '20230125', '20230126', '20230127', '20230128', '20230129', '20230130', '20230131', '20230201', '20230202', '20230203', '20230204', '20230205', '20230206', '20230207', '20230208', '20230209', '20230210', '20230211', '20230212', '20230213', '20230214', '20230215', '20230216', '20230217', '20230218', '20230219', '20230220', '20230221', '20230222', '20230223', '20230224', '20230225', '20230226', '20230227', '20230228', '20230301', '20230302', '20230303', '20230304', '20230305', '20230306', '20230307', '20230308', '20230309', '20230310', '20230311', '20230312', '20230313', '20230314', '20230315', '20230316', '20230317', '20230318', '20230319', '20230320', '20230321', '20230322', '20230323', '20230324', '20230325', '20230326', '20230327', '20230328', '20230329', '20230330', '20230331', '20230401', '20230402', '20230403', '20230404', '20230405', '20230406', '20230407', '20230408', '20230409', '20230410', '20230411', '20230412', '20230413', '20230414', '20230415', '20230416', '20230417', '20230418', '20230419', '20230420', '20230421', '20230422', '20230423', '20230424', '20230425', '20230426', '20230427', '20230428', '20230429', '20230430', '20230501', '20230502', '20230503', '20230504', '20230505', '20230506', '20230507', '20230508', '20230509', '20230510', '20230511', '20230512', '20230513', '20230514', '20230515', '20230516', '20230517', '20230518', '20230519', '20230520', '20230521', '20230522', '20230523', '20230524', '20230525', '20230526', '20230527', '20230528', '20230529', '20230530', '20230531', '20230601', '20230602', '20230603', '20230604', '20230605', '20230606', '20230607', '20230608', '20230609', '20230610', '20230611', '20230612', '20230613', '20230614', '20230615', '20230616', '20230617', '20230618', '20230619', '20230620', '20230621', '20230622', '20230623', '20230624', '20230625', '20230626', '20230627', '20230628', '20230629', '20230630', '20230701', '20230702', '20230703', '20230704', '20230705', '20230706', '20230707', '20230708', '20230709', '20230710', '20230711', '20230712', '20230713', '20230714', '20230715', '20230716', '20230717', '20230718', '20230719', '20230720', '20230721', '20230722', '20230723', '20230724', '20230725', '20230726', '20230727', '20230728', '20230729', '20230730', '20230731', '20230801', '20230802', '20230803', '20230804', '20230805', '20230806', '20230807', '20230808', '20230809', '20230810', '20230811', '20230812', '20230813', '20230814', '20230815', '20230816', '20230817', '20230818', '20230819', '20230820', '20230821', '20230822', '20230823', '20230824', '20230825', '20230826', '20230827', '20230828', '20230829', '20230830', '20230831', '20230901', '20230902', '20230903', '20230904', '20230905', '20230906', '20230907', '20230908', '20230909', '20230910', '20230911', '20230912', '20230913', '20230914', '20230915', '20230916', '20230917', '20230918', '20230919', '20230920', '20230921', '20230922', '20230923', '20230924', '20230925', '20230926', '20230927', '20230928', '20230929', '20230930', '20231001', '20231002', '20231003', '20231004', '20231005', '20231006', '20231007', '20231008', '20231009', '20231010', '20231011', '20231012', '20231013', '20231014', '20231015', '20231016', '20231017', '20231018', '20231019', '20231020', '20231021', '20231022', '20231023', '20231024', '20231025', '20231026', '20231027', '20231028', '20231029', '20231030', '20231031', '20231101', '20231102', '20231103', '20231104', '20231105', '20231106', '20231107', '20231108', '20231109', '20231110', '20231111', '20231112', '20231113', '20231114', '20231115', '20231116', '20231117', '20231118', '20231119', '20231120', '20231121', '20231122', '20231123', '20231124', '20231125', '20231126', '20231127', '20231128', '20231129', '20231130', '20231201', '20231202', '20231203', '20231204', '20231205', '20231206', '20231207', '20231208', '20231209', '20231210', '20231211', '20231212', '20231213', '20231214', '20231215', '20231216', '20231217', '20231218', '20231219', '20231220', '20231221', '20231222', '20231223', '20231224', '20231225', '20231226', '20231227', '20231228', '20231229', '20231230', '20231231', '20240101', '20240102', '20240103', '20240104', '20240105', '20240106', '20240107', '20240108', '20240109', '20240110', '20240111', '20240112', '20240113', '20240114', '20240115', '20240116', '20240117', '20240118', '20240119', '20240120', '20240121', '20240122', '20240123', '20240124', '20240125', '20240126', '20240127', '20240128', '20240129', '20240130', '20240131', '20240201', '20240202', '20240203', '20240204', '20240205', '20240206', '20240207', '20240208', '20240209', '20240210', '20240211', '20240212', '20240213', '20240214', '20240215', '20240216', '20240217', '20240218', '20240219', '20240220', '20240221', '20240222', '20240223', '20240224', '20240225', '20240226', '20240227', '20240228', '20240229', '20240301', '20240302', '20240303', '20240304', '20240305', '20240306', '20240307', '20240308', '20240309', '20240310', '20240311', '20240312', '20240313', '20240314', '20240315', '20240316', '20240317', '20240318', '20240319', '20240320', '20240321', '20240322', '20240323', '20240324', '20240325', '20240326', '20240327', '20240328', '20240329', '20240330', '20240331', '20240401', '20240402', '20240403', '20240404', '20240405', '20240406', '20240407', '20240408', '20240409', '20240410', '20240411', '20240412', '20240413', '20240414', '20240415', '20240416', '20240417', '20240418', '20240419', '20240420', '20240421', '20240422', '20240423', '20240424', '20240425', '20240426', '20240427', '20240428', '20240429', '20240430', '20240501', '20240502', '20240503', '20240504', '20240505', '20240506', '20240507', '20240508', '20240509', '20240510', '20240511', '20240512', '20240513', '20240514', '20240515', '20240516', '20240517', '20240518', '20240519', '20240520', '20240521', '20240522', '20240523', '20240524', '20240525', '20240526', '20240527', '20240528', '20240529', '20240530', '20240531', '20240601', '20240602', '20240603', '20240604', '20240605', '20240606', '20240607', '20240608', '20240609', '20240610', '20240611', '20240612', '20240613'] +No https://quotsoft.net/air/data/china_sites_20140501.csv +No https://quotsoft.net/air/data/beijing_all_20131201.csv +No https://quotsoft.net/air/data/china_cities_20140501.csv +No https://quotsoft.net/air/data/beijing_extra_20131201.csv +No https://quotsoft.net/air/data/china_sites_20140502.csv +No https://quotsoft.net/air/data/beijing_all_20131202.csv +No https://quotsoft.net/air/data/china_cities_20140502.csv +No https://quotsoft.net/air/data/beijing_extra_20131202.csv +No https://quotsoft.net/air/data/china_sites_20140503.csv +No https://quotsoft.net/air/data/beijing_all_20131203.csv +No https://quotsoft.net/air/data/china_cities_20140503.csv +No https://quotsoft.net/air/data/beijing_extra_20131203.csv +No https://quotsoft.net/air/data/china_sites_20140504.csv +No https://quotsoft.net/air/data/beijing_all_20131204.csv +No https://quotsoft.net/air/data/china_cities_20140504.csv +No https://quotsoft.net/air/data/beijing_extra_20131204.csv +No https://quotsoft.net/air/data/china_sites_20140505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131205.csv +No https://quotsoft.net/air/data/china_cities_20140505.csv +No https://quotsoft.net/air/data/beijing_extra_20131205.csv +No https://quotsoft.net/air/data/china_sites_20140506.csv +No https://quotsoft.net/air/data/china_cities_20140506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131206.csv +No https://quotsoft.net/air/data/beijing_extra_20131206.csv +No https://quotsoft.net/air/data/china_sites_20140507.csv +No https://quotsoft.net/air/data/china_cities_20140507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131207.csv +No https://quotsoft.net/air/data/beijing_extra_20131207.csv +No https://quotsoft.net/air/data/china_sites_20140508.csv +No https://quotsoft.net/air/data/china_cities_20140508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131208.csv +No https://quotsoft.net/air/data/beijing_extra_20131208.csv +No https://quotsoft.net/air/data/china_sites_20140509.csv +No https://quotsoft.net/air/data/china_cities_20140509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131209.csv +No https://quotsoft.net/air/data/beijing_extra_20131209.csv +No https://quotsoft.net/air/data/china_sites_20140510.csv +No https://quotsoft.net/air/data/china_cities_20140510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131210.csv +No https://quotsoft.net/air/data/china_sites_20140511.csv +No https://quotsoft.net/air/data/beijing_extra_20131210.csv +No https://quotsoft.net/air/data/china_cities_20140511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131211.csv +No https://quotsoft.net/air/data/china_sites_20140512.csv +No https://quotsoft.net/air/data/beijing_extra_20131211.csv +No https://quotsoft.net/air/data/china_cities_20140512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131212.csv +No https://quotsoft.net/air/data/beijing_extra_20131212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140513.csv +No https://quotsoft.net/air/data/beijing_extra_20131213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140514.csv +No https://quotsoft.net/air/data/beijing_extra_20131214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131215.csv +No https://quotsoft.net/air/data/beijing_extra_20131215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131216.csv +No https://quotsoft.net/air/data/beijing_extra_20131216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140516.csv +No https://quotsoft.net/air/data/beijing_extra_20131217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131218.csv +No https://quotsoft.net/air/data/beijing_extra_20131218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131219.csv +No https://quotsoft.net/air/data/beijing_extra_20131219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131220.csv +No https://quotsoft.net/air/data/beijing_extra_20131220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131221.csv +No https://quotsoft.net/air/data/beijing_extra_20131221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140519.csv +No https://quotsoft.net/air/data/beijing_extra_20131222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131223.csv +No https://quotsoft.net/air/data/beijing_extra_20131223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131224.csv +No https://quotsoft.net/air/data/beijing_extra_20131224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131225.csv +No https://quotsoft.net/air/data/beijing_extra_20131225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131226.csv +No https://quotsoft.net/air/data/beijing_extra_20131226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140522.csv +No https://quotsoft.net/air/data/beijing_extra_20131227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131228.csv +No https://quotsoft.net/air/data/beijing_extra_20131228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131229.csv +No https://quotsoft.net/air/data/beijing_extra_20131229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131230.csv +No https://quotsoft.net/air/data/beijing_extra_20131230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20131231.csv +No https://quotsoft.net/air/data/beijing_extra_20131231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140101.csv +No https://quotsoft.net/air/data/beijing_extra_20140101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140102.csv +No https://quotsoft.net/air/data/beijing_extra_20140102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140103.csv +No https://quotsoft.net/air/data/beijing_extra_20140103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140104.csv +No https://quotsoft.net/air/data/beijing_extra_20140104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140105.csv +No https://quotsoft.net/air/data/beijing_extra_20140105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140528.csv +No https://quotsoft.net/air/data/beijing_extra_20140106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140529.csv +No https://quotsoft.net/air/data/beijing_extra_20140107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140108.csv +No https://quotsoft.net/air/data/beijing_extra_20140108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140530.csv +No https://quotsoft.net/air/data/beijing_extra_20140109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140110.csv +No https://quotsoft.net/air/data/beijing_extra_20140110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140111.csv +No https://quotsoft.net/air/data/beijing_extra_20140111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140112.csv +No https://quotsoft.net/air/data/beijing_extra_20140112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140113.csv +No https://quotsoft.net/air/data/beijing_extra_20140113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140602.csv +No https://quotsoft.net/air/data/beijing_extra_20140114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140603.csv +No https://quotsoft.net/air/data/beijing_extra_20140115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140116.csv +No https://quotsoft.net/air/data/beijing_extra_20140116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140604.csv +No https://quotsoft.net/air/data/beijing_extra_20140117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140605.csv +No https://quotsoft.net/air/data/beijing_extra_20140118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140119.csv +No https://quotsoft.net/air/data/beijing_extra_20140119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140120.csv +No https://quotsoft.net/air/data/beijing_extra_20140120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140121.csv +No https://quotsoft.net/air/data/beijing_extra_20140121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140122.csv +No https://quotsoft.net/air/data/beijing_extra_20140122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140123.csv +No https://quotsoft.net/air/data/beijing_extra_20140123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140124.csv +No https://quotsoft.net/air/data/beijing_extra_20140124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140125.csv +No https://quotsoft.net/air/data/beijing_extra_20140125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140610.csv +No https://quotsoft.net/air/data/beijing_extra_20140126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140127.csv +No https://quotsoft.net/air/data/beijing_extra_20140127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140128.csv +No https://quotsoft.net/air/data/beijing_extra_20140128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140129.csv +No https://quotsoft.net/air/data/beijing_extra_20140129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140130.csv +No https://quotsoft.net/air/data/beijing_extra_20140130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140131.csv +No https://quotsoft.net/air/data/beijing_extra_20140131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140201.csv +No https://quotsoft.net/air/data/beijing_extra_20140201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140614.csv +No https://quotsoft.net/air/data/beijing_extra_20140202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140615.csv +No https://quotsoft.net/air/data/beijing_extra_20140203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140204.csv +No https://quotsoft.net/air/data/beijing_extra_20140204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140205.csv +No https://quotsoft.net/air/data/beijing_extra_20140205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140206.csv +No https://quotsoft.net/air/data/beijing_extra_20140206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140207.csv +No https://quotsoft.net/air/data/beijing_extra_20140207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140618.csv +No https://quotsoft.net/air/data/beijing_extra_20140208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140209.csv +No https://quotsoft.net/air/data/beijing_extra_20140209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140210.csv +No https://quotsoft.net/air/data/beijing_extra_20140210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140211.csv +No https://quotsoft.net/air/data/beijing_extra_20140211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140212.csv +No https://quotsoft.net/air/data/beijing_extra_20140212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140213.csv +No https://quotsoft.net/air/data/beijing_extra_20140213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140214.csv +No https://quotsoft.net/air/data/beijing_extra_20140214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140622.csv +No https://quotsoft.net/air/data/beijing_extra_20140215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140623.csv +No https://quotsoft.net/air/data/beijing_extra_20140216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140217.csv +No https://quotsoft.net/air/data/beijing_extra_20140217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140218.csv +No https://quotsoft.net/air/data/beijing_extra_20140218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140219.csv +No https://quotsoft.net/air/data/beijing_extra_20140219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140220.csv +No https://quotsoft.net/air/data/beijing_extra_20140220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140221.csv +No https://quotsoft.net/air/data/beijing_extra_20140221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140222.csv +No https://quotsoft.net/air/data/beijing_extra_20140222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140627.csv +No https://quotsoft.net/air/data/beijing_extra_20140223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140628.csv +No https://quotsoft.net/air/data/beijing_extra_20140224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140225.csv +No https://quotsoft.net/air/data/beijing_extra_20140225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140226.csv +No https://quotsoft.net/air/data/beijing_extra_20140226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140227.csv +No https://quotsoft.net/air/data/beijing_extra_20140227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140630.csv +No https://quotsoft.net/air/data/beijing_extra_20140228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140701.csv +No https://quotsoft.net/air/data/beijing_extra_20140301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140302.csv +No https://quotsoft.net/air/data/beijing_extra_20140302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140702.csv +No https://quotsoft.net/air/data/beijing_extra_20140303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140304.csv +No https://quotsoft.net/air/data/beijing_extra_20140304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140305.csv +No https://quotsoft.net/air/data/beijing_extra_20140305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140306.csv +No https://quotsoft.net/air/data/beijing_extra_20140306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140307.csv +No https://quotsoft.net/air/data/beijing_extra_20140307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140705.csv +No https://quotsoft.net/air/data/beijing_extra_20140308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140706.csv +No https://quotsoft.net/air/data/beijing_extra_20140309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140310.csv +No https://quotsoft.net/air/data/beijing_extra_20140310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140707.csv +No https://quotsoft.net/air/data/beijing_extra_20140311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140708.csv +No https://quotsoft.net/air/data/beijing_extra_20140312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140313.csv +No https://quotsoft.net/air/data/beijing_extra_20140313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140314.csv +No https://quotsoft.net/air/data/beijing_extra_20140314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140315.csv +No https://quotsoft.net/air/data/beijing_extra_20140315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140316.csv +No https://quotsoft.net/air/data/beijing_extra_20140316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140711.csv +No https://quotsoft.net/air/data/beijing_extra_20140317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140318.csv +No https://quotsoft.net/air/data/beijing_extra_20140318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140712.csv +No https://quotsoft.net/air/data/beijing_extra_20140319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140713.csv +No https://quotsoft.net/air/data/beijing_extra_20140320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140321.csv +No https://quotsoft.net/air/data/beijing_extra_20140321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140714.csv +No https://quotsoft.net/air/data/beijing_extra_20140322.csv +No https://quotsoft.net/air/data/china_sites_20140715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140323.csv +No https://quotsoft.net/air/data/china_cities_20140715.csv +No https://quotsoft.net/air/data/beijing_extra_20140323.csv +No https://quotsoft.net/air/data/china_sites_20140716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140324.csv +No https://quotsoft.net/air/data/china_cities_20140716.csv +No https://quotsoft.net/air/data/beijing_extra_20140324.csv +No https://quotsoft.net/air/data/china_sites_20140717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140325.csv +No https://quotsoft.net/air/data/china_cities_20140717.csv +No https://quotsoft.net/air/data/beijing_extra_20140325.csv +No https://quotsoft.net/air/data/china_sites_20140718.csv +No https://quotsoft.net/air/data/china_cities_20140718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140326.csv +No https://quotsoft.net/air/data/beijing_extra_20140326.csv +No https://quotsoft.net/air/data/china_sites_20140719.csv +No https://quotsoft.net/air/data/china_cities_20140719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140327.csv +No https://quotsoft.net/air/data/beijing_extra_20140327.csv +No https://quotsoft.net/air/data/china_sites_20140720.csv +No https://quotsoft.net/air/data/china_cities_20140720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140328.csv +No https://quotsoft.net/air/data/beijing_extra_20140328.csv +No https://quotsoft.net/air/data/china_sites_20140721.csv +No https://quotsoft.net/air/data/china_cities_20140721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140329.csv +No https://quotsoft.net/air/data/beijing_extra_20140329.csv +No https://quotsoft.net/air/data/china_sites_20140722.csv +No https://quotsoft.net/air/data/china_cities_20140722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140330.csv +No https://quotsoft.net/air/data/beijing_extra_20140330.csv +No https://quotsoft.net/air/data/china_sites_20140723.csv +No https://quotsoft.net/air/data/china_cities_20140723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140331.csv +No https://quotsoft.net/air/data/beijing_extra_20140331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140401.csv +No https://quotsoft.net/air/data/beijing_extra_20140401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140728.csv +No https://quotsoft.net/air/data/beijing_all_20140407.csv +No https://quotsoft.net/air/data/beijing_extra_20140407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140808.csv +No https://quotsoft.net/air/data/beijing_all_20140424.csv +No https://quotsoft.net/air/data/beijing_extra_20140424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140809.csv +No https://quotsoft.net/air/data/beijing_all_20140425.csv +No https://quotsoft.net/air/data/beijing_extra_20140425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140809.csv +No https://quotsoft.net/air/data/beijing_all_20140426.csv +No https://quotsoft.net/air/data/beijing_extra_20140426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140810.csv +No https://quotsoft.net/air/data/beijing_all_20140427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140810.csv +No https://quotsoft.net/air/data/beijing_extra_20140427.csv +No https://quotsoft.net/air/data/beijing_all_20140428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140811.csv +No https://quotsoft.net/air/data/beijing_extra_20140428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140609.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20140930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20140930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141124.csv +No https://quotsoft.net/air/data/china_sites_20150101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141125.csv +No https://quotsoft.net/air/data/china_cities_20150101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20141231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20141231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150303.csv +No https://quotsoft.net/air/data/beijing_all_20150228.csv +No https://quotsoft.net/air/data/beijing_extra_20150228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20150930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20150930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20151231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20151231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20160930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20160930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20161231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20161231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160609.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170609.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20170930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20170930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20171231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20171231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20180930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20180930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20181231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20181231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20190930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20190930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180116.csv +No https://quotsoft.net/air/data/beijing_all_20191001.csv +No https://quotsoft.net/air/data/beijing_extra_20191001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20191231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20191231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180520.csv +No https://quotsoft.net/air/data/beijing_all_20200419.csv +No https://quotsoft.net/air/data/beijing_extra_20200419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20200930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20200930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20201231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20201231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210118.csv +No https://quotsoft.net/air/data/beijing_all_20210119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181108.csv +No https://quotsoft.net/air/data/beijing_extra_20210119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181108.csv +No https://quotsoft.net/air/data/beijing_all_20210120.csv +No https://quotsoft.net/air/data/beijing_extra_20210120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181109.csv +No https://quotsoft.net/air/data/beijing_all_20210121.csv +No https://quotsoft.net/air/data/beijing_extra_20210121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181109.csv +No https://quotsoft.net/air/data/beijing_all_20210122.csv +No https://quotsoft.net/air/data/beijing_extra_20210122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210330.csv +No https://quotsoft.net/air/data/china_sites_20181222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210330.csv +No https://quotsoft.net/air/data/china_cities_20181222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210331.csv +No https://quotsoft.net/air/data/china_sites_20181223.csv +No https://quotsoft.net/air/data/china_cities_20181223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210331.csv +No https://quotsoft.net/air/data/china_sites_20181224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210401.csv +No https://quotsoft.net/air/data/china_cities_20181224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210401.csv +No https://quotsoft.net/air/data/china_sites_20181225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210402.csv +No https://quotsoft.net/air/data/china_cities_20181225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210402.csv +No https://quotsoft.net/air/data/china_sites_20181226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210403.csv +No https://quotsoft.net/air/data/china_cities_20181226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210719.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210724.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190412.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20210930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20210930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211022.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20211231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20211231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190617.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190630.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190705.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190706.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190813.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220423.csv +No https://quotsoft.net/air/data/china_sites_20190824.csv +No https://quotsoft.net/air/data/china_cities_20190824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220428.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220524.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220604.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220612.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220710.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220711.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191017.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220718.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220723.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220731.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220805.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220828.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220927.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20220930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20220930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221012.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221023.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221030.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221107.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191227.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191230.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191231.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200115.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200120.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20221231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20221231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200131.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230108.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230121.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230214.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200225.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200228.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200229.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200301.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230223.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200302.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200303.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230226.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200304.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200304.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200305.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200306.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200307.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200308.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200309.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200310.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200311.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200312.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200312.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200313.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200314.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200315.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230318.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200316.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200317.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200318.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230323.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200319.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200320.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200321.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200323.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200324.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200325.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200326.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200326.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200327.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200328.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200329.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200330.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200331.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200331.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200401.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200402.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200403.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230418.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200404.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200405.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200406.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200407.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200408.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200408.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200409.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200410.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200411.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200413.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200413.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200414.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200415.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200416.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200418.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200419.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200420.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200421.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200421.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200422.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200423.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200424.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200426.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200426.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200427.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200429.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200429.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200430.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200501.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200502.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200504.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200504.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200505.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200506.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200507.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200507.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200508.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200509.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200510.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230616.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200511.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200512.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200513.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230621.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200515.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200515.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230625.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200516.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230626.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200517.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200518.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200518.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230629.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200519.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200520.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200521.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200522.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200523.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230709.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200525.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200525.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200526.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230712.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200527.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200528.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200528.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230715.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230716.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200529.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200530.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200531.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200602.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200602.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200603.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230726.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230727.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200605.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200605.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200606.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200607.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200608.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230803.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230804.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200610.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200610.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200611.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230809.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200613.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200614.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200614.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200615.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200615.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230814.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200616.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200617.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230817.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200618.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200618.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200619.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200619.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200620.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200620.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230822.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200621.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200622.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200622.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200623.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200623.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230827.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200624.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200624.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200625.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200626.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230901.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200627.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200627.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200628.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200628.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200629.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230906.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200630.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200701.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200701.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230909.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200702.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200702.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200703.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200703.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200704.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200704.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200705.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230916.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200706.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230917.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200707.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200707.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200708.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200708.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230921.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200709.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200710.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200711.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200712.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230926.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200713.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200713.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200714.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200714.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20230930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20230930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200715.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231001.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231002.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200716.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200717.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200717.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200718.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231006.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200719.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200720.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200720.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200721.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200721.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231011.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200722.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200722.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200723.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200724.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200725.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200725.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231018.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200726.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200727.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200728.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200728.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200729.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200729.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200730.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200730.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231026.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200731.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231027.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200801.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200801.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200802.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200802.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231031.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200803.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200804.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200805.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231104.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200806.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200806.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200807.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200807.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200808.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200808.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200809.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200810.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200810.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200811.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200811.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200812.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200812.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231116.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200813.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200814.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200815.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200815.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200816.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200816.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200817.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200818.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200818.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200819.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200819.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200820.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200820.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200821.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200821.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231201.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200822.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200823.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200823.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200824.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200824.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200825.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200825.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200826.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200826.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231208.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231209.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200827.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200828.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200829.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200829.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200830.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200830.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200831.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200831.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200901.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200902.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200902.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200903.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200903.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200904.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200904.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200905.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200905.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231224.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231225.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200906.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200907.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200907.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200908.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200908.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231230.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200909.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20231231.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20231231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200910.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200910.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200911.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200911.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200912.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200912.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200913.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200913.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200914.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200914.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200915.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200915.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240109.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200916.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200917.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240112.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200918.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200918.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200919.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200919.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200920.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200920.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200921.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200922.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200922.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200923.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200923.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200924.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200924.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200925.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200925.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240125.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240126.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200926.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200927.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200928.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200928.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200929.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200929.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240131.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200930.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200930.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240202.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240203.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201001.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201002.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201003.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201003.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240207.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201004.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201004.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201005.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201005.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201006.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201007.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201007.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201008.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201008.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240215.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201009.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201009.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201010.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201010.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240219.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201011.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201012.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201013.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201013.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240223.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201014.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201014.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240224.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201015.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201015.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240226.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201016.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201016.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240227.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240228.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201017.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240229.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240301.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201018.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240302.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201019.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201019.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240303.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201020.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201020.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240305.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201021.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201021.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240306.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240307.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201022.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240308.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240309.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201023.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240310.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201024.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201024.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240311.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201025.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201025.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240313.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201026.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240314.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240315.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201027.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240316.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201028.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201028.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240317.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201029.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201029.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240319.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240320.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201030.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240321.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201031.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240322.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240322.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201101.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201101.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240324.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201102.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201102.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240325.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201103.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201103.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240327.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240328.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201104.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240329.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201105.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201105.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240330.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201106.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201106.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240401.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240402.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201107.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240403.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201108.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240404.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240405.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201109.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240406.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201110.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201110.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240407.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201111.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201111.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240409.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240410.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201112.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240411.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201113.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201113.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240412.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201114.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201114.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240414.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240415.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201115.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240416.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201116.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240417.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240417.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201117.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201117.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240419.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201118.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201118.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240420.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201119.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201119.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240422.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240423.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201120.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240424.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201121.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240425.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240425.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201122.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201122.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240427.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201123.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201123.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240428.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201124.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201124.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240430.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240501.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201125.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240502.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201126.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240503.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240503.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201127.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201127.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240505.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201128.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201128.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240506.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201129.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201129.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240508.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201130.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201130.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240509.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240510.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201201.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240511.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240512.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201202.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240513.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201203.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240514.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240514.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201204.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201204.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240516.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201205.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201205.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240517.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201206.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201206.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240519.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240520.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201207.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240521.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201208.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240522.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201209.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240523.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201210.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201210.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240524.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201211.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201211.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240526.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201212.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201212.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240527.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201213.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201213.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240529.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240530.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201214.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240531.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201215.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240601.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240601.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201216.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201216.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240603.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201217.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201217.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240604.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201218.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201218.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240606.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240607.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201219.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240608.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201220.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201220.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240609.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201221.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201221.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240611.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201222.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201222.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240612.csv +Downloaded https://quotsoft.net/air/data/beijing_all_20240613.csv +Downloaded https://quotsoft.net/air/data/beijing_extra_20240613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201225.csv +Pseudo-terminal will not be allocated because stdin is not a terminal. +Downloaded https://quotsoft.net/air/data/china_cities_20201225.csv +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Downloaded https://quotsoft.net/air/data/china_sites_20201226.csv +Submitted batch job 189694 +Downloaded https://quotsoft.net/air/data/china_cities_20201226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201227.csv +Started downloading data of CAPMoN +Downloaded https://quotsoft.net/air/data/china_cities_20201227.csv +['1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_sites_20201228.csv +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1980.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201228.csv +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_sites_20201229.csv +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1981.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201229.csv +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_sites_20201230.csv +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1982.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201230.csv +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_sites_20201231.csv +[Errno 2] No such file or directory: '/esarchive/obs/ghost/CAPMoN/original_files/1.6/precip/major-ions/precip/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1983.csv' +Started downloading data of CANADA_NAPS +Downloaded https://quotsoft.net/air/data/china_cities_20201231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210101.csv +['1974', '1975', '1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +Downloaded https://quotsoft.net/air/data/china_sites_20210102.csv +Downloaded CO in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20210102.csv +No data for NO in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210103.csv +Downloaded NO2 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210104.csv +Downloaded O3 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20210104.csv +No data for PM10 in 1974 +No data for PM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210105.csv +Downloaded SO2 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210107.csv +No file found for Carbonyls in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210108.csv +No file found for VOC in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210109.csv +No file found for IntegratedPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20210109.csv +No file found for IntegratedPM2.5-10 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210110.csv +No file found for NAPSReferenceMethodPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20210110.csv +No file found for PartisolPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210111.csv +No file found for PMSpeciation in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20210112.csv +No file found for PMDICHOT in 1974 +No major ions data in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20210112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210113.csv +Downloaded CO in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210113.csv +No data for NO in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210114.csv +Downloaded NO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210114.csv +Downloaded O3 in 1975 +No data for PM10 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210115.csv +No data for PM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210116.csv +Downloaded SO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210117.csv +No file found for Carbonyls in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210118.csv +No file found for VOC in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210118.csv +No file found for IntegratedPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210119.csv +No file found for IntegratedPM2.5-10 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210119.csv +No file found for NAPSReferenceMethodPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210120.csv +No file found for PartisolPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210121.csv +No file found for PMSpeciation in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20210121.csv +No file found for PMDICHOT in 1975 +No major ions data in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20210122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210122.csv +Downloaded CO in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210123.csv +No data for NO in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20210123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210124.csv +Downloaded NO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20210124.csv +Downloaded O3 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210125.csv +No data for PM10 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20210125.csv +No data for PM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210126.csv +Downloaded SO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210128.csv +No file found for Carbonyls in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210129.csv +No file found for VOC in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20210129.csv +No file found for IntegratedPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210130.csv +No file found for IntegratedPM2.5-10 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20210130.csv +No file found for NAPSReferenceMethodPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210131.csv +No file found for PartisolPM2.5 in 1976 +No file found for PMSpeciation in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210201.csv +No file found for PMDICHOT in 1976 +No major ions data in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20210202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210202.csv +Downloaded CO in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210203.csv +No data for NO in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210204.csv +Downloaded NO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210204.csv +Response error 403, attempt 0 +Response error 403, attempt 1 +Downloaded https://quotsoft.net/air/data/china_sites_20210205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210205.csv +Response error 403, attempt 2 +Downloaded https://quotsoft.net/air/data/china_sites_20210206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210208.csv +Failed downloading https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/1977/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/O3_1977.csv 3 times in 5 seconds, error code 403 +Downloaded https://quotsoft.net/air/data/china_cities_20210208.csv +No data for PM10 in 1977 +No data for PM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210210.csv +Downloaded SO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210212.csv +No file found for Carbonyls in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210212.csv +No file found for VOC in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210213.csv +No file found for IntegratedPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210213.csv +No file found for IntegratedPM2.5-10 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210214.csv +No file found for NAPSReferenceMethodPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210215.csv +No file found for PartisolPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210215.csv +No file found for PMSpeciation in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210216.csv +No file found for PMDICHOT in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20210216.csv +No major ions data in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20210217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210217.csv +Downloaded CO in 1978 +No data for NO in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210218.csv +Downloaded NO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210219.csv +Downloaded O3 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210220.csv +No data for PM10 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20210220.csv +No data for PM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210222.csv +Downloaded SO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210223.csv +No file found for Carbonyls in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210224.csv +No file found for VOC in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210225.csv +No file found for IntegratedPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20210225.csv +No file found for IntegratedPM2.5-10 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210226.csv +No file found for NAPSReferenceMethodPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20210226.csv +No file found for PartisolPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210227.csv +No file found for PMSpeciation in 1978 +No file found for PMDICHOT in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20210228.csv +No major ions data in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20210228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210301.csv +Downloaded CO in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20210301.csv +No data for NO in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20210302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210302.csv +Downloaded NO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20210303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210303.csv +Downloaded O3 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20210304.csv +No data for PM10 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20210304.csv +No data for PM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20210305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210305.csv +Downloaded SO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20210306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210306.csv diff --git a/download_scripts/log_files/nohup_all_20240613.out b/download_scripts/log_files/nohup_all_20240613.out new file mode 100644 index 0000000000000000000000000000000000000000..74a954c352b14096e147ecb2ea89b2bb34ff1255 --- /dev/null +++ b/download_scripts/log_files/nohup_all_20240613.out @@ -0,0 +1,2193 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +Started downloading data of CNEMCStarted downloading data of CANADA_NAPS + +['20140501', '20140502', '20140503', '20140504', '20140505', '20140506', '20140507', '20140508', '20140509', '20140510', '20140511', '20140512', '20140513', '20140514', '20140515', '20140516', '20140517', '20140518', '20140519', '20140520', '20140521', '20140522', '20140523', '20140524', '20140525', '20140526', '20140527', '20140528', '20140529', '20140530', '20140531', '20140601', '20140602', '20140603', '20140604', '20140605', '20140606', '20140607', '20140608', '20140609', '20140610', '20140611', '20140612', '20140613', '20140614', '20140615', '20140616', '20140617', '20140618', '20140619', '20140620', '20140621', '20140622', '20140623', '20140624', '20140625', '20140626', '20140627', '20140628', '20140629', '20140630', '20140701', '20140702', '20140703', '20140704', '20140705', '20140706', '20140707', '20140708', '20140709', '20140710', '20140711', '20140712', '20140713', '20140714', '20140715', '20140716', '20140717', '20140718', '20140719', '20140720', '20140721', '20140722', '20140723', '20140724', '20140725', '20140726', '20140727', '20140728', '20140729', '20140730', '20140731', '20140801', '20140802', '20140803', '20140804', '20140805', '20140806', '20140807', '20140808', '20140809', '20140810', '20140811', '20140812', '20140813', '20140814', '20140815', '20140816', '20140817', '20140818', '20140819', '20140820', '20140821', '20140822', '20140823', '20140824', '20140825', '20140826', '20140827', '20140828', '20140829', '20140830', '20140831', '20140901', '20140902', '20140903', '20140904', '20140905', '20140906', '20140907', '20140908', '20140909', '20140910', '20140911', '20140912', '20140913', '20140914', '20140915', '20140916', '20140917', '20140918', '20140919', '20140920', '20140921', '20140922', '20140923', '20140924', '20140925', '20140926', '20140927', '20140928', '20140929', '20140930', '20141001', '20141002', '20141003', '20141004', '20141005', '20141006', '20141007', '20141008', '20141009', '20141010', '20141011', '20141012', '20141013', '20141014', '20141015', '20141016', '20141017', '20141018', '20141019', '20141020', '20141021', '20141022', '20141023', '20141024', '20141025', '20141026', '20141027', '20141028', '20141029', '20141030', '20141031', '20141101', '20141102', '20141103', '20141104', '20141105', '20141106', '20141107', '20141108', '20141109', '20141110', '20141111', '20141112', '20141113', '20141114', '20141115', '20141116', '20141117', '20141118', '20141119', '20141120', '20141121', '20141122', '20141123', '20141124', '20141125', '20141126', '20141127', '20141128', '20141129', '20141130', '20141201', '20141202', '20141203', '20141204', '20141205', '20141206', '20141207', '20141208', '20141209', '20141210', '20141211', '20141212', '20141213', '20141214', '20141215', '20141216', '20141217', '20141218', '20141219', '20141220', '20141221', '20141222', '20141223', '20141224', '20141225', '20141226', '20141227', '20141228', '20141229', '20141230', '20141231', '20150101', '20150102', '20150103', '20150104', '20150105', '20150106', '20150107', '20150108', '20150109', '20150110', '20150111', '20150112', '20150113', '20150114', '20150115', '20150116', '20150117', '20150118', '20150119', '20150120', '20150121', '20150122', '20150123', '20150124', '20150125', '20150126', '20150127', '20150128', '20150129', '20150130', '20150131', '20150201', '20150202', '20150203', '20150204', '20150205', '20150206', '20150207', '20150208', '20150209', '20150210', '20150211', '20150212', '20150213', '20150214', '20150215', '20150216', '20150217', '20150218', '20150219', '20150220', '20150221', '20150222', '20150223', '20150224', '20150225', '20150226', '20150227', '20150228', '20150301', '20150302', '20150303', '20150304', '20150305', '20150306', '20150307', '20150308', '20150309', '20150310', '20150311', '20150312', '20150313', '20150314', '20150315', '20150316', '20150317', '20150318', '20150319', '20150320', '20150321', '20150322', '20150323', '20150324', '20150325', '20150326', '20150327', '20150328', '20150329', '20150330', '20150331', '20150401', '20150402', '20150403', '20150404', '20150405', '20150406', '20150407', '20150408', '20150409', '20150410', '20150411', '20150412', '20150413', '20150414', '20150415', '20150416', '20150417', '20150418', '20150419', '20150420', '20150421', '20150422', '20150423', '20150424', '20150425', '20150426', '20150427', '20150428', '20150429', '20150430', '20150501', '20150502', '20150503', '20150504', '20150505', '20150506', '20150507', '20150508', '20150509', '20150510', '20150511', '20150512', '20150513', '20150514', '20150515', '20150516', '20150517', '20150518', '20150519', '20150520', '20150521', '20150522', '20150523', '20150524', '20150525', '20150526', '20150527', '20150528', '20150529', '20150530', '20150531', '20150601', '20150602', '20150603', '20150604', '20150605', '20150606', '20150607', '20150608', '20150609', '20150610', '20150611', '20150612', '20150613', '20150614', '20150615', '20150616', '20150617', '20150618', '20150619', '20150620', '20150621', '20150622', '20150623', '20150624', '20150625', '20150626', '20150627', '20150628', '20150629', '20150630', '20150701', '20150702', '20150703', '20150704', '20150705', '20150706', '20150707', '20150708', '20150709', '20150710', '20150711', '20150712', '20150713', '20150714', '20150715', '20150716', '20150717', '20150718', '20150719', '20150720', '20150721', '20150722', '20150723', '20150724', '20150725', '20150726', '20150727', '20150728', '20150729', '20150730', '20150731', '20150801', '20150802', '20150803', '20150804', '20150805', '20150806', '20150807', '20150808', '20150809', '20150810', '20150811', '20150812', '20150813', '20150814', '20150815', '20150816', '20150817', '20150818', '20150819', '20150820', '20150821', '20150822', '20150823', '20150824', '20150825', '20150826', '20150827', '20150828', '20150829', '20150830', '20150831', '20150901', '20150902', '20150903', '20150904', '20150905', '20150906', '20150907', '20150908', '20150909', '20150910', '20150911', '20150912', '20150913', '20150914', '20150915', '20150916', '20150917', '20150918', '20150919', '20150920', '20150921', '20150922', '20150923', '20150924', '20150925', '20150926', '20150927', '20150928', '20150929', '20150930', '20151001', '20151002', '20151003', '20151004', '20151005', '20151006', '20151007', '20151008', '20151009', '20151010', '20151011', '20151012', '20151013', '20151014', '20151015', '20151016', '20151017', '20151018', '20151019', '20151020', '20151021', '20151022', '20151023', '20151024', '20151025', '20151026', '20151027', '20151028', '20151029', '20151030', '20151031', '20151101', '20151102', '20151103', '20151104', '20151105', '20151106', '20151107', '20151108', '20151109', '20151110', '20151111', '20151112', '20151113', '20151114', '20151115', '20151116', '20151117', '20151118', '20151119', '20151120', '20151121', '20151122', '20151123', '20151124', '20151125', '20151126', '20151127', '20151128', '20151129', '20151130', '20151201', '20151202', '20151203', '20151204', '20151205', '20151206', '20151207', '20151208', '20151209', '20151210', '20151211', '20151212', '20151213', '20151214', '20151215', '20151216', '20151217', '20151218', '20151219', '20151220', '20151221', '20151222', '20151223', '20151224', '20151225', '20151226', '20151227', '20151228', '20151229', '20151230', '20151231', '20160101', '20160102', '20160103', '20160104', '20160105', '20160106', '20160107', '20160108', '20160109', '20160110', '20160111', '20160112', '20160113', '20160114', '20160115', '20160116', '20160117', '20160118', '20160119', '20160120', '20160121', '20160122', '20160123', '20160124', '20160125', '20160126', '20160127', '20160128', '20160129', '20160130', '20160131', '20160201', '20160202', '20160203', '20160204', '20160205', '20160206', '20160207', '20160208', '20160209', '20160210', '20160211', '20160212', '20160213', '20160214', '20160215', '20160216', '20160217', '20160218', '20160219', '20160220', '20160221', '20160222', '20160223', '20160224', '20160225', '20160226', '20160227', '20160228', '20160229', '20160301', '20160302', '20160303', '20160304', '20160305', '20160306', '20160307', '20160308', '20160309', '20160310', '20160311', '20160312', '20160313', '20160314', '20160315', '20160316', '20160317', '20160318', '20160319', '20160320', '20160321', '20160322', '20160323', '20160324', '20160325', '20160326', '20160327', '20160328', '20160329', '20160330', '20160331', '20160401', '20160402', '20160403', '20160404', '20160405', '20160406', '20160407', '20160408', '20160409', '20160410', '20160411', '20160412', '20160413', '20160414', '20160415', '20160416', '20160417', '20160418', '20160419', '20160420', '20160421', '20160422', '20160423', '20160424', '20160425', '20160426', '20160427', '20160428', '20160429', '20160430', '20160501', '20160502', '20160503', '20160504', '20160505', '20160506', '20160507', '20160508', '20160509', '20160510', '20160511', '20160512', '20160513', '20160514', '20160515', '20160516', '20160517', '20160518', '20160519', '20160520', '20160521', '20160522', '20160523', '20160524', '20160525', '20160526', '20160527', '20160528', '20160529', '20160530', '20160531', '20160601', '20160602', '20160603', '20160604', '20160605', '20160606', '20160607', '20160608', '20160609', '20160610', '20160611', '20160612', '20160613', '20160614', '20160615', '20160616', '20160617', '20160618', '20160619', '20160620', '20160621', '20160622', '20160623', '20160624', '20160625', '20160626', '20160627', '20160628', '20160629', '20160630', '20160701', '20160702', '20160703', '20160704', '20160705', '20160706', '20160707', '20160708', '20160709', '20160710', '20160711', '20160712', '20160713', '20160714', '20160715', '20160716', '20160717', '20160718', '20160719', '20160720', '20160721', '20160722', '20160723', '20160724', '20160725', '20160726', '20160727', '20160728', '20160729', '20160730', '20160731', '20160801', '20160802', '20160803', '20160804', '20160805', '20160806', '20160807', '20160808', '20160809', '20160810', '20160811', '20160812', '20160813', '20160814', '20160815', '20160816', '20160817', '20160818', '20160819', '20160820', '20160821', '20160822', '20160823', '20160824', '20160825', '20160826', '20160827', '20160828', '20160829', '20160830', '20160831', '20160901', '20160902', '20160903', '20160904', '20160905', '20160906', '20160907', '20160908', '20160909', '20160910', '20160911', '20160912', '20160913', '20160914', '20160915', '20160916', '20160917', '20160918', '20160919', '20160920', '20160921', '20160922', '20160923', '20160924', '20160925', '20160926', '20160927', '20160928', '20160929', '20160930', '20161001', '20161002', '20161003', '20161004', '20161005', '20161006', '20161007', '20161008', '20161009', '20161010', '20161011', '20161012', '20161013', '20161014', '20161015', '20161016', '20161017', '20161018', '20161019', '20161020', '20161021', '20161022', '20161023', '20161024', '20161025', '20161026', '20161027', '20161028', '20161029', '20161030', '20161031', '20161101', '20161102', '20161103', '20161104', '20161105', '20161106', '20161107', '20161108', '20161109', '20161110', '20161111', '20161112', '20161113', '20161114', '20161115', '20161116', '20161117', '20161118', '20161119', '20161120', '20161121', '20161122', '20161123', '20161124', '20161125', '20161126', '20161127', '20161128', '20161129', '20161130', '20161201', '20161202', '20161203', '20161204', '20161205', '20161206', '20161207', '20161208', '20161209', '20161210', '20161211', '20161212', '20161213', '20161214', '20161215', '20161216', '20161217', '20161218', '20161219', '20161220', '20161221', '20161222', '20161223', '20161224', '20161225', '20161226', '20161227', '20161228', '20161229', '20161230', '20161231', '20170101', '20170102', '20170103', '20170104', '20170105', '20170106', '20170107', '20170108', '20170109', '20170110', '20170111', '20170112', '20170113', '20170114', '20170115', '20170116', '20170117', '20170118', '20170119', '20170120', '20170121', '20170122', '20170123', '20170124', '20170125', '20170126', '20170127', '20170128', '20170129', '20170130', '20170131', '20170201', '20170202', '20170203', '20170204', '20170205', '20170206', '20170207', '20170208', '20170209', '20170210', '20170211', '20170212', '20170213', '20170214', '20170215', '20170216', '20170217', '20170218', '20170219', '20170220', '20170221', '20170222', '20170223', '20170224', '20170225', '20170226', '20170227', '20170228', '20170301', '20170302', '20170303', '20170304', '20170305', '20170306', '20170307', '20170308', '20170309', '20170310', '20170311', '20170312', '20170313', '20170314', '20170315', '20170316', '20170317', '20170318', '20170319', '20170320', '20170321', '20170322', '20170323', '20170324', '20170325', '20170326', '20170327', '20170328', '20170329', '20170330', '20170331', '20170401', '20170402', '20170403', '20170404', '20170405', '20170406', '20170407', '20170408', '20170409', '20170410', '20170411', '20170412', '20170413', '20170414', '20170415', '20170416', '20170417', '20170418', '20170419', '20170420', '20170421', '20170422', '20170423', '20170424', '20170425', '20170426', '20170427', '20170428', '20170429', '20170430', '20170501', '20170502', '20170503', '20170504', '20170505', '20170506', '20170507', '20170508', '20170509', '20170510', '20170511', '20170512', '20170513', '20170514', '20170515', '20170516', '20170517', '20170518', '20170519', '20170520', '20170521', '20170522', '20170523', '20170524', '20170525', '20170526', '20170527', '20170528', '20170529', '20170530', '20170531', '20170601', '20170602', '20170603', '20170604', '20170605', '20170606', '20170607', '20170608', '20170609', '20170610', '20170611', '20170612', '20170613', '20170614', '20170615', '20170616', '20170617', '20170618', '20170619', '20170620', '20170621', '20170622', '20170623', '20170624', '20170625', '20170626', '20170627', '20170628', '20170629', '20170630', '20170701', '20170702', '20170703', '20170704', '20170705', '20170706', '20170707', '20170708', '20170709', '20170710', '20170711', '20170712', '20170713', '20170714', '20170715', '20170716', '20170717', '20170718', '20170719', '20170720', '20170721', '20170722', '20170723', '20170724', '20170725', '20170726', '20170727', '20170728', '20170729', '20170730', '20170731', '20170801', '20170802', '20170803', '20170804', '20170805', '20170806', '20170807', '20170808', '20170809', '20170810', '20170811', '20170812', '20170813', '20170814', '20170815', '20170816', '20170817', '20170818', '20170819', '20170820', '20170821', '20170822', '20170823', '20170824', '20170825', '20170826', '20170827', '20170828', '20170829', '20170830', '20170831', '20170901', '20170902', '20170903', '20170904', '20170905', '20170906', '20170907', '20170908', '20170909', '20170910', '20170911', '20170912', '20170913', '20170914', '20170915', '20170916', '20170917', '20170918', '20170919', '20170920', '20170921', '20170922', '20170923', '20170924', '20170925', '20170926', '20170927', '20170928', '20170929', '20170930', '20171001', '20171002', '20171003', '20171004', '20171005', '20171006', '20171007', '20171008', '20171009', '20171010', '20171011', '20171012', '20171013', '20171014', '20171015', '20171016', '20171017', '20171018', '20171019', '20171020', '20171021', '20171022', '20171023', '20171024', '20171025', '20171026', '20171027', '20171028', '20171029', '20171030', '20171031', '20171101', '20171102', '20171103', '20171104', '20171105', '20171106', '20171107', '20171108', '20171109', '20171110', '20171111', '20171112', '20171113', '20171114', '20171115', '20171116', '20171117', '20171118', '20171119', '20171120', '20171121', '20171122', '20171123', '20171124', '20171125', '20171126', '20171127', '20171128', '20171129', '20171130', '20171201', '20171202', '20171203', '20171204', '20171205', '20171206', '20171207', '20171208', '20171209', '20171210', '20171211', '20171212', '20171213', '20171214', '20171215', '20171216', '20171217', '20171218', '20171219', '20171220', '20171221', '20171222', '20171223', '20171224', '20171225', '20171226', '20171227', '20171228', '20171229', '20171230', '20171231', '20180101', '20180102', '20180103', '20180104', '20180105', '20180106', '20180107', '20180108', '20180109', '20180110', '20180111', '20180112', '20180113', '20180114', '20180115', '20180116', '20180117', '20180118', '20180119', '20180120', '20180121', '20180122', '20180123', '20180124', '20180125', '20180126', '20180127', '20180128', '20180129', '20180130', '20180131', '20180201', '20180202', '20180203', '20180204', '20180205', '20180206', '20180207', '20180208', '20180209', '20180210', '20180211', '20180212', '20180213', '20180214', '20180215', '20180216', '20180217', '20180218', '20180219', '20180220', '20180221', '20180222', '20180223', '20180224', '20180225', '20180226', '20180227', '20180228', '20180301', '20180302', '20180303', '20180304', '20180305', '20180306', '20180307', '20180308', '20180309', '20180310', '20180311', '20180312', '20180313', '20180314', '20180315', '20180316', '20180317', '20180318', '20180319', '20180320', '20180321', '20180322', '20180323', '20180324', '20180325', '20180326', '20180327', '20180328', '20180329', '20180330', '20180331', '20180401', '20180402', '20180403', '20180404', '20180405', '20180406', '20180407', '20180408', '20180409', '20180410', '20180411', '20180412', '20180413', '20180414', '20180415', '20180416', '20180417', '20180418', '20180419', '20180420', '20180421', '20180422', '20180423', '20180424', '20180425', '20180426', '20180427', '20180428', '20180429', '20180430', '20180501', '20180502', '20180503', '20180504', '20180505', '20180506', '20180507', '20180508', '20180509', '20180510', '20180511', '20180512', '20180513', '20180514', '20180515', '20180516', '20180517', '20180518', '20180519', '20180520', '20180521', '20180522', '20180523', '20180524', '20180525', '20180526', '20180527', '20180528', '20180529', '20180530', '20180531', '20180601', '20180602', '20180603', '20180604', '20180605', '20180606', '20180607', '20180608', '20180609', '20180610', '20180611', '20180612', '20180613', '20180614', '20180615', '20180616', '20180617', '20180618', '20180619', '20180620', '20180621', '20180622', '20180623', '20180624', '20180625', '20180626', '20180627', '20180628', '20180629', '20180630', '20180701', '20180702', '20180703', '20180704', '20180705', '20180706', '20180707', '20180708', '20180709', '20180710', '20180711', '20180712', '20180713', '20180714', '20180715', '20180716', '20180717', '20180718', '20180719', '20180720', '20180721', '20180722', '20180723', '20180724', '20180725', '20180726', '20180727', '20180728', '20180729', '20180730', '20180731', '20180801', '20180802', '20180803', '20180804', '20180805', '20180806', '20180807', '20180808', '20180809', '20180810', '20180811', '20180812', '20180813', '20180814', '20180815', '20180816', '20180817', '20180818', '20180819', '20180820', '20180821', '20180822', '20180823', '20180824', '20180825', '20180826', '20180827', '20180828', '20180829', '20180830', '20180831', '20180901', '20180902', '20180903', '20180904', '20180905', '20180906', '20180907', '20180908', '20180909', '20180910', '20180911', '20180912', '20180913', '20180914', '20180915', '20180916', '20180917', '20180918', '20180919', '20180920', '20180921', '20180922', '20180923', '20180924', '20180925', '20180926', '20180927', '20180928', '20180929', '20180930', '20181001', '20181002', '20181003', '20181004', '20181005', '20181006', '20181007', '20181008', '20181009', '20181010', '20181011', '20181012', '20181013', '20181014', '20181015', '20181016', '20181017', '20181018', '20181019', '20181020', '20181021', '20181022', '20181023', '20181024', '20181025', '20181026', '20181027', '20181028', '20181029', '20181030', '20181031', '20181101', '20181102', '20181103', '20181104', '20181105', '20181106', '20181107', '20181108', '20181109', '20181110', '20181111', '20181112', '20181113', '20181114', '20181115', '20181116', '20181117', '20181118', '20181119', '20181120', '20181121', '20181122', '20181123', '20181124', '20181125', '20181126', '20181127', '20181128', '20181129', '20181130', '20181201', '20181202', '20181203', '20181204', '20181205', '20181206', '20181207', '20181208', '20181209', '20181210', '20181211', '20181212', '20181213', '20181214', '20181215', '20181216', '20181217', '20181218', '20181219', '20181220', '20181221', '20181222', '20181223', '20181224', '20181225', '20181226', '20181227', '20181228', '20181229', '20181230', '20181231', '20190101', '20190102', '20190103', '20190104', '20190105', '20190106', '20190107', '20190108', '20190109', '20190110', '20190111', '20190112', '20190113', '20190114', '20190115', '20190116', '20190117', '20190118', '20190119', '20190120', '20190121', '20190122', '20190123', '20190124', '20190125', '20190126', '20190127', '20190128', '20190129', '20190130', '20190131', '20190201', '20190202', '20190203', '20190204', '20190205', '20190206', '20190207', '20190208', '20190209', '20190210', '20190211', '20190212', '20190213', '20190214', '20190215', '20190216', '20190217', '20190218', '20190219', '20190220', '20190221', '20190222', '20190223', '20190224', '20190225', '20190226', '20190227', '20190228', '20190301', '20190302', '20190303', '20190304', '20190305', '20190306', '20190307', '20190308', '20190309', '20190310', '20190311', '20190312', '20190313', '20190314', '20190315', '20190316', '20190317', '20190318', '20190319', '20190320', '20190321', '20190322', '20190323', '20190324', '20190325', '20190326', '20190327', '20190328', '20190329', '20190330', '20190331', '20190401', '20190402', '20190403', '20190404', '20190405', '20190406', '20190407', '20190408', '20190409', '20190410', '20190411', '20190412', '20190413', '20190414', '20190415', '20190416', '20190417', '20190418', '20190419', '20190420', '20190421', '20190422', '20190423', '20190424', '20190425', '20190426', '20190427', '20190428', '20190429', '20190430', '20190501', '20190502', '20190503', '20190504', '20190505', '20190506', '20190507', '20190508', '20190509', '20190510', '20190511', '20190512', '20190513', '20190514', '20190515', '20190516', '20190517', '20190518', '20190519', '20190520', '20190521', '20190522', '20190523', '20190524', '20190525', '20190526', '20190527', '20190528', '20190529', '20190530', '20190531', '20190601', '20190602', '20190603', '20190604', '20190605', '20190606', '20190607', '20190608', '20190609', '20190610', '20190611', '20190612', '20190613', '20190614', '20190615', '20190616', '20190617', '20190618', '20190619', '20190620', '20190621', '20190622', '20190623', '20190624', '20190625', '20190626', '20190627', '20190628', '20190629', '20190630', '20190701', '20190702', '20190703', '20190704', '20190705', '20190706', '20190707', '20190708', '20190709', '20190710', '20190711', '20190712', '20190713', '20190714', '20190715', '20190716', '20190717', '20190718', '20190719', '20190720', '20190721', '20190722', '20190723', '20190724', '20190725', '20190726', '20190727', '20190728', '20190729', '20190730', '20190731', '20190801', '20190802', '20190803', '20190804', '20190805', '20190806', '20190807', '20190808', '20190809', '20190810', '20190811', '20190812', '20190813', '20190814', '20190815', '20190816', '20190817', '20190818', '20190819', '20190820', '20190821', '20190822', '20190823', '20190824', '20190825', '20190826', '20190827', '20190828', '20190829', '20190830', '20190831', '20190901', '20190902', '20190903', '20190904', '20190905', '20190906', '20190907', '20190908', '20190909', '20190910', '20190911', '20190912', '20190913', '20190914', '20190915', '20190916', '20190917', '20190918', '20190919', '20190920', '20190921', '20190922', '20190923', '20190924', '20190925', '20190926', '20190927', '20190928', '20190929', '20190930', '20191001', '20191002', '20191003', '20191004', '20191005', '20191006', '20191007', '20191008', '20191009', '20191010', '20191011', '20191012', '20191013', '20191014', '20191015', '20191016', '20191017', '20191018', '20191019', '20191020', '20191021', '20191022', '20191023', '20191024', '20191025', '20191026', '20191027', '20191028', '20191029', '20191030', '20191031', '20191101', '20191102', '20191103', '20191104', '20191105', '20191106', '20191107', '20191108', '20191109', '20191110', '20191111', '20191112', '20191113', '20191114', '20191115', '20191116', '20191117', '20191118', '20191119', '20191120', '20191121', '20191122', '20191123', '20191124', '20191125', '20191126', '20191127', '20191128', '20191129', '20191130', '20191201', '20191202', '20191203', '20191204', '20191205', '20191206', '20191207', '20191208', '20191209', '20191210', '20191211', '20191212', '20191213', '20191214', '20191215', '20191216', '20191217', '20191218', '20191219', '20191220', '20191221', '20191222', '20191223', '20191224', '20191225', '20191226', '20191227', '20191228', '20191229', '20191230', '20191231', '20200101', '20200102', '20200103', '20200104', '20200105', '20200106', '20200107', '20200108', '20200109', '20200110', '20200111', '20200112', '20200113', '20200114', '20200115', '20200116', '20200117', '20200118', '20200119', '20200120', '20200121', '20200122', '20200123', '20200124', '20200125', '20200126', '20200127', '20200128', '20200129', '20200130', '20200131', '20200201', '20200202', '20200203', '20200204', '20200205', '20200206', '20200207', '20200208', '20200209', '20200210', '20200211', '20200212', '20200213', '20200214', '20200215', '20200216', '20200217', '20200218', '20200219', '20200220', '20200221', '20200222', '20200223', '20200224', '20200225', '20200226', '20200227', '20200228', '20200229', '20200301', '20200302', '20200303', '20200304', '20200305', '20200306', '20200307', '20200308', '20200309', '20200310', '20200311', '20200312', '20200313', '20200314', '20200315', '20200316', '20200317', '20200318', '20200319', '20200320', '20200321', '20200322', '20200323', '20200324', '20200325', '20200326', '20200327', '20200328', '20200329', '20200330', '20200331', '20200401', '20200402', '20200403', '20200404', '20200405', '20200406', '20200407', '20200408', '20200409', '20200410', '20200411', '20200412', '20200413', '20200414', '20200415', '20200416', '20200417', '20200418', '20200419', '20200420', '20200421', '20200422', '20200423', '20200424', '20200425', '20200426', '20200427', '20200428', '20200429', '20200430', '20200501', '20200502', '20200503', '20200504', '20200505', '20200506', '20200507', '20200508', '20200509', '20200510', '20200511', '20200512', '20200513', '20200514', '20200515', '20200516', '20200517', '20200518', '20200519', '20200520', '20200521', '20200522', '20200523', '20200524', '20200525', '20200526', '20200527', '20200528', '20200529', '20200530', '20200531', '20200601', '20200602', '20200603', '20200604', '20200605', '20200606', '20200607', '20200608', '20200609', '20200610', '20200611', '20200612', '20200613', '20200614', '20200615', '20200616', '20200617', '20200618', '20200619', '20200620', '20200621', '20200622', '20200623', '20200624', '20200625', '20200626', '20200627', '20200628', '20200629', '20200630', '20200701', '20200702', '20200703', '20200704', '20200705', '20200706', '20200707', '20200708', '20200709', '20200710', '20200711', '20200712', '20200713', '20200714', '20200715', '20200716', '20200717', '20200718', '20200719', '20200720', '20200721', '20200722', '20200723', '20200724', '20200725', '20200726', '20200727', '20200728', '20200729', '20200730', '20200731', '20200801', '20200802', '20200803', '20200804', '20200805', '20200806', '20200807', '20200808', '20200809', '20200810', '20200811', '20200812', '20200813', '20200814', '20200815', '20200816', '20200817', '20200818', '20200819', '20200820', '20200821', '20200822', '20200823', '20200824', '20200825', '20200826', '20200827', '20200828', '20200829', '20200830', '20200831', '20200901', '20200902', '20200903', '20200904', '20200905', '20200906', '20200907', '20200908', '20200909', '20200910', '20200911', '20200912', '20200913', '20200914', '20200915', '20200916', '20200917', '20200918', '20200919', '20200920', '20200921', '20200922', '20200923', '20200924', '20200925', '20200926', '20200927', '20200928', '20200929', '20200930', '20201001', '20201002', '20201003', '20201004', '20201005', '20201006', '20201007', '20201008', '20201009', '20201010', '20201011', '20201012', '20201013', '20201014', '20201015', '20201016', '20201017', '20201018', '20201019', '20201020', '20201021', '20201022', '20201023', '20201024', '20201025', '20201026', '20201027', '20201028', '20201029', '20201030', '20201031', '20201101', '20201102', '20201103', '20201104', '20201105', '20201106', '20201107', '20201108', '20201109', '20201110', '20201111', '20201112', '20201113', '20201114', '20201115', '20201116', '20201117', '20201118', '20201119', '20201120', '20201121', '20201122', '20201123', '20201124', '20201125', '20201126', '20201127', '20201128', '20201129', '20201130', '20201201', '20201202', '20201203', '20201204', '20201205', '20201206', '20201207', '20201208', '20201209', '20201210', '20201211', '20201212', '20201213', '20201214', '20201215', '20201216', '20201217', '20201218', '20201219', '20201220', '20201221', '20201222', '20201223', '20201224', '20201225', '20201226', '20201227', '20201228', '20201229', '20201230', '20201231', '20210101', '20210102', '20210103', '20210104', '20210105', '20210106', '20210107', '20210108', '20210109', '20210110', '20210111', '20210112', '20210113', '20210114', '20210115', '20210116', '20210117', '20210118', '20210119', '20210120', '20210121', '20210122', '20210123', '20210124', '20210125', '20210126', '20210127', '20210128', '20210129', '20210130', '20210131', '20210201', '20210202', '20210203', '20210204', '20210205', '20210206', '20210207', '20210208', '20210209', '20210210', '20210211', '20210212', '20210213', '20210214', '20210215', '20210216', '20210217', '20210218', '20210219', '20210220', '20210221', '20210222', '20210223', '20210224', '20210225', '20210226', '20210227', '20210228', '20210301', '20210302', '20210303', '20210304', '20210305', '20210306', '20210307', '20210308', '20210309', '20210310', '20210311', '20210312', '20210313', '20210314', '20210315', '20210316', '20210317', '20210318', '20210319', '20210320', '20210321', '20210322', '20210323', '20210324', '20210325', '20210326', '20210327', '20210328', '20210329', '20210330', '20210331', '20210401', '20210402', '20210403', '20210404', '20210405', '20210406', '20210407', '20210408', '20210409', '20210410', '20210411', '20210412', '20210413', '20210414', '20210415', '20210416', '20210417', '20210418', '20210419', '20210420', '20210421', '20210422', '20210423', '20210424', '20210425', '20210426', '20210427', '20210428', '20210429', '20210430', '20210501', '20210502', '20210503', '20210504', '20210505', '20210506', '20210507', '20210508', '20210509', '20210510', '20210511', '20210512', '20210513', '20210514', '20210515', '20210516', '20210517', '20210518', '20210519', '20210520', '20210521', '20210522', '20210523', '20210524', '20210525', '20210526', '20210527', '20210528', '20210529', '20210530', '20210531', '20210601', '20210602', '20210603', '20210604', '20210605', '20210606', '20210607', '20210608', '20210609', '20210610', '20210611', '20210612', '20210613', '20210614', '20210615', '20210616', '20210617', '20210618', '20210619', '20210620', '20210621', '20210622', '20210623', '20210624', '20210625', '20210626', '20210627', '20210628', '20210629', '20210630', '20210701', '20210702', '20210703', '20210704', '20210705', '20210706', '20210707', '20210708', '20210709', '20210710', '20210711', '20210712', '20210713', '20210714', '20210715', '20210716', '20210717', '20210718', '20210719', '20210720', '20210721', '20210722', '20210723', '20210724', '20210725', '20210726', '20210727', '20210728', '20210729', '20210730', '20210731', '20210801', '20210802', '20210803', '20210804', '20210805', '20210806', '20210807', '20210808', '20210809', '20210810', '20210811', '20210812', '20210813', '20210814', '20210815', '20210816', '20210817', '20210818', '20210819', '20210820', '20210821', '20210822', '20210823', '20210824', '20210825', '20210826', '20210827', '20210828', '20210829', '20210830', '20210831', '20210901', '20210902', '20210903', '20210904', '20210905', '20210906', '20210907', '20210908', '20210909', '20210910', '20210911', '20210912', '20210913', '20210914', '20210915', '20210916', '20210917', '20210918', '20210919', '20210920', '20210921', '20210922', '20210923', '20210924', '20210925', '20210926', '20210927', '20210928', '20210929', '20210930', '20211001', '20211002', '20211003', '20211004', '20211005', '20211006', '20211007', '20211008', '20211009', '20211010', '20211011', '20211012', '20211013', '20211014', '20211015', '20211016', '20211017', '20211018', '20211019', '20211020', '20211021', '20211022', '20211023', '20211024', '20211025', '20211026', '20211027', '20211028', '20211029', '20211030', '20211031', '20211101', '20211102', '20211103', '20211104', '20211105', '20211106', '20211107', '20211108', '20211109', '20211110', '20211111', '20211112', '20211113', '20211114', '20211115', '20211116', '20211117', '20211118', '20211119', '20211120', '20211121', '20211122', '20211123', '20211124', '20211125', '20211126', '20211127', '20211128', '20211129', '20211130', '20211201', '20211202', '20211203', '20211204', '20211205', '20211206', '20211207', '20211208', '20211209', '20211210', '20211211', '20211212', '20211213', '20211214', '20211215', '20211216', '20211217', '20211218', '20211219', '20211220', '20211221', '20211222', '20211223', '20211224', '20211225', '20211226', '20211227', '20211228', '20211229', '20211230', '20211231', '20220101', '20220102', '20220103', '20220104', '20220105', '20220106', '20220107', '20220108', '20220109', '20220110', '20220111', '20220112', '20220113', '20220114', '20220115', '20220116', '20220117', '20220118', '20220119', '20220120', '20220121', '20220122', '20220123', '20220124', '20220125', '20220126', '20220127', '20220128', '20220129', '20220130', '20220131', '20220201', '20220202', '20220203', '20220204', '20220205', '20220206', '20220207', '20220208', '20220209', '20220210', '20220211', '20220212', '20220213', '20220214', '20220215', '20220216', '20220217', '20220218', '20220219', '20220220', '20220221', '20220222', '20220223', '20220224', '20220225', '20220226', '20220227', '20220228', '20220301', '20220302', '20220303', '20220304', '20220305', '20220306', '20220307', '20220308', '20220309', '20220310', '20220311', '20220312', '20220313', '20220314', '20220315', '20220316', '20220317', '20220318', '20220319', '20220320', '20220321', '20220322', '20220323', '20220324', '20220325', '20220326', '20220327', '20220328', '20220329', '20220330', '20220331', '20220401', '20220402', '20220403', '20220404', '20220405', '20220406', '20220407', '20220408', '20220409', '20220410', '20220411', '20220412', '20220413', '20220414', '20220415', '20220416', '20220417', '20220418', '20220419', '20220420', '20220421', '20220422', '20220423', '20220424', '20220425', '20220426', '20220427', '20220428', '20220429', '20220430', '20220501', '20220502', '20220503', '20220504', '20220505', '20220506', '20220507', '20220508', '20220509', '20220510', '20220511', '20220512', '20220513', '20220514', '20220515', '20220516', '20220517', '20220518', '20220519', '20220520', '20220521', '20220522', '20220523', '20220524', '20220525', '20220526', '20220527', '20220528', '20220529', '20220530', '20220531', '20220601', '20220602', '20220603', '20220604', '20220605', '20220606', '20220607', '20220608', '20220609', '20220610', '20220611', '20220612', '20220613', '20220614', '20220615', '20220616', '20220617', '20220618', '20220619', '20220620', '20220621', '20220622', '20220623', '20220624', '20220625', '20220626', '20220627', '20220628', '20220629', '20220630', '20220701', '20220702', '20220703', '20220704', '20220705', '20220706', '20220707', '20220708', '20220709', '20220710', '20220711', '20220712', '20220713', '20220714', '20220715', '20220716', '20220717', '20220718', '20220719', '20220720', '20220721', '20220722', '20220723', '20220724', '20220725', '20220726', '20220727', '20220728', '20220729', '20220730', '20220731', '20220801', '20220802', '20220803', '20220804', '20220805', '20220806', '20220807', '20220808', '20220809', '20220810', '20220811', '20220812', '20220813', '20220814', '20220815', '20220816', '20220817', '20220818', '20220819', '20220820', '20220821', '20220822', '20220823', '20220824', '20220825', '20220826', '20220827', '20220828', '20220829', '20220830', '20220831', '20220901', '20220902', '20220903', '20220904', '20220905', '20220906', '20220907', '20220908', '20220909', '20220910', '20220911', '20220912', '20220913', '20220914', '20220915', '20220916', '20220917', '20220918', '20220919', '20220920', '20220921', '20220922', '20220923', '20220924', '20220925', '20220926', '20220927', '20220928', '20220929', '20220930', '20221001', '20221002', '20221003', '20221004', '20221005', '20221006', '20221007', '20221008', '20221009', '20221010', '20221011', '20221012', '20221013', '20221014', '20221015', '20221016', '20221017', '20221018', '20221019', '20221020', '20221021', '20221022', '20221023', '20221024', '20221025', '20221026', '20221027', '20221028', '20221029', '20221030', '20221031', '20221101', '20221102', '20221103', '20221104', '20221105', '20221106', '20221107', '20221108', '20221109', '20221110', '20221111', '20221112', '20221113', '20221114', '20221115', '20221116', '20221117', '20221118', '20221119', '20221120', '20221121', '20221122', '20221123', '20221124', '20221125', '20221126', '20221127', '20221128', '20221129', '20221130', '20221201', '20221202', '20221203', '20221204', '20221205', '20221206', '20221207', '20221208', '20221209', '20221210', '20221211', '20221212', '20221213', '20221214', '20221215', '20221216', '20221217', '20221218', '20221219', '20221220', '20221221', '20221222', '20221223', '20221224', '20221225', '20221226', '20221227', '20221228', '20221229', '20221230', '20221231', '20230101', '20230102', '20230103', '20230104', '20230105', '20230106', '20230107', '20230108', '20230109', '20230110', '20230111', '20230112', '20230113', '20230114', '20230115', '20230116', '20230117', '20230118', '20230119', '20230120', '20230121', '20230122', '20230123', '20230124', '20230125', '20230126', '20230127', '20230128', '20230129', '20230130', '20230131', '20230201', '20230202', '20230203', '20230204', '20230205', '20230206', '20230207', '20230208', '20230209', '20230210', '20230211', '20230212', '20230213', '20230214', '20230215', '20230216', '20230217', '20230218', '20230219', '20230220', '20230221', '20230222', '20230223', '20230224', '20230225', '20230226', '20230227', '20230228', '20230301', '20230302', '20230303', '20230304', '20230305', '20230306', '20230307', '20230308', '20230309', '20230310', '20230311', '20230312', '20230313', '20230314', '20230315', '20230316', '20230317', '20230318', '20230319', '20230320', '20230321', '20230322', '20230323', '20230324', '20230325', '20230326', '20230327', '20230328', '20230329', '20230330', '20230331', '20230401', '20230402', '20230403', '20230404', '20230405', '20230406', '20230407', '20230408', '20230409', '20230410', '20230411', '20230412', '20230413', '20230414', '20230415', '20230416', '20230417', '20230418', '20230419', '20230420', '20230421', '20230422', '20230423', '20230424', '20230425', '20230426', '20230427', '20230428', '20230429', '20230430', '20230501', '20230502', '20230503', '20230504', '20230505', '20230506', '20230507', '20230508', '20230509', '20230510', '20230511', '20230512', '20230513', '20230514', '20230515', '20230516', '20230517', '20230518', '20230519', '20230520', '20230521', '20230522', '20230523', '20230524', '20230525', '20230526', '20230527', '20230528', '20230529', '20230530', '20230531', '20230601', '20230602', '20230603', '20230604', '20230605', '20230606', '20230607', '20230608', '20230609', '20230610', '20230611', '20230612', '20230613', '20230614', '20230615', '20230616', '20230617', '20230618', '20230619', '20230620', '20230621', '20230622', '20230623', '20230624', '20230625', '20230626', '20230627', '20230628', '20230629', '20230630', '20230701', '20230702', '20230703', '20230704', '20230705', '20230706', '20230707', '20230708', '20230709', '20230710', '20230711', '20230712', '20230713', '20230714', '20230715', '20230716', '20230717', '20230718', '20230719', '20230720', '20230721', '20230722', '20230723', '20230724', '20230725', '20230726', '20230727', '20230728', '20230729', '20230730', '20230731', '20230801', '20230802', '20230803', '20230804', '20230805', '20230806', '20230807', '20230808', '20230809', '20230810', '20230811', '20230812', '20230813', '20230814', '20230815', '20230816', '20230817', '20230818', '20230819', '20230820', '20230821', '20230822', '20230823', '20230824', '20230825', '20230826', '20230827', '20230828', '20230829', '20230830', '20230831', '20230901', '20230902', '20230903', '20230904', '20230905', '20230906', '20230907', '20230908', '20230909', '20230910', '20230911', '20230912', '20230913', '20230914', '20230915', '20230916', '20230917', '20230918', '20230919', '20230920', '20230921', '20230922', '20230923', '20230924', '20230925', '20230926', '20230927', '20230928', '20230929', '20230930', '20231001', '20231002', '20231003', '20231004', '20231005', '20231006', '20231007', '20231008', '20231009', '20231010', '20231011', '20231012', '20231013', '20231014', '20231015', '20231016', '20231017', '20231018', '20231019', '20231020', '20231021', '20231022', '20231023', '20231024', '20231025', '20231026', '20231027', '20231028', '20231029', '20231030', '20231031', '20231101', '20231102', '20231103', '20231104', '20231105', '20231106', '20231107', '20231108', '20231109', '20231110', '20231111', '20231112', '20231113', '20231114', '20231115', '20231116', '20231117', '20231118', '20231119', '20231120', '20231121', '20231122', '20231123', '20231124', '20231125', '20231126', '20231127', '20231128', '20231129', '20231130', '20231201', '20231202', '20231203', '20231204', '20231205', '20231206', '20231207', '20231208', '20231209', '20231210', '20231211', '20231212', '20231213', '20231214', '20231215', '20231216', '20231217', '20231218', '20231219', '20231220', '20231221', '20231222', '20231223', '20231224', '20231225', '20231226', '20231227', '20231228', '20231229', '20231230', '20231231', '20240101', '20240102', '20240103', '20240104', '20240105', '20240106', '20240107', '20240108', '20240109', '20240110', '20240111', '20240112', '20240113', '20240114', '20240115', '20240116', '20240117', '20240118', '20240119', '20240120', '20240121', '20240122', '20240123', '20240124', '20240125', '20240126', '20240127', '20240128', '20240129', '20240130', '20240131', '20240201', '20240202', '20240203', '20240204', '20240205', '20240206', '20240207', '20240208', '20240209', '20240210', '20240211', '20240212', '20240213', '20240214', '20240215', '20240216', '20240217', '20240218', '20240219', '20240220', '20240221', '20240222', '20240223', '20240224', '20240225', '20240226', '20240227', '20240228', '20240229', '20240301', '20240302', '20240303', '20240304', '20240305', '20240306', '20240307', '20240308', '20240309', '20240310', '20240311', '20240312', '20240313', '20240314', '20240315', '20240316', '20240317', '20240318', '20240319', '20240320', '20240321', '20240322', '20240323', '20240324', '20240325', '20240326', '20240327', '20240328', '20240329', '20240330', '20240331', '20240401', '20240402', '20240403', '20240404', '20240405', '20240406', '20240407', '20240408', '20240409', '20240410', '20240411', '20240412', '20240413', '20240414', '20240415', '20240416', '20240417', '20240418', '20240419', '20240420', '20240421', '20240422', '20240423', '20240424', '20240425', '20240426', '20240427', '20240428', '20240429', '20240430', '20240501', '20240502', '20240503', '20240504', '20240505', '20240506', '20240507', '20240508', '20240509', '20240510', '20240511', '20240512', '20240513', '20240514', '20240515', '20240516', '20240517', '20240518', '20240519', '20240520', '20240521', '20240522', '20240523', '20240524', '20240525', '20240526', '20240527', '20240528', '20240529', '20240530', '20240531', '20240601', '20240602', '20240603', '20240604', '20240605', '20240606', '20240607', '20240608', '20240609', '20240610', '20240611', '20240612', '20240613'] +['1974', '1975', '1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No https://quotsoft.net/air/data/china_sites_20140501.csv +No https://quotsoft.net/air/data/china_cities_20140501.csv +Downloaded CO in 1974 +No https://quotsoft.net/air/data/china_sites_20140502.csv +No https://quotsoft.net/air/data/china_cities_20140502.csv +No data for NO in 1974 +No https://quotsoft.net/air/data/china_sites_20140503.csv +No https://quotsoft.net/air/data/china_cities_20140503.csv +Downloaded NO2 in 1974 +No https://quotsoft.net/air/data/china_sites_20140504.csv +No https://quotsoft.net/air/data/china_cities_20140504.csv +No https://quotsoft.net/air/data/china_sites_20140505.csv +Downloaded O3 in 1974 +No https://quotsoft.net/air/data/china_cities_20140505.csv +No data for PM10 in 1974 +No https://quotsoft.net/air/data/china_sites_20140506.csv +No https://quotsoft.net/air/data/china_cities_20140506.csv +No data for PM2.5 in 1974 +No https://quotsoft.net/air/data/china_sites_20140507.csv +No https://quotsoft.net/air/data/china_cities_20140507.csv +No https://quotsoft.net/air/data/china_sites_20140508.csv +No https://quotsoft.net/air/data/china_cities_20140508.csv +Downloaded SO2 in 1974 +No https://quotsoft.net/air/data/china_sites_20140509.csv +No https://quotsoft.net/air/data/china_cities_20140509.csv +No https://quotsoft.net/air/data/china_sites_20140510.csv +No https://quotsoft.net/air/data/china_cities_20140510.csv +No https://quotsoft.net/air/data/china_sites_20140511.csv +No https://quotsoft.net/air/data/china_cities_20140511.csv +No file found for Carbonyls in 1974 +No https://quotsoft.net/air/data/china_sites_20140512.csv +No https://quotsoft.net/air/data/china_cities_20140512.csv +No file found for VOC in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140513.csv +No file found for IntegratedPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140514.csv +No file found for IntegratedPM2.5-10 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140514.csv +No file found for NAPSReferenceMethodPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140515.csv +No file found for PartisolPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140515.csv +No file found for PMSpeciation in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140516.csv +No file found for PMDICHOT in 1974 +No major ions data in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140517.csv +Downloaded CO in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140518.csv +No data for NO in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140519.csv +Downloaded NO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140519.csv +Downloaded O3 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140520.csv +No data for PM10 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140520.csv +No data for PM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140521.csv +Downloaded SO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140523.csv +No file found for Carbonyls in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140524.csv +No file found for VOC in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140524.csv +No file found for IntegratedPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140525.csv +No file found for IntegratedPM2.5-10 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140526.csv +No file found for NAPSReferenceMethodPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140526.csv +No file found for PartisolPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140527.csv +No file found for PMSpeciation in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140528.csv +No file found for PMDICHOT in 1975 +No major ions data in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140529.csv +Downloaded CO in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140529.csv +No data for NO in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140531.csv +Downloaded NO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140531.csv +Downloaded O3 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140601.csv +No data for PM10 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140601.csv +No data for PM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140603.csv +Downloaded SO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140605.csv +No file found for Carbonyls in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140605.csv +No file found for VOC in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140606.csv +No file found for IntegratedPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140607.csv +No file found for IntegratedPM2.5-10 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140607.csv +No file found for NAPSReferenceMethodPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140608.csv +No file found for PartisolPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140608.csv +No file found for PMSpeciation in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140609.csv +No file found for PMDICHOT in 1976 +No major ions data in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140610.csv +Downloaded CO in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140611.csv +No data for NO in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20140611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140612.csv +Downloaded NO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140613.csv +Downloaded O3 in 1977 +No data for PM10 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140614.csv +No data for PM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140615.csv +Downloaded SO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140617.csv +No file found for Carbonyls in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140618.csv +No file found for VOC in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20140618.csv +No file found for IntegratedPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140619.csv +No file found for IntegratedPM2.5-10 in 1977 +No file found for NAPSReferenceMethodPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140620.csv +No file found for PartisolPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140621.csv +No file found for PMSpeciation in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20140621.csv +No file found for PMDICHOT in 1977 +No major ions data in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140623.csv +Downloaded CO in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140623.csv +No data for NO in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140624.csv +Downloaded NO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140625.csv +Downloaded O3 in 1978 +No data for PM10 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140626.csv +No data for PM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140627.csv +Downloaded SO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140629.csv +No file found for Carbonyls in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140630.csv +No file found for VOC in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140630.csv +No file found for IntegratedPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140701.csv +No file found for IntegratedPM2.5-10 in 1978 +No file found for NAPSReferenceMethodPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140702.csv +No file found for PartisolPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140703.csv +No file found for PMSpeciation in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140703.csv +No file found for PMDICHOT in 1978 +No major ions data in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140705.csv +Downloaded CO in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140705.csv +No data for NO in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140706.csv +Downloaded NO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140707.csv +Downloaded O3 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140708.csv +No data for PM10 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140708.csv +No data for PM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140710.csv +Downloaded SO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140711.csv +No file found for Carbonyls in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140712.csv +No file found for VOC in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140713.csv +No file found for IntegratedPM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140713.csv +No file found for IntegratedPM2.5-10 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140714.csv +No file found for NAPSReferenceMethodPM2.5 in 1979 +No https://quotsoft.net/air/data/china_sites_20140715.csv +No https://quotsoft.net/air/data/china_cities_20140715.csv +No file found for PartisolPM2.5 in 1979 +No https://quotsoft.net/air/data/china_sites_20140716.csv +No https://quotsoft.net/air/data/china_cities_20140716.csv +No file found for PMSpeciation in 1979 +No https://quotsoft.net/air/data/china_sites_20140717.csv +No https://quotsoft.net/air/data/china_cities_20140717.csv +No file found for PMDICHOT in 1979 +No major ions data in 1979 +No https://quotsoft.net/air/data/china_sites_20140718.csv +No https://quotsoft.net/air/data/china_cities_20140718.csv +No https://quotsoft.net/air/data/china_sites_20140719.csv +No https://quotsoft.net/air/data/china_cities_20140719.csv +Downloaded CO in 1980 +No https://quotsoft.net/air/data/china_sites_20140720.csv +No https://quotsoft.net/air/data/china_cities_20140720.csv +No https://quotsoft.net/air/data/china_sites_20140721.csv +Downloaded NO in 1980 +No https://quotsoft.net/air/data/china_cities_20140721.csv +No https://quotsoft.net/air/data/china_sites_20140722.csv +No https://quotsoft.net/air/data/china_cities_20140722.csv +No https://quotsoft.net/air/data/china_sites_20140723.csv +Downloaded NO2 in 1980 +No https://quotsoft.net/air/data/china_cities_20140723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140724.csv +Downloaded O3 in 1980 +No data for PM10 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140725.csv +No data for PM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140726.csv +Downloaded SO2 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140728.csv +No file found for Carbonyls in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140728.csv +No file found for VOC in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140729.csv +No file found for IntegratedPM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140730.csv +No file found for IntegratedPM2.5-10 in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140730.csv +No file found for NAPSReferenceMethodPM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140731.csv +No file found for PartisolPM2.5 in 1980 +No file found for PMSpeciation in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140801.csv +No file found for PMDICHOT in 1980 +No major ions data in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140802.csv +Downloaded CO in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140803.csv +Downloaded NO in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140804.csv +Downloaded NO2 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140806.csv +Downloaded O3 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140806.csv +No data for PM10 in 1981 +No data for PM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140808.csv +Downloaded SO2 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140809.csv +No file found for Carbonyls in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140810.csv +No file found for VOC in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140811.csv +No file found for IntegratedPM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140811.csv +No file found for IntegratedPM2.5-10 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140812.csv +No file found for NAPSReferenceMethodPM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140813.csv +No file found for PartisolPM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140813.csv +No file found for PMSpeciation in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140814.csv +No file found for PMDICHOT in 1981 +No major ions data in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140815.csv +Downloaded CO in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140816.csv +Downloaded NO in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140817.csv +Downloaded NO2 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140818.csv +Downloaded O3 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140819.csv +No data for PM10 in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140819.csv +No data for PM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140820.csv +Downloaded SO2 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140822.csv +No file found for Carbonyls in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140823.csv +No file found for VOC in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140823.csv +No file found for IntegratedPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140824.csv +No file found for IntegratedPM2.5-10 in 1982 +No file found for NAPSReferenceMethodPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140825.csv +No file found for PartisolPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140826.csv +No file found for PMSpeciation in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140826.csv +No file found for PMDICHOT in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140827.csv +No major ions data in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140828.csv +Downloaded CO in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140829.csv +Downloaded NO in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140830.csv +Downloaded NO2 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140831.csv +Downloaded O3 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140901.csv +No data for PM10 in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140901.csv +No data for PM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140902.csv +Downloaded SO2 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140904.csv +No file found for Carbonyls in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140905.csv +No file found for VOC in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140905.csv +No file found for IntegratedPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140906.csv +No file found for IntegratedPM2.5-10 in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140906.csv +No file found for NAPSReferenceMethodPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140907.csv +No file found for PartisolPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140908.csv +No file found for PMSpeciation in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140908.csv +No file found for PMDICHOT in 1983 +No major ions data in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140910.csv +Downloaded CO in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140911.csv +Downloaded NO in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140912.csv +Downloaded NO2 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140913.csv +Downloaded O3 in 1984 +No data for PM10 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140914.csv +No data for PM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140915.csv +Downloaded SO2 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140917.csv +No file found for Carbonyls in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140917.csv +No file found for VOC in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140918.csv +No file found for IntegratedPM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140919.csv +No file found for IntegratedPM2.5-10 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140919.csv +No file found for NAPSReferenceMethodPM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140920.csv +No file found for PartisolPM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140920.csv +No file found for PMSpeciation in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140921.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1984 +No major ions data in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140922.csv +Downloaded CO in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140923.csv +Downloaded NO in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140925.csv +Downloaded NO2 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140926.csv +Downloaded O3 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140926.csv +No data for PM10 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140927.csv +No data for PM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140928.csv +Downloaded SO2 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140930.csv +No file found for Carbonyls in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140930.csv +No file found for VOC in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141001.csv +No file found for IntegratedPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20141001.csv +No file found for IntegratedPM2.5-10 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141002.csv +No file found for NAPSReferenceMethodPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141003.csv +No file found for PartisolPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20141003.csv +No file found for PMSpeciation in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141004.csv +No file found for PMDICHOT in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20141004.csv +No major ions data in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141005.csv +Downloaded CO in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141006.csv +Downloaded NO in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141008.csv +Downloaded NO2 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141009.csv +Downloaded O3 in 1986 +No data for PM10 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141010.csv +No data for PM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141011.csv +Downloaded SO2 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141013.csv +No file found for Carbonyls in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141013.csv +No file found for VOC in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141014.csv +No file found for IntegratedPM2.5 in 1986 +No file found for IntegratedPM2.5-10 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141015.csv +No file found for NAPSReferenceMethodPM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141016.csv +No file found for PartisolPM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141016.csv +No file found for PMSpeciation in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141017.csv +lower case PMDICHOT +Downloaded https://quotsoft.net/air/data/china_cities_20141017.csv +upper case PMDICHOT +No file found for PMDICHOT in 1986 +No major ions data in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141018.csv +Downloaded CO in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141019.csv +Downloaded NO in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141021.csv +Downloaded NO2 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141022.csv +Downloaded O3 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141023.csv +No data for PM10 in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141023.csv +No data for PM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141024.csv +Downloaded SO2 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141026.csv +No file found for Carbonyls in 1987 +No file found for VOC in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141027.csv +No file found for IntegratedPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141028.csv +No file found for IntegratedPM2.5-10 in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141028.csv +No file found for NAPSReferenceMethodPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141029.csv +No file found for PartisolPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141030.csv +No file found for PMSpeciation in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141030.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1987 +No major ions data in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141101.csv +Downloaded CO in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141102.csv +Downloaded NO in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141103.csv +Downloaded NO2 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141105.csv +Downloaded O3 in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141105.csv +No data for PM10 in 1988 +No data for PM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141107.csv +Downloaded SO2 in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141108.csv +No file found for Carbonyls in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141109.csv +No file found for VOC in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141110.csv +No file found for IntegratedPM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141110.csv +No file found for IntegratedPM2.5-10 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141111.csv +No file found for NAPSReferenceMethodPM2.5 in 1988 +No file found for PartisolPM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141112.csv +No file found for PMSpeciation in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141113.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141113.csv +No major ions data in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141114.csv +Downloaded CO in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141116.csv +Downloaded NO in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141117.csv +Downloaded NO2 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141118.csv +Downloaded O3 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141119.csv +No data for PM10 in 1989 +No data for PM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141121.csv +Downloaded SO2 in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141122.csv +No file found for Carbonyls in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141123.csv +lower case VOC +upper case VOC +No file found for VOC in 1989 +No file found for IntegratedPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141124.csv +No file found for IntegratedPM2.5-10 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141125.csv +No file found for NAPSReferenceMethodPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141125.csv +No file found for PartisolPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141126.csv +No file found for PMSpeciation in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141127.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1989 +No major ions data in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141128.csv +Downloaded CO in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141129.csv +Downloaded NO in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141201.csv +Downloaded NO2 in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141202.csv +Downloaded O3 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141203.csv +No data for PM10 in 1990 +No data for PM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141205.csv +Downloaded SO2 in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141206.csv +No file found for Carbonyls in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141207.csv +lower case VOC +upper case VOC +No file found for VOC in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141208.csv +No file found for IntegratedPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141208.csv +No file found for IntegratedPM2.5-10 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141209.csv +No file found for NAPSReferenceMethodPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141209.csv +No file found for PartisolPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141210.csv +No file found for PMSpeciation in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141211.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1990 +No major ions data in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141212.csv +Downloaded CO in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141214.csv +Downloaded NO in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141215.csv +Downloaded NO2 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141217.csv +Downloaded O3 in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141217.csv +No data for PM10 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141218.csv +No data for PM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141219.csv +Downloaded SO2 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141220.csv +No file found for Carbonyls in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141221.csv +lower case VOC +upper case VOC +No file found for VOC in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141222.csv +No file found for IntegratedPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141222.csv +No file found for IntegratedPM2.5-10 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141223.csv +No file found for NAPSReferenceMethodPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141224.csv +No file found for PartisolPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141224.csv +No file found for PMSpeciation in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141225.csv +lower case PMDICHOT +Downloaded https://quotsoft.net/air/data/china_cities_20141225.csv +upper case PMDICHOT +No file found for PMDICHOT in 1991 +No major ions data in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141226.csv +Downloaded CO in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141228.csv +Downloaded NO in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20141228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141229.csv +Downloaded NO2 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141231.csv +Downloaded O3 in 1992 +No https://quotsoft.net/air/data/china_sites_20150101.csv +Downloaded PM10 in 1992 +No https://quotsoft.net/air/data/china_cities_20150101.csv +No data for PM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150103.csv +Downloaded SO2 in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150104.csv +No file found for Carbonyls in 1992 +lower case VOC +Downloaded https://quotsoft.net/air/data/china_sites_20150105.csv +upper case VOC +No file found for VOC in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150105.csv +No file found for IntegratedPM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150106.csv +No file found for IntegratedPM2.5-10 in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150106.csv +No file found for NAPSReferenceMethodPM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150107.csv +No file found for PartisolPM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150107.csv +No file found for PMSpeciation in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150108.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1992 +No major ions data in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150109.csv +Downloaded CO in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150111.csv +Downloaded NO in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150112.csv +Downloaded NO2 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150114.csv +Downloaded O3 in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150114.csv +Downloaded PM10 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150115.csv +No data for PM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150115.csv +Response error 403, attempt 0 +Response error 403, attempt 1 +Downloaded https://quotsoft.net/air/data/china_sites_20150116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150116.csv +Response error 403, attempt 2 +Downloaded https://quotsoft.net/air/data/china_sites_20150117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150119.csv +Failed downloading https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/1993/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/SO2_1993.csv 3 times in 5 seconds, error code 403 +Downloaded https://quotsoft.net/air/data/china_cities_20150119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150120.csv +No file found for Carbonyls in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150121.csv +lower case VOC +upper case VOC +No file found for VOC in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150121.csv +No file found for IntegratedPM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150122.csv +No file found for IntegratedPM2.5-10 in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150122.csv +No file found for NAPSReferenceMethodPM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150123.csv +No file found for PartisolPM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150124.csv +No file found for PMSpeciation in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150124.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1993 +No major ions data in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150126.csv +Downloaded CO in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150127.csv +Downloaded NO in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150128.csv +Downloaded NO2 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150130.csv +Downloaded O3 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150131.csv +Downloaded PM10 in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150131.csv +No data for PM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150201.csv +Downloaded SO2 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150203.csv +No file found for Carbonyls in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150203.csv +lower case VOC +upper case VOC +No file found for VOC in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150204.csv +No file found for IntegratedPM2.5 in 1994 +No file found for IntegratedPM2.5-10 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150205.csv +No file found for NAPSReferenceMethodPM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150206.csv +No file found for PartisolPM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150206.csv +No file found for PMSpeciation in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150207.csv +lower case PMDICHOT +Downloaded https://quotsoft.net/air/data/china_cities_20150207.csv +upper case PMDICHOT +No file found for PMDICHOT in 1994 +No major ions data in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150208.csv +Downloaded CO in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150210.csv +Downloaded NO in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150211.csv +Downloaded NO2 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150213.csv +Downloaded O3 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150214.csv +Downloaded PM10 in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150214.csv +No data for PM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150215.csv +Downloaded SO2 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150217.csv +No file found for Carbonyls in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150217.csv +lower case VOC +upper case VOC +No file found for VOC in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150218.csv +No file found for IntegratedPM2.5 in 1995 +No file found for IntegratedPM2.5-10 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150219.csv +No file found for NAPSReferenceMethodPM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150220.csv +No file found for PartisolPM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150220.csv +No file found for PMSpeciation in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150221.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150221.csv +No major ions data in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150222.csv +Downloaded CO in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150223.csv +Downloaded NO in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150225.csv +Downloaded NO2 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150226.csv +Downloaded O3 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150227.csv +Downloaded PM10 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150228.csv +No data for PM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150301.csv +Downloaded SO2 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150302.csv +No file found for Carbonyls in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150303.csv +lower case VOC +upper case VOC +No file found for VOC in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150304.csv +No file found for IntegratedPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150304.csv +No file found for IntegratedPM2.5-10 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150305.csv +No file found for NAPSReferenceMethodPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150305.csv +No file found for PartisolPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150306.csv +No file found for PMSpeciation in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150306.csv +No file found for PMDICHOT in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150307.csv +No major ions data in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150308.csv +Downloaded CO in 1997 +Downloaded https://quotsoft.net/air/data/china_cities_20150308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150309.csv +Downloaded NO in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150310.csv +Downloaded NO2 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150312.csv +Downloaded O3 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150313.csv +Downloaded PM10 in 1997 +No data for PM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150314.csv +Downloaded SO2 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150316.csv +No file found for Carbonyls in 1997 +lower case VOC +upper case VOC +No file found for VOC in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150317.csv +No file found for IntegratedPM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150318.csv +No file found for IntegratedPM2.5-10 in 1997 +Downloaded https://quotsoft.net/air/data/china_cities_20150318.csv +No file found for NAPSReferenceMethodPM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150319.csv +No file found for PartisolPM2.5 in 1997 +No file found for PMSpeciation in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150320.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1997 +No major ions data in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150321.csv +Downloaded CO in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150323.csv +Downloaded NO in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150324.csv +Downloaded NO2 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150326.csv +Downloaded O3 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150327.csv +Downloaded PM10 in 1998 +No data for PM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150329.csv +Downloaded SO2 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150330.csv +No file found for Carbonyls in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150331.csv +lower case VOC +upper case VOC +No file found for VOC in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150401.csv +No file found for IntegratedPM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150401.csv +No file found for IntegratedPM2.5-10 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150402.csv +No file found for NAPSReferenceMethodPM2.5 in 1998 +No file found for PartisolPM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150403.csv +No file found for PMSpeciation in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150404.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1998 +No major ions data in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150405.csv +Downloaded CO in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150406.csv +Downloaded NO in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150408.csv +Downloaded NO2 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150410.csv +Downloaded O3 in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150411.csv +Downloaded PM10 in 1999 +No data for PM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150413.csv +Downloaded SO2 in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150414.csv +No file found for Carbonyls in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150415.csv +lower case VOC +upper case VOC +No file found for VOC in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150415.csv +No file found for IntegratedPM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150416.csv +No file found for IntegratedPM2.5-10 in 1999 +No file found for NAPSReferenceMethodPM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150417.csv +No file found for PartisolPM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150418.csv +No file found for PMSpeciation in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150418.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 1999 +No major ions data in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150419.csv +Response error 403, attempt 0 +Response error 403, attempt 1 +Downloaded https://quotsoft.net/air/data/china_sites_20150420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150420.csv +Response error 403, attempt 2 +Downloaded https://quotsoft.net/air/data/china_sites_20150421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150422.csv +Failed downloading https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/2000/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/CO_2000.csv 3 times in 5 seconds, error code 403 +Downloaded https://quotsoft.net/air/data/china_sites_20150423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150424.csv +Downloaded NO in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150426.csv +Downloaded NO2 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150428.csv +Downloaded O3 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150429.csv +Downloaded PM10 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150429.csv +No data for PM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150430.csv +Downloaded SO2 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150502.csv +No file found for Carbonyls in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150502.csv +lower case VOC +upper case VOC +No file found for VOC in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150503.csv +No file found for IntegratedPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150504.csv +No file found for IntegratedPM2.5-10 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150504.csv +No file found for NAPSReferenceMethodPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150505.csv +No file found for PartisolPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150505.csv +No file found for PMSpeciation in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150506.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2000 +No major ions data in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150508.csv +Downloaded CO in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150509.csv +Downloaded NO in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150511.csv +Downloaded NO2 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150513.csv +Downloaded O3 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150514.csv +Downloaded PM10 in 2001 +No data for PM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150516.csv +Downloaded SO2 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150517.csv +No file found for Carbonyls in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150518.csv +lower case VOC +upper case VOC +No file found for VOC in 2001 +No file found for IntegratedPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150519.csv +No file found for IntegratedPM2.5-10 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150520.csv +No file found for NAPSReferenceMethodPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150520.csv +No file found for PartisolPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150521.csv +No file found for PMSpeciation in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150521.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150522.csv +No major ions data in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150523.csv +Downloaded CO in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150525.csv +Downloaded NO in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150526.csv +Downloaded NO2 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150528.csv +Downloaded O3 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150529.csv +Downloaded PM10 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150530.csv +No data for PM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150531.csv +Downloaded SO2 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150602.csv +No file found for Carbonyls in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150602.csv +lower case VOC +upper case VOC +No file found for VOC in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150603.csv +No file found for IntegratedPM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150603.csv +No file found for IntegratedPM2.5-10 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150604.csv +No file found for NAPSReferenceMethodPM2.5 in 2002 +No file found for PartisolPM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150605.csv +No file found for PMSpeciation in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150606.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150606.csv +No major ions data in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150607.csv +Downloaded CO in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150609.csv +Downloaded NO in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150611.csv +Downloaded NO2 in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150612.csv +Downloaded O3 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150613.csv +Downloaded PM10 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150614.csv +No data for PM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150615.csv +Downloaded SO2 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150617.csv +No file found for Carbonyls in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150618.csv +lower case VOC +upper case VOC +No file found for VOC in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150618.csv +No file found for IntegratedPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150619.csv +No file found for IntegratedPM2.5-10 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150620.csv +No file found for NAPSReferenceMethodPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150620.csv +No file found for PartisolPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150621.csv +upper case PMSpeciation +No file found for PMSpeciation in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150621.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2003 +No major ions data in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150623.csv +Downloaded CO in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150624.csv +Downloaded NO in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150626.csv +Downloaded NO2 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150628.csv +Downloaded O3 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150629.csv +Downloaded PM10 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150630.csv +No data for PM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150701.csv +Downloaded SO2 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150703.csv +No file found for Carbonyls in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150703.csv +lower case VOC +upper case VOC +No file found for VOC in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150704.csv +No file found for IntegratedPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150705.csv +No file found for IntegratedPM2.5-10 in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150705.csv +No file found for NAPSReferenceMethodPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150706.csv +No file found for PartisolPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150706.csv +upper case PMSpeciation +No file found for PMSpeciation in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150707.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2004 +No major ions data in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150708.csv +Downloaded CO in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150710.csv +Downloaded NO in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150712.csv +Downloaded NO2 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150714.csv +Downloaded O3 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150715.csv +Downloaded PM10 in 2005 +No data for PM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150717.csv +Downloaded SO2 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150719.csv +No file found for Carbonyls in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150719.csv +lower case VOC +upper case VOC +No file found for VOC in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150720.csv +No file found for IntegratedPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150721.csv +No file found for IntegratedPM2.5-10 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150721.csv +No file found for NAPSReferenceMethodPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150722.csv +No file found for PartisolPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150722.csv +upper case PMSpeciation +No file found for PMSpeciation in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150723.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2005 +No major ions data in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150724.csv +Downloaded CO in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150726.csv +Downloaded NO in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150728.csv +Downloaded NO2 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150730.csv +Downloaded O3 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150731.csv +Downloaded PM10 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150731.csv +No data for PM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150802.csv +Downloaded SO2 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150804.csv +No file found for Carbonyls in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150804.csv +lower case VOC +upper case VOC +No file found for VOC in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150805.csv +No file found for IntegratedPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150805.csv +No file found for IntegratedPM2.5-10 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150806.csv +No file found for NAPSReferenceMethodPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150807.csv +No file found for PartisolPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150807.csv +upper case PMSpeciation +No file found for PMSpeciation in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150808.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150808.csv +No major ions data in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150809.csv +Downloaded CO in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150811.csv +Downloaded NO in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150813.csv +Downloaded NO2 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150815.csv +Downloaded O3 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150816.csv +Downloaded PM10 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150816.csv +No data for PM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150818.csv +Downloaded SO2 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150819.csv +No file found for Carbonyls in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150820.csv +lower case VOC +upper case VOC +No file found for VOC in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150820.csv +No file found for IntegratedPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150821.csv +No file found for IntegratedPM2.5-10 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150822.csv +No file found for NAPSReferenceMethodPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150822.csv +No file found for PartisolPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150823.csv +upper case PMSpeciation +No file found for PMSpeciation in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150823.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150824.csv +No major ions data in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150825.csv +Downloaded CO in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150827.csv +Downloaded NO in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150828.csv +Downloaded NO2 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150830.csv +Downloaded O3 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150831.csv +Downloaded PM10 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150901.csv +No data for PM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150903.csv +Downloaded SO2 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150904.csv +No file found for Carbonyls in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150905.csv +lower case VOC +upper case VOC +No file found for VOC in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150905.csv +No file found for IntegratedPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150906.csv +No file found for IntegratedPM2.5-10 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150907.csv +No file found for NAPSReferenceMethodPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150907.csv +No file found for PartisolPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150908.csv +upper case PMSpeciation +No file found for PMSpeciation in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150908.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2008 +No major ions data in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150910.csv +Downloaded CO in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150912.csv +Downloaded NO in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150913.csv +Downloaded NO2 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150915.csv +Downloaded O3 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150916.csv +Downloaded PM10 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150917.csv +No data for PM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150918.csv +Downloaded SO2 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150920.csv +No file found for Carbonyls in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150921.csv +lower case VOC +upper case VOC +No file found for VOC in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150921.csv +No file found for IntegratedPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150922.csv +No file found for IntegratedPM2.5-10 in 2009 +No file found for NAPSReferenceMethodPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150923.csv +No file found for PartisolPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150924.csv +upper case PMSpeciation +No file found for PMSpeciation in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150924.csv +lower case PMDICHOT +upper case PMDICHOT +No file found for PMDICHOT in 2009 +No major ions data in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150926.csv +Downloaded CO in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150927.csv +Downloaded NO in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150929.csv +Downloaded NO2 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151001.csv +Downloaded O3 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151002.csv +Downloaded PM10 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151003.csv +No data for PM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20151003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151005.csv +Downloaded SO2 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20151005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151006.csv +No file found for Carbonyls in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151007.csv +lower case VOC +upper case VOC +No file found for VOC in 2010 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151008.csv +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151009.csv +No file found for NAPSReferenceMethodPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20151009.csv +No file found for PartisolPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151010.csv +No file found for PMSpeciation in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20151010.csv +No file found for PMDICHOT in 2010 +No major ions data in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151012.csv +Downloaded CO in 2011 +Downloaded NO in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151014.csv +Downloaded NO2 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151016.csv +Downloaded O3 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151016.csv +Downloaded PM10 in 2011 +No data for PM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151018.csv +Downloaded SO2 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151019.csv +No file found for Carbonyls in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151020.csv +lower case VOC +upper case VOC +No file found for VOC in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151020.csv +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151021.csv +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151021.csv +No file found for NAPSReferenceMethodPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151022.csv +No file found for PartisolPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151022.csv +No file found for PMSpeciation in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151023.csv +No file found for PMDICHOT in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151023.csv +No major ions data in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151024.csv +Downloaded CO in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151025.csv +Downloaded NO in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151027.csv +Downloaded NO2 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151028.csv +Downloaded O3 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151029.csv +Response error 403, attempt 0 +Response error 403, attempt 1 +HTTPSConnectionPool(host='quotsoft.net', port=443): Max retries exceeded with url: /air/data/china_cities_20151029.csv (Caused by ConnectTimeoutError(, 'Connection to quotsoft.net timed out. (connect timeout=3)')) +Started downloading data of CAPMoN +['1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +Response error 403, attempt 2 +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1980.csv +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1981.csv +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1982.csv +Failed downloading https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/2012/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/PM10_2012.csv 3 times in 5 seconds, error code 403 +No ozone l data found, error 404 +No data for PM2.5 in 2012 +[Errno 2] No such file or directory: '/esarchive/obs/ghost/CAPMoN/original_files/1.6/precip/major-ions/precip/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1983.csv' +Downloaded SO2 in 2012 +No file found for Carbonyls in 2012 +lower case VOC +upper case VOC +No file found for VOC in 2012 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2012 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2012 +No file found for NAPSReferenceMethodPM2.5 in 2012 +No file found for PartisolPM2.5 in 2012 +No file found for PMSpeciation in 2012 +No file found for PMDICHOT in 2012 +No major ions data in 2012 +Downloaded CO in 2013 +Downloaded NO in 2013 +Downloaded NO2 in 2013 +Downloaded O3 in 2013 +Downloaded PM10 in 2013 +No data for PM2.5 in 2013 +Downloaded SO2 in 2013 +No file found for Carbonyls in 2013 +lower case VOC +upper case VOC +No file found for VOC in 2013 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2013 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2013 +No file found for NAPSReferenceMethodPM2.5 in 2013 +No file found for PartisolPM2.5 in 2013 +No file found for PMSpeciation in 2013 +No file found for PMDICHOT in 2013 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2013.csv +Downloaded CO in 2014 +Downloaded NO in 2014 +Downloaded NO2 in 2014 +Downloaded O3 in 2014 +Downloaded PM10 in 2014 +No data for PM2.5 in 2014 +Downloaded SO2 in 2014 +upper case Carbonyls +No file found for Carbonyls in 2014 +lower case VOC +upper case VOC +No file found for VOC in 2014 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2014 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2014 +No file found for NAPSReferenceMethodPM2.5 in 2014 +No file found for PartisolPM2.5 in 2014 +No file found for PMSpeciation in 2014 +No file found for PMDICHOT in 2014 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2014.csv +Downloaded CO in 2015 +Downloaded NO in 2015 +Downloaded NO2 in 2015 +Downloaded O3 in 2015 +Downloaded PM10 in 2015 +No data for PM2.5 in 2015 +Downloaded SO2 in 2015 +upper case Carbonyls +No file found for Carbonyls in 2015 +lower case VOC +upper case VOC +No file found for VOC in 2015 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2015 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2015 +No file found for NAPSReferenceMethodPM2.5 in 2015 +No file found for PartisolPM2.5 in 2015 +No file found for PMSpeciation in 2015 +No file found for PMDICHOT in 2015 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2015.csv +Downloaded CO in 2016 +Downloaded NO in 2016 +Downloaded NO2 in 2016 +Downloaded O3 in 2016 +Downloaded PM10 in 2016 +No data for PM2.5 in 2016 +Downloaded SO2 in 2016 +upper case Carbonyls +No file found for Carbonyls in 2016 +lower case VOC +upper case VOC +No file found for VOC in 2016 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2016 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2016 +No file found for NAPSReferenceMethodPM2.5 in 2016 +No file found for PartisolPM2.5 in 2016 +No file found for PMSpeciation in 2016 +No file found for PMDICHOT in 2016 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2016.csv +Downloaded CO in 2017 +Downloaded NO in 2017 +Downloaded NO2 in 2017 +Downloaded O3 in 2017 +Downloaded PM10 in 2017 +No data for PM2.5 in 2017 +Downloaded SO2 in 2017 +upper case Carbonyls +No file found for Carbonyls in 2017 +lower case VOC +upper case VOC +No file found for VOC in 2017 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2017 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2017 +No file found for NAPSReferenceMethodPM2.5 in 2017 +No file found for PartisolPM2.5 in 2017 +No file found for PMSpeciation in 2017 +No file found for PMDICHOT in 2017 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2017.csv +Downloaded CO in 2018 +Downloaded NO in 2018 +Downloaded NO2 in 2018 +Downloaded O3 in 2018 +Downloaded PM10 in 2018 +No data for PM2.5 in 2018 +Downloaded SO2 in 2018 +upper case Carbonyls +No file found for Carbonyls in 2018 +lower case VOC +upper case VOC +No file found for VOC in 2018 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2018 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2018 +No file found for NAPSReferenceMethodPM2.5 in 2018 +No file found for PartisolPM2.5 in 2018 +No file found for PMSpeciation in 2018 +No file found for PMDICHOT in 2018 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2018.csv +Downloaded CO in 2019 +Downloaded NO in 2019 +Downloaded NO2 in 2019 +Downloaded O3 in 2019 +Downloaded PM10 in 2019 +No data for PM2.5 in 2019 +Downloaded SO2 in 2019 +upper case Carbonyls +No file found for Carbonyls in 2019 +lower case VOC +upper case VOC +No file found for VOC in 2019 +lower case IntegratedPM2.5 +No file found for IntegratedPM2.5 in 2019 +lower case IntegratedPM2.5-10 +No file found for IntegratedPM2.5-10 in 2019 +No file found for NAPSReferenceMethodPM2.5 in 2019 +No file found for PartisolPM2.5 in 2019 +No file found for PMSpeciation in 2019 +No file found for PMDICHOT in 2019 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2019.csv +Downloaded CO in 2020 +Downloaded NO in 2020 +Downloaded NO2 in 2020 +Downloaded O3 in 2020 +Downloaded PM10 in 2020 +No data for PM2.5 in 2020 +Response error 403, attempt 0 +Response error 403, attempt 1 +Response error 403, attempt 2 +Failed downloading https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/national-air-pollution-surveillance-naps-program/Data-Donnees/2020/ContinuousData-DonneesContinu/HourlyData-DonneesHoraires/SO2_2020.csv 3 times in 5 seconds, error code 403 +No file found for Carbonyls in 2020 +lower case VOC +upper case VOC +No file found for VOC in 2020 +No file found for IntegratedPM2.5 in 2020 +No file found for IntegratedPM2.5-10 in 2020 +No file found for NAPSReferenceMethodPM2.5 in 2020 +No file found for PartisolPM2.5 in 2020 +No file found for PMSpeciation in 2020 +No file found for PMDICHOT in 2020 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2020.csv +Downloaded CO in 2021 +Downloaded NO in 2021 +Downloaded NO2 in 2021 +Downloaded O3 in 2021 +Downloaded PM10 in 2021 +No data for PM2.5 in 2021 +Downloaded SO2 in 2021 +No file found for Carbonyls in 2021 +lower case VOC +upper case VOC +No file found for VOC in 2021 +No file found for IntegratedPM2.5 in 2021 +No file found for IntegratedPM2.5-10 in 2021 +No file found for NAPSReferenceMethodPM2.5 in 2021 +No file found for PartisolPM2.5 in 2021 +No file found for PMSpeciation in 2021 +No file found for PMDICHOT in 2021 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2021.csv +Downloaded CO in 2022 +Downloaded NO in 2022 +Downloaded NO2 in 2022 +Downloaded O3 in 2022 +Downloaded PM10 in 2022 +No data for PM2.5 in 2022 +Downloaded SO2 in 2022 +No file found for Carbonyls in 2022 +lower case VOC +upper case VOC +No file found for VOC in 2022 +No file found for IntegratedPM2.5 in 2022 +No file found for IntegratedPM2.5-10 in 2022 +No file found for NAPSReferenceMethodPM2.5 in 2022 +No file found for PartisolPM2.5 in 2022 +No file found for PMSpeciation in 2022 +No file found for PMDICHOT in 2022 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2022.csv +No data for CO in 2023 +No data for NO in 2023 +No data for NO2 in 2023 +No data for O3 in 2023 +No data for PM10 in 2023 +No data for PM2.5 in 2023 +No data for SO2 in 2023 +No file found for Carbonyls in 2023 +No file found for VOC in 2023 +No file found for IntegratedPM2.5 in 2023 +No file found for IntegratedPM2.5-10 in 2023 +No file found for NAPSReferenceMethodPM2.5 in 2023 +No file found for PartisolPM2.5 in 2023 +No file found for PMSpeciation in 2023 +No file found for PMDICHOT in 2023 +No major ions data in 2023 +No data for CO in 2024 +No data for NO in 2024 +No data for NO2 in 2024 +No data for O3 in 2024 +No data for PM10 in 2024 +No data for PM2.5 in 2024 +No data for SO2 in 2024 +No file found for Carbonyls in 2024 +No file found for VOC in 2024 +No file found for IntegratedPM2.5 in 2024 +No file found for IntegratedPM2.5-10 in 2024 +No file found for NAPSReferenceMethodPM2.5 in 2024 +No file found for PartisolPM2.5 in 2024 +No file found for PMSpeciation in 2024 +No file found for PMDICHOT in 2024 +No major ions data in 2024 +Downloaded AtmosphericPrecipitationChemistry-MetalsInPrecipitation-GLB-MultipleSites-1993_2017.csv +name 'max_time_dl' is not defined +multiprocessing.pool.RemoteTraceback: +""" +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn + conn = connection.create_connection( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection + raise err + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection + sock.connect(sa) +socket.timeout: timed out + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 699, in urlopen + httplib_response = self._make_request( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 382, in _make_request + self._validate_conn(conn) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1010, in _validate_conn + conn.connect() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect + conn = self._new_conn() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connection.py", line 174, in _new_conn + raise ConnectTimeoutError( +urllib3.exceptions.ConnectTimeoutError: (, 'Connection to quotsoft.net timed out. (connect timeout=3)') + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 489, in send + resp = conn.urlopen( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/connectionpool.py", line 755, in urlopen + retries = retries.increment( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/site-packages/urllib3/util/retry.py", line 574, in increment + raise MaxRetryError(_pool, url, error or ResponseError(cause)) +urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='quotsoft.net', port=443): Max retries exceeded with url: /air/data/china_cities_20151029.csv (Caused by ConnectTimeoutError(, 'Connection to quotsoft.net timed out. (connect timeout=3)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/CNEMC_download.py", line 73, in download_data + r = requests.get(url, timeout=max_time_per_dl) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 73, in get + return request("get", url, params=params, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/api.py", line 59, in request + return session.request(method=method, url=url, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 587, in request + resp = self.send(prep, **send_kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/sessions.py", line 701, in send + r = adapter.send(request, **kwargs) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/requests/2.28.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/requests/adapters.py", line 553, in send + raise ConnectTimeout(e, request=request) +requests.exceptions.ConnectTimeout: HTTPSConnectionPool(host='quotsoft.net', port=443): Max retries exceeded with url: /air/data/china_cities_20151029.csv (Caused by ConnectTimeoutError(, 'Connection to quotsoft.net timed out. (connect timeout=3)')) + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 125, in worker + result = (True, func(*args, **kwds)) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 51, in starmapstar + return list(itertools.starmap(args[0], args[1])) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 62, in download_network + res = '{} data unsuccessful -- total: {} min +++ download: {} min +++ rsync: {} min \n'.format(network, total_dl_time, dl_time, rsync_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' +UnboundLocalError: local variable 'dl_time' referenced before assignment +""" + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 168, in + pool.starmap(download_network, zip(networks, itertools.repeat(dlconfig.dl_data), itertools.repeat(dlconfig.dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode), itertools.repeat(start_date), itertools.repeat(stop_date), itertools.repeat(dlconfig.root), itertools.repeat(q))) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 372, in starmap + return self._map_async(func, iterable, starmapstar, chunksize).get() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 771, in get + raise self._value +UnboundLocalError: local variable 'dl_time' referenced before assignment +Process Process-4: +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap + self.run() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 108, in run + self._target(*self._args, **self._kwargs) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 114, in writer + message = q.get() + File "", line 2, in get + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/managers.py", line 809, in _callmethod + kind, result = conn.recv() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 255, in recv + buf = self._recv_bytes() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 419, in _recv_bytes + buf = self._recv(4) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 388, in _recv + raise EOFError +EOFError + +real 48m24,407s +user 0m44,095s +sys 0m11,919s diff --git a/download_scripts/log_files/nohup_all_20240614.out b/download_scripts/log_files/nohup_all_20240614.out new file mode 100644 index 0000000000000000000000000000000000000000..cab45bd9b6f942dd17177cf44cf5702ed3821591 --- /dev/null +++ b/download_scripts/log_files/nohup_all_20240614.out @@ -0,0 +1,8338 @@ + +The following have been reloaded with a version change: + 1) typing-extensions/4.4.0-foss-2021b-Python-3.9.6 => typing-extensions/4.9.0-GCCcore-11.2.0 + +Ghost version: 1.6 +Mode: all +/shared/earth/easybuild/rocky/8.4/x86_64/software/beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/bs4/element.py:15: UserWarning: The soupsieve package is not installed. CSS selectors cannot be used. + warnings.warn( +Started downloading data of CANADA_NAPS +Started downloading data of EANET + +Started downloading data of CNEMC +['20140501', '20140502', '20140503', '20140504', '20140505', '20140506', '20140507', '20140508', '20140509', '20140510', '20140511', '20140512', '20140513', '20140514', '20140515', '20140516', '20140517', '20140518', '20140519', '20140520', '20140521', '20140522', '20140523', '20140524', '20140525', '20140526', '20140527', '20140528', '20140529', '20140530', '20140531', '20140601', '20140602', '20140603', '20140604', '20140605', '20140606', '20140607', '20140608', '20140609', '20140610', '20140611', '20140612', '20140613', '20140614', '20140615', '20140616', '20140617', '20140618', '20140619', '20140620', '20140621', '20140622', '20140623', '20140624', '20140625', '20140626', '20140627', '20140628', '20140629', '20140630', '20140701', '20140702', '20140703', '20140704', '20140705', '20140706', '20140707', '20140708', '20140709', '20140710', '20140711', '20140712', '20140713', '20140714', '20140715', '20140716', '20140717', '20140718', '20140719', '20140720', '20140721', '20140722', '20140723', '20140724', '20140725', '20140726', '20140727', '20140728', '20140729', '20140730', '20140731', '20140801', '20140802', '20140803', '20140804', '20140805', '20140806', '20140807', '20140808', '20140809', '20140810', '20140811', '20140812', '20140813', '20140814', '20140815', '20140816', '20140817', '20140818', '20140819', '20140820', '20140821', '20140822', '20140823', '20140824', '20140825', '20140826', '20140827', '20140828', '20140829', '20140830', '20140831', '20140901', '20140902', '20140903', '20140904', '20140905', '20140906', '20140907', '20140908', '20140909', '20140910', '20140911', '20140912', '20140913', '20140914', '20140915', '20140916', '20140917', '20140918', '20140919', '20140920', '20140921', '20140922', '20140923', '20140924', '20140925', '20140926', '20140927', '20140928', '20140929', '20140930', '20141001', '20141002', '20141003', '20141004', '20141005', '20141006', '20141007', '20141008', '20141009', '20141010', '20141011', '20141012', '20141013', '20141014', '20141015', '20141016', '20141017', '20141018', '20141019', '20141020', '20141021', '20141022', '20141023', '20141024', '20141025', '20141026', '20141027', '20141028', '20141029', '20141030', '20141031', '20141101', '20141102', '20141103', '20141104', '20141105', '20141106', '20141107', '20141108', '20141109', '20141110', '20141111', '20141112', '20141113', '20141114', '20141115', '20141116', '20141117', '20141118', '20141119', '20141120', '20141121', '20141122', '20141123', '20141124', '20141125', '20141126', '20141127', '20141128', '20141129', '20141130', '20141201', '20141202', '20141203', '20141204', '20141205', '20141206', '20141207', '20141208', '20141209', '20141210', '20141211', '20141212', '20141213', '20141214', '20141215', '20141216', '20141217', '20141218', '20141219', '20141220', '20141221', '20141222', '20141223', '20141224', '20141225', '20141226', '20141227', '20141228', '20141229', '20141230', '20141231', '20150101', '20150102', '20150103', '20150104', '20150105', '20150106', '20150107', '20150108', '20150109', '20150110', '20150111', '20150112', '20150113', '20150114', '20150115', '20150116', '20150117', '20150118', '20150119', '20150120', '20150121', '20150122', '20150123', '20150124', '20150125', '20150126', '20150127', '20150128', '20150129', '20150130', '20150131', '20150201', '20150202', '20150203', '20150204', '20150205', '20150206', '20150207', '20150208', '20150209', '20150210', '20150211', '20150212', '20150213', '20150214', '20150215', '20150216', '20150217', '20150218', '20150219', '20150220', '20150221', '20150222', '20150223', '20150224', '20150225', '20150226', '20150227', '20150228', '20150301', '20150302', '20150303', '20150304', '20150305', '20150306', '20150307', '20150308', '20150309', '20150310', '20150311', '20150312', '20150313', '20150314', '20150315', '20150316', '20150317', '20150318', '20150319', '20150320', '20150321', '20150322', '20150323', '20150324', '20150325', '20150326', '20150327', '20150328', '20150329', '20150330', '20150331', '20150401', '20150402', '20150403', '20150404', '20150405', '20150406', '20150407', '20150408', '20150409', '20150410', '20150411', '20150412', '20150413', '20150414', '20150415', '20150416', '20150417', '20150418', '20150419', '20150420', '20150421', '20150422', '20150423', '20150424', '20150425', '20150426', '20150427', '20150428', '20150429', '20150430', '20150501', '20150502', '20150503', '20150504', '20150505', '20150506', '20150507', '20150508', '20150509', '20150510', '20150511', '20150512', '20150513', '20150514', '20150515', '20150516', '20150517', '20150518', '20150519', '20150520', '20150521', '20150522', '20150523', '20150524', '20150525', '20150526', '20150527', '20150528', '20150529', '20150530', '20150531', '20150601', '20150602', '20150603', '20150604', '20150605', '20150606', '20150607', '20150608', '20150609', '20150610', '20150611', '20150612', '20150613', '20150614', '20150615', '20150616', '20150617', '20150618', '20150619', '20150620', '20150621', '20150622', '20150623', '20150624', '20150625', '20150626', '20150627', '20150628', '20150629', '20150630', '20150701', '20150702', '20150703', '20150704', '20150705', '20150706', '20150707', '20150708', '20150709', '20150710', '20150711', '20150712', '20150713', '20150714', '20150715', '20150716', '20150717', '20150718', '20150719', '20150720', '20150721', '20150722', '20150723', '20150724', '20150725', '20150726', '20150727', '20150728', '20150729', '20150730', '20150731', '20150801', '20150802', '20150803', '20150804', '20150805', '20150806', '20150807', '20150808', '20150809', '20150810', '20150811', '20150812', '20150813', '20150814', '20150815', '20150816', '20150817', '20150818', '20150819', '20150820', '20150821', '20150822', '20150823', '20150824', '20150825', '20150826', '20150827', '20150828', '20150829', '20150830', '20150831', '20150901', '20150902', '20150903', '20150904', '20150905', '20150906', '20150907', '20150908', '20150909', '20150910', '20150911', '20150912', '20150913', '20150914', '20150915', '20150916', '20150917', '20150918', '20150919', '20150920', '20150921', '20150922', '20150923', '20150924', '20150925', '20150926', '20150927', '20150928', '20150929', '20150930', '20151001', '20151002', '20151003', '20151004', '20151005', '20151006', '20151007', '20151008', '20151009', '20151010', '20151011', '20151012', '20151013', '20151014', '20151015', '20151016', '20151017', '20151018', '20151019', '20151020', '20151021', '20151022', '20151023', '20151024', '20151025', '20151026', '20151027', '20151028', '20151029', '20151030', '20151031', '20151101', '20151102', '20151103', '20151104', '20151105', '20151106', '20151107', '20151108', '20151109', '20151110', '20151111', '20151112', '20151113', '20151114', '20151115', '20151116', '20151117', '20151118', '20151119', '20151120', '20151121', '20151122', '20151123', '20151124', '20151125', '20151126', '20151127', '20151128', '20151129', '20151130', '20151201', '20151202', '20151203', '20151204', '20151205', '20151206', '20151207', '20151208', '20151209', '20151210', '20151211', '20151212', '20151213', '20151214', '20151215', '20151216', '20151217', '20151218', '20151219', '20151220', '20151221', '20151222', '20151223', '20151224', '20151225', '20151226', '20151227', '20151228', '20151229', '20151230', '20151231', '20160101', '20160102', '20160103', '20160104', '20160105', '20160106', '20160107', '20160108', '20160109', '20160110', '20160111', '20160112', '20160113', '20160114', '20160115', '20160116', '20160117', '20160118', '20160119', '20160120', '20160121', '20160122', '20160123', '20160124', '20160125', '20160126', '20160127', '20160128', '20160129', '20160130', '20160131', '20160201', '20160202', '20160203', '20160204', '20160205', '20160206', '20160207', '20160208', '20160209', '20160210', '20160211', '20160212', '20160213', '20160214', '20160215', '20160216', '20160217', '20160218', '20160219', '20160220', '20160221', '20160222', '20160223', '20160224', '20160225', '20160226', '20160227', '20160228', '20160229', '20160301', '20160302', '20160303', '20160304', '20160305', '20160306', '20160307', '20160308', '20160309', '20160310', '20160311', '20160312', '20160313', '20160314', '20160315', '20160316', '20160317', '20160318', '20160319', '20160320', '20160321', '20160322', '20160323', '20160324', '20160325', '20160326', '20160327', '20160328', '20160329', '20160330', '20160331', '20160401', '20160402', '20160403', '20160404', '20160405', '20160406', '20160407', '20160408', '20160409', '20160410', '20160411', '20160412', '20160413', '20160414', '20160415', '20160416', '20160417', '20160418', '20160419', '20160420', '20160421', '20160422', '20160423', '20160424', '20160425', '20160426', '20160427', '20160428', '20160429', '20160430', '20160501', '20160502', '20160503', '20160504', '20160505', '20160506', '20160507', '20160508', '20160509', '20160510', '20160511', '20160512', '20160513', '20160514', '20160515', '20160516', '20160517', '20160518', '20160519', '20160520', '20160521', '20160522', '20160523', '20160524', '20160525', '20160526', '20160527', '20160528', '20160529', '20160530', '20160531', '20160601', '20160602', '20160603', '20160604', '20160605', '20160606', '20160607', '20160608', '20160609', '20160610', '20160611', '20160612', '20160613', '20160614', '20160615', '20160616', '20160617', '20160618', '20160619', '20160620', '20160621', '20160622', '20160623', '20160624', '20160625', '20160626', '20160627', '20160628', '20160629', '20160630', '20160701', '20160702', '20160703', '20160704', '20160705', '20160706', '20160707', '20160708', '20160709', '20160710', '20160711', '20160712', '20160713', '20160714', '20160715', '20160716', '20160717', '20160718', '20160719', '20160720', '20160721', '20160722', '20160723', '20160724', '20160725', '20160726', '20160727', '20160728', '20160729', '20160730', '20160731', '20160801', '20160802', '20160803', '20160804', '20160805', '20160806', '20160807', '20160808', '20160809', '20160810', '20160811', '20160812', '20160813', '20160814', '20160815', '20160816', '20160817', '20160818', '20160819', '20160820', '20160821', '20160822', '20160823', '20160824', '20160825', '20160826', '20160827', '20160828', '20160829', '20160830', '20160831', '20160901', '20160902', '20160903', '20160904', '20160905', '20160906', '20160907', '20160908', '20160909', '20160910', '20160911', '20160912', '20160913', '20160914', '20160915', '20160916', '20160917', '20160918', '20160919', '20160920', '20160921', '20160922', '20160923', '20160924', '20160925', '20160926', '20160927', '20160928', '20160929', '20160930', '20161001', '20161002', '20161003', '20161004', '20161005', '20161006', '20161007', '20161008', '20161009', '20161010', '20161011', '20161012', '20161013', '20161014', '20161015', '20161016', '20161017', '20161018', '20161019', '20161020', '20161021', '20161022', '20161023', '20161024', '20161025', '20161026', '20161027', '20161028', '20161029', '20161030', '20161031', '20161101', '20161102', '20161103', '20161104', '20161105', '20161106', '20161107', '20161108', '20161109', '20161110', '20161111', '20161112', '20161113', '20161114', '20161115', '20161116', '20161117', '20161118', '20161119', '20161120', '20161121', '20161122', '20161123', '20161124', '20161125', '20161126', '20161127', '20161128', '20161129', '20161130', '20161201', '20161202', '20161203', '20161204', '20161205', '20161206', '20161207', '20161208', '20161209', '20161210', '20161211', '20161212', '20161213', '20161214', '20161215', '20161216', '20161217', '20161218', '20161219', '20161220', '20161221', '20161222', '20161223', '20161224', '20161225', '20161226', '20161227', '20161228', '20161229', '20161230', '20161231', '20170101', '20170102', '20170103', '20170104', '20170105', '20170106', '20170107', '20170108', '20170109', '20170110', '20170111', '20170112', '20170113', '20170114', '20170115', '20170116', '20170117', '20170118', '20170119', '20170120', '20170121', '20170122', '20170123', '20170124', '20170125', '20170126', '20170127', '20170128', '20170129', '20170130', '20170131', '20170201', '20170202', '20170203', '20170204', '20170205', '20170206', '20170207', '20170208', '20170209', '20170210', '20170211', '20170212', '20170213', '20170214', '20170215', '20170216', '20170217', '20170218', '20170219', '20170220', '20170221', '20170222', '20170223', '20170224', '20170225', '20170226', '20170227', '20170228', '20170301', '20170302', '20170303', '20170304', '20170305', '20170306', '20170307', '20170308', '20170309', '20170310', '20170311', '20170312', '20170313', '20170314', '20170315', '20170316', '20170317', '20170318', '20170319', '20170320', '20170321', '20170322', '20170323', '20170324', '20170325', '20170326', '20170327', '20170328', '20170329', '20170330', '20170331', '20170401', '20170402', '20170403', '20170404', '20170405', '20170406', '20170407', '20170408', '20170409', '20170410', '20170411', '20170412', '20170413', '20170414', '20170415', '20170416', '20170417', '20170418', '20170419', '20170420', '20170421', '20170422', '20170423', '20170424', '20170425', '20170426', '20170427', '20170428', '20170429', '20170430', '20170501', '20170502', '20170503', '20170504', '20170505', '20170506', '20170507', '20170508', '20170509', '20170510', '20170511', '20170512', '20170513', '20170514', '20170515', '20170516', '20170517', '20170518', '20170519', '20170520', '20170521', '20170522', '20170523', '20170524', '20170525', '20170526', '20170527', '20170528', '20170529', '20170530', '20170531', '20170601', '20170602', '20170603', '20170604', '20170605', '20170606', '20170607', '20170608', '20170609', '20170610', '20170611', '20170612', '20170613', '20170614', '20170615', '20170616', '20170617', '20170618', '20170619', '20170620', '20170621', '20170622', '20170623', '20170624', '20170625', '20170626', '20170627', '20170628', '20170629', '20170630', '20170701', '20170702', '20170703', '20170704', '20170705', '20170706', '20170707', '20170708', '20170709', '20170710', '20170711', '20170712', '20170713', '20170714', '20170715', '20170716', '20170717', '20170718', '20170719', '20170720', '20170721', '20170722', '20170723', '20170724', '20170725', '20170726', '20170727', '20170728', '20170729', '20170730', '20170731', '20170801', '20170802', '20170803', '20170804', '20170805', '20170806', '20170807', '20170808', '20170809', '20170810', '20170811', '20170812', '20170813', '20170814', '20170815', '20170816', '20170817', '20170818', '20170819', '20170820', '20170821', '20170822', '20170823', '20170824', '20170825', '20170826', '20170827', '20170828', '20170829', '20170830', '20170831', '20170901', '20170902', '20170903', '20170904', '20170905', '20170906', '20170907', '20170908', '20170909', '20170910', '20170911', '20170912', '20170913', '20170914', '20170915', '20170916', '20170917', '20170918', '20170919', '20170920', '20170921', '20170922', '20170923', '20170924', '20170925', '20170926', '20170927', '20170928', '20170929', '20170930', '20171001', '20171002', '20171003', '20171004', '20171005', '20171006', '20171007', '20171008', '20171009', '20171010', '20171011', '20171012', '20171013', '20171014', '20171015', '20171016', '20171017', '20171018', '20171019', '20171020', '20171021', '20171022', '20171023', '20171024', '20171025', '20171026', '20171027', '20171028', '20171029', '20171030', '20171031', '20171101', '20171102', '20171103', '20171104', '20171105', '20171106', '20171107', '20171108', '20171109', '20171110', '20171111', '20171112', '20171113', '20171114', '20171115', '20171116', '20171117', '20171118', '20171119', '20171120', '20171121', '20171122', '20171123', '20171124', '20171125', '20171126', '20171127', '20171128', '20171129', '20171130', '20171201', '20171202', '20171203', '20171204', '20171205', '20171206', '20171207', '20171208', '20171209', '20171210', '20171211', '20171212', '20171213', '20171214', '20171215', '20171216', '20171217', '20171218', '20171219', '20171220', '20171221', '20171222', '20171223', '20171224', '20171225', '20171226', '20171227', '20171228', '20171229', '20171230', '20171231', '20180101', '20180102', '20180103', '20180104', '20180105', '20180106', '20180107', '20180108', '20180109', '20180110', '20180111', '20180112', '20180113', '20180114', '20180115', '20180116', '20180117', '20180118', '20180119', '20180120', '20180121', '20180122', '20180123', '20180124', '20180125', '20180126', '20180127', '20180128', '20180129', '20180130', '20180131', '20180201', '20180202', '20180203', '20180204', '20180205', '20180206', '20180207', '20180208', '20180209', '20180210', '20180211', '20180212', '20180213', '20180214', '20180215', '20180216', '20180217', '20180218', '20180219', '20180220', '20180221', '20180222', '20180223', '20180224', '20180225', '20180226', '20180227', '20180228', '20180301', '20180302', '20180303', '20180304', '20180305', '20180306', '20180307', '20180308', '20180309', '20180310', '20180311', '20180312', '20180313', '20180314', '20180315', '20180316', '20180317', '20180318', '20180319', '20180320', '20180321', '20180322', '20180323', '20180324', '20180325', '20180326', '20180327', '20180328', '20180329', '20180330', '20180331', '20180401', '20180402', '20180403', '20180404', '20180405', '20180406', '20180407', '20180408', '20180409', '20180410', '20180411', '20180412', '20180413', '20180414', '20180415', '20180416', '20180417', '20180418', '20180419', '20180420', '20180421', '20180422', '20180423', '20180424', '20180425', '20180426', '20180427', '20180428', '20180429', '20180430', '20180501', '20180502', '20180503', '20180504', '20180505', '20180506', '20180507', '20180508', '20180509', '20180510', '20180511', '20180512', '20180513', '20180514', '20180515', '20180516', '20180517', '20180518', '20180519', '20180520', '20180521', '20180522', '20180523', '20180524', '20180525', '20180526', '20180527', '20180528', '20180529', '20180530', '20180531', '20180601', '20180602', '20180603', '20180604', '20180605', '20180606', '20180607', '20180608', '20180609', '20180610', '20180611', '20180612', '20180613', '20180614', '20180615', '20180616', '20180617', '20180618', '20180619', '20180620', '20180621', '20180622', '20180623', '20180624', '20180625', '20180626', '20180627', '20180628', '20180629', '20180630', '20180701', '20180702', '20180703', '20180704', '20180705', '20180706', '20180707', '20180708', '20180709', '20180710', '20180711', '20180712', '20180713', '20180714', '20180715', '20180716', '20180717', '20180718', '20180719', '20180720', '20180721', '20180722', '20180723', '20180724', '20180725', '20180726', '20180727', '20180728', '20180729', '20180730', '20180731', '20180801', '20180802', '20180803', '20180804', '20180805', '20180806', '20180807', '20180808', '20180809', '20180810', '20180811', '20180812', '20180813', '20180814', '20180815', '20180816', '20180817', '20180818', '20180819', '20180820', '20180821', '20180822', '20180823', '20180824', '20180825', '20180826', '20180827', '20180828', '20180829', '20180830', '20180831', '20180901', '20180902', '20180903', '20180904', '20180905', '20180906', '20180907', '20180908', '20180909', '20180910', '20180911', '20180912', '20180913', '20180914', '20180915', '20180916', '20180917', '20180918', '20180919', '20180920', '20180921', '20180922', '20180923', '20180924', '20180925', '20180926', '20180927', '20180928', '20180929', '20180930', '20181001', '20181002', '20181003', '20181004', '20181005', '20181006', '20181007', '20181008', '20181009', '20181010', '20181011', '20181012', '20181013', '20181014', '20181015', '20181016', '20181017', '20181018', '20181019', '20181020', '20181021', '20181022', '20181023', '20181024', '20181025', '20181026', '20181027', '20181028', '20181029', '20181030', '20181031', '20181101', '20181102', '20181103', '20181104', '20181105', '20181106', '20181107', '20181108', '20181109', '20181110', '20181111', '20181112', '20181113', '20181114', '20181115', '20181116', '20181117', '20181118', '20181119', '20181120', '20181121', '20181122', '20181123', '20181124', '20181125', '20181126', '20181127', '20181128', '20181129', '20181130', '20181201', '20181202', '20181203', '20181204', '20181205', '20181206', '20181207', '20181208', '20181209', '20181210', '20181211', '20181212', '20181213', '20181214', '20181215', '20181216', '20181217', '20181218', '20181219', '20181220', '20181221', '20181222', '20181223', '20181224', '20181225', '20181226', '20181227', '20181228', '20181229', '20181230', '20181231', '20190101', '20190102', '20190103', '20190104', '20190105', '20190106', '20190107', '20190108', '20190109', '20190110', '20190111', '20190112', '20190113', '20190114', '20190115', '20190116', '20190117', '20190118', '20190119', '20190120', '20190121', '20190122', '20190123', '20190124', '20190125', '20190126', '20190127', '20190128', '20190129', '20190130', '20190131', '20190201', '20190202', '20190203', '20190204', '20190205', '20190206', '20190207', '20190208', '20190209', '20190210', '20190211', '20190212', '20190213', '20190214', '20190215', '20190216', '20190217', '20190218', '20190219', '20190220', '20190221', '20190222', '20190223', '20190224', '20190225', '20190226', '20190227', '20190228', '20190301', '20190302', '20190303', '20190304', '20190305', '20190306', '20190307', '20190308', '20190309', '20190310', '20190311', '20190312', '20190313', '20190314', '20190315', '20190316', '20190317', '20190318', '20190319', '20190320', '20190321', '20190322', '20190323', '20190324', '20190325', '20190326', '20190327', '20190328', '20190329', '20190330', '20190331', '20190401', '20190402', '20190403', '20190404', '20190405', '20190406', '20190407', '20190408', '20190409', '20190410', '20190411', '20190412', '20190413', '20190414', '20190415', '20190416', '20190417', '20190418', '20190419', '20190420', '20190421', '20190422', '20190423', '20190424', '20190425', '20190426', '20190427', '20190428', '20190429', '20190430', '20190501', '20190502', '20190503', '20190504', '20190505', '20190506', '20190507', '20190508', '20190509', '20190510', '20190511', '20190512', '20190513', '20190514', '20190515', '20190516', '20190517', '20190518', '20190519', '20190520', '20190521', '20190522', '20190523', '20190524', '20190525', '20190526', '20190527', '20190528', '20190529', '20190530', '20190531', '20190601', '20190602', '20190603', '20190604', '20190605', '20190606', '20190607', '20190608', '20190609', '20190610', '20190611', '20190612', '20190613', '20190614', '20190615', '20190616', '20190617', '20190618', '20190619', '20190620', '20190621', '20190622', '20190623', '20190624', '20190625', '20190626', '20190627', '20190628', '20190629', '20190630', '20190701', '20190702', '20190703', '20190704', '20190705', '20190706', '20190707', '20190708', '20190709', '20190710', '20190711', '20190712', '20190713', '20190714', '20190715', '20190716', '20190717', '20190718', '20190719', '20190720', '20190721', '20190722', '20190723', '20190724', '20190725', '20190726', '20190727', '20190728', '20190729', '20190730', '20190731', '20190801', '20190802', '20190803', '20190804', '20190805', '20190806', '20190807', '20190808', '20190809', '20190810', '20190811', '20190812', '20190813', '20190814', '20190815', '20190816', '20190817', '20190818', '20190819', '20190820', '20190821', '20190822', '20190823', '20190824', '20190825', '20190826', '20190827', '20190828', '20190829', '20190830', '20190831', '20190901', '20190902', '20190903', '20190904', '20190905', '20190906', '20190907', '20190908', '20190909', '20190910', '20190911', '20190912', '20190913', '20190914', '20190915', '20190916', '20190917', '20190918', '20190919', '20190920', '20190921', '20190922', '20190923', '20190924', '20190925', '20190926', '20190927', '20190928', '20190929', '20190930', '20191001', '20191002', '20191003', '20191004', '20191005', '20191006', '20191007', '20191008', '20191009', '20191010', '20191011', '20191012', '20191013', '20191014', '20191015', '20191016', '20191017', '20191018', '20191019', '20191020', '20191021', '20191022', '20191023', '20191024', '20191025', '20191026', '20191027', '20191028', '20191029', '20191030', '20191031', '20191101', '20191102', '20191103', '20191104', '20191105', '20191106', '20191107', '20191108', '20191109', '20191110', '20191111', '20191112', '20191113', '20191114', '20191115', '20191116', '20191117', '20191118', '20191119', '20191120', '20191121', '20191122', '20191123', '20191124', '20191125', '20191126', '20191127', '20191128', '20191129', '20191130', '20191201', '20191202', '20191203', '20191204', '20191205', '20191206', '20191207', '20191208', '20191209', '20191210', '20191211', '20191212', '20191213', '20191214', '20191215', '20191216', '20191217', '20191218', '20191219', '20191220', '20191221', '20191222', '20191223', '20191224', '20191225', '20191226', '20191227', '20191228', '20191229', '20191230', '20191231', '20200101', '20200102', '20200103', '20200104', '20200105', '20200106', '20200107', '20200108', '20200109', '20200110', '20200111', '20200112', '20200113', '20200114', '20200115', '20200116', '20200117', '20200118', '20200119', '20200120', '20200121', '20200122', '20200123', '20200124', '20200125', '20200126', '20200127', '20200128', '20200129', '20200130', '20200131', '20200201', '20200202', '20200203', '20200204', '20200205', '20200206', '20200207', '20200208', '20200209', '20200210', '20200211', '20200212', '20200213', '20200214', '20200215', '20200216', '20200217', '20200218', '20200219', '20200220', '20200221', '20200222', '20200223', '20200224', '20200225', '20200226', '20200227', '20200228', '20200229', '20200301', '20200302', '20200303', '20200304', '20200305', '20200306', '20200307', '20200308', '20200309', '20200310', '20200311', '20200312', '20200313', '20200314', '20200315', '20200316', '20200317', '20200318', '20200319', '20200320', '20200321', '20200322', '20200323', '20200324', '20200325', '20200326', '20200327', '20200328', '20200329', '20200330', '20200331', '20200401', '20200402', '20200403', '20200404', '20200405', '20200406', '20200407', '20200408', '20200409', '20200410', '20200411', '20200412', '20200413', '20200414', '20200415', '20200416', '20200417', '20200418', '20200419', '20200420', '20200421', '20200422', '20200423', '20200424', '20200425', '20200426', '20200427', '20200428', '20200429', '20200430', '20200501', '20200502', '20200503', '20200504', '20200505', '20200506', '20200507', '20200508', '20200509', '20200510', '20200511', '20200512', '20200513', '20200514', '20200515', '20200516', '20200517', '20200518', '20200519', '20200520', '20200521', '20200522', '20200523', '20200524', '20200525', '20200526', '20200527', '20200528', '20200529', '20200530', '20200531', '20200601', '20200602', '20200603', '20200604', '20200605', '20200606', '20200607', '20200608', '20200609', '20200610', '20200611', '20200612', '20200613', '20200614', '20200615', '20200616', '20200617', '20200618', '20200619', '20200620', '20200621', '20200622', '20200623', '20200624', '20200625', '20200626', '20200627', '20200628', '20200629', '20200630', '20200701', '20200702', '20200703', '20200704', '20200705', '20200706', '20200707', '20200708', '20200709', '20200710', '20200711', '20200712', '20200713', '20200714', '20200715', '20200716', '20200717', '20200718', '20200719', '20200720', '20200721', '20200722', '20200723', '20200724', '20200725', '20200726', '20200727', '20200728', '20200729', '20200730', '20200731', '20200801', '20200802', '20200803', '20200804', '20200805', '20200806', '20200807', '20200808', '20200809', '20200810', '20200811', '20200812', '20200813', '20200814', '20200815', '20200816', '20200817', '20200818', '20200819', '20200820', '20200821', '20200822', '20200823', '20200824', '20200825', '20200826', '20200827', '20200828', '20200829', '20200830', '20200831', '20200901', '20200902', '20200903', '20200904', '20200905', '20200906', '20200907', '20200908', '20200909', '20200910', '20200911', '20200912', '20200913', '20200914', '20200915', '20200916', '20200917', '20200918', '20200919', '20200920', '20200921', '20200922', '20200923', '20200924', '20200925', '20200926', '20200927', '20200928', '20200929', '20200930', '20201001', '20201002', '20201003', '20201004', '20201005', '20201006', '20201007', '20201008', '20201009', '20201010', '20201011', '20201012', '20201013', '20201014', '20201015', '20201016', '20201017', '20201018', '20201019', '20201020', '20201021', '20201022', '20201023', '20201024', '20201025', '20201026', '20201027', '20201028', '20201029', '20201030', '20201031', '20201101', '20201102', '20201103', '20201104', '20201105', '20201106', '20201107', '20201108', '20201109', '20201110', '20201111', '20201112', '20201113', '20201114', '20201115', '20201116', '20201117', '20201118', '20201119', '20201120', '20201121', '20201122', '20201123', '20201124', '20201125', '20201126', '20201127', '20201128', '20201129', '20201130', '20201201', '20201202', '20201203', '20201204', '20201205', '20201206', '20201207', '20201208', '20201209', '20201210', '20201211', '20201212', '20201213', '20201214', '20201215', '20201216', '20201217', '20201218', '20201219', '20201220', '20201221', '20201222', '20201223', '20201224', '20201225', '20201226', '20201227', '20201228', '20201229', '20201230', '20201231', '20210101', '20210102', '20210103', '20210104', '20210105', '20210106', '20210107', '20210108', '20210109', '20210110', '20210111', '20210112', '20210113', '20210114', '20210115', '20210116', '20210117', '20210118', '20210119', '20210120', '20210121', '20210122', '20210123', '20210124', '20210125', '20210126', '20210127', '20210128', '20210129', '20210130', '20210131', '20210201', '20210202', '20210203', '20210204', '20210205', '20210206', '20210207', '20210208', '20210209', '20210210', '20210211', '20210212', '20210213', '20210214', '20210215', '20210216', '20210217', '20210218', '20210219', '20210220', '20210221', '20210222', '20210223', '20210224', '20210225', '20210226', '20210227', '20210228', '20210301', '20210302', '20210303', '20210304', '20210305', '20210306', '20210307', '20210308', '20210309', '20210310', '20210311', '20210312', '20210313', '20210314', '20210315', '20210316', '20210317', '20210318', '20210319', '20210320', '20210321', '20210322', '20210323', '20210324', '20210325', '20210326', '20210327', '20210328', '20210329', '20210330', '20210331', '20210401', '20210402', '20210403', '20210404', '20210405', '20210406', '20210407', '20210408', '20210409', '20210410', '20210411', '20210412', '20210413', '20210414', '20210415', '20210416', '20210417', '20210418', '20210419', '20210420', '20210421', '20210422', '20210423', '20210424', '20210425', '20210426', '20210427', '20210428', '20210429', '20210430', '20210501', '20210502', '20210503', '20210504', '20210505', '20210506', '20210507', '20210508', '20210509', '20210510', '20210511', '20210512', '20210513', '20210514', '20210515', '20210516', '20210517', '20210518', '20210519', '20210520', '20210521', '20210522', '20210523', '20210524', '20210525', '20210526', '20210527', '20210528', '20210529', '20210530', '20210531', '20210601', '20210602', '20210603', '20210604', '20210605', '20210606', '20210607', '20210608', '20210609', '20210610', '20210611', '20210612', '20210613', '20210614', '20210615', '20210616', '20210617', '20210618', '20210619', '20210620', '20210621', '20210622', '20210623', '20210624', '20210625', '20210626', '20210627', '20210628', '20210629', '20210630', '20210701', '20210702', '20210703', '20210704', '20210705', '20210706', '20210707', '20210708', '20210709', '20210710', '20210711', '20210712', '20210713', '20210714', '20210715', '20210716', '20210717', '20210718', '20210719', '20210720', '20210721', '20210722', '20210723', '20210724', '20210725', '20210726', '20210727', '20210728', '20210729', '20210730', '20210731', '20210801', '20210802', '20210803', '20210804', '20210805', '20210806', '20210807', '20210808', '20210809', '20210810', '20210811', '20210812', '20210813', '20210814', '20210815', '20210816', '20210817', '20210818', '20210819', '20210820', '20210821', '20210822', '20210823', '20210824', '20210825', '20210826', '20210827', '20210828', '20210829', '20210830', '20210831', '20210901', '20210902', '20210903', '20210904', '20210905', '20210906', '20210907', '20210908', '20210909', '20210910', '20210911', '20210912', '20210913', '20210914', '20210915', '20210916', '20210917', '20210918', '20210919', '20210920', '20210921', '20210922', '20210923', '20210924', '20210925', '20210926', '20210927', '20210928', '20210929', '20210930', '20211001', '20211002', '20211003', '20211004', '20211005', '20211006', '20211007', '20211008', '20211009', '20211010', '20211011', '20211012', '20211013', '20211014', '20211015', '20211016', '20211017', '20211018', '20211019', '20211020', '20211021', '20211022', '20211023', '20211024', '20211025', '20211026', '20211027', '20211028', '20211029', '20211030', '20211031', '20211101', '20211102', '20211103', '20211104', '20211105', '20211106', '20211107', '20211108', '20211109', '20211110', '20211111', '20211112', '20211113', '20211114', '20211115', '20211116', '20211117', '20211118', '20211119', '20211120', '20211121', '20211122', '20211123', '20211124', '20211125', '20211126', '20211127', '20211128', '20211129', '20211130', '20211201', '20211202', '20211203', '20211204', '20211205', '20211206', '20211207', '20211208', '20211209', '20211210', '20211211', '20211212', '20211213', '20211214', '20211215', '20211216', '20211217', '20211218', '20211219', '20211220', '20211221', '20211222', '20211223', '20211224', '20211225', '20211226', '20211227', '20211228', '20211229', '20211230', '20211231', '20220101', '20220102', '20220103', '20220104', '20220105', '20220106', '20220107', '20220108', '20220109', '20220110', '20220111', '20220112', '20220113', '20220114', '20220115', '20220116', '20220117', '20220118', '20220119', '20220120', '20220121', '20220122', '20220123', '20220124', '20220125', '20220126', '20220127', '20220128', '20220129', '20220130', '20220131', '20220201', '20220202', '20220203', '20220204', '20220205', '20220206', '20220207', '20220208', '20220209', '20220210', '20220211', '20220212', '20220213', '20220214', '20220215', '20220216', '20220217', '20220218', '20220219', '20220220', '20220221', '20220222', '20220223', '20220224', '20220225', '20220226', '20220227', '20220228', '20220301', '20220302', '20220303', '20220304', '20220305', '20220306', '20220307', '20220308', '20220309', '20220310', '20220311', '20220312', '20220313', '20220314', '20220315', '20220316', '20220317', '20220318', '20220319', '20220320', '20220321', '20220322', '20220323', '20220324', '20220325', '20220326', '20220327', '20220328', '20220329', '20220330', '20220331', '20220401', '20220402', '20220403', '20220404', '20220405', '20220406', '20220407', '20220408', '20220409', '20220410', '20220411', '20220412', '20220413', '20220414', '20220415', '20220416', '20220417', '20220418', '20220419', '20220420', '20220421', '20220422', '20220423', '20220424', '20220425', '20220426', '20220427', '20220428', '20220429', '20220430', '20220501', '20220502', '20220503', '20220504', '20220505', '20220506', '20220507', '20220508', '20220509', '20220510', '20220511', '20220512', '20220513', '20220514', '20220515', '20220516', '20220517', '20220518', '20220519', '20220520', '20220521', '20220522', '20220523', '20220524', '20220525', '20220526', '20220527', '20220528', '20220529', '20220530', '20220531', '20220601', '20220602', '20220603', '20220604', '20220605', '20220606', '20220607', '20220608', '20220609', '20220610', '20220611', '20220612', '20220613', '20220614', '20220615', '20220616', '20220617', '20220618', '20220619', '20220620', '20220621', '20220622', '20220623', '20220624', '20220625', '20220626', '20220627', '20220628', '20220629', '20220630', '20220701', '20220702', '20220703', '20220704', '20220705', '20220706', '20220707', '20220708', '20220709', '20220710', '20220711', '20220712', '20220713', '20220714', '20220715', '20220716', '20220717', '20220718', '20220719', '20220720', '20220721', '20220722', '20220723', '20220724', '20220725', '20220726', '20220727', '20220728', '20220729', '20220730', '20220731', '20220801', '20220802', '20220803', '20220804', '20220805', '20220806', '20220807', '20220808', '20220809', '20220810', '20220811', '20220812', '20220813', '20220814', '20220815', '20220816', '20220817', '20220818', '20220819', '20220820', '20220821', '20220822', '20220823', '20220824', '20220825', '20220826', '20220827', '20220828', '20220829', '20220830', '20220831', '20220901', '20220902', '20220903', '20220904', '20220905', '20220906', '20220907', '20220908', '20220909', '20220910', '20220911', '20220912', '20220913', '20220914', '20220915', '20220916', '20220917', '20220918', '20220919', '20220920', '20220921', '20220922', '20220923', '20220924', '20220925', '20220926', '20220927', '20220928', '20220929', '20220930', '20221001', '20221002', '20221003', '20221004', '20221005', '20221006', '20221007', '20221008', '20221009', '20221010', '20221011', '20221012', '20221013', '20221014', '20221015', '20221016', '20221017', '20221018', '20221019', '20221020', '20221021', '20221022', '20221023', '20221024', '20221025', '20221026', '20221027', '20221028', '20221029', '20221030', '20221031', '20221101', '20221102', '20221103', '20221104', '20221105', '20221106', '20221107', '20221108', '20221109', '20221110', '20221111', '20221112', '20221113', '20221114', '20221115', '20221116', '20221117', '20221118', '20221119', '20221120', '20221121', '20221122', '20221123', '20221124', '20221125', '20221126', '20221127', '20221128', '20221129', '20221130', '20221201', '20221202', '20221203', '20221204', '20221205', '20221206', '20221207', '20221208', '20221209', '20221210', '20221211', '20221212', '20221213', '20221214', '20221215', '20221216', '20221217', '20221218', '20221219', '20221220', '20221221', '20221222', '20221223', '20221224', '20221225', '20221226', '20221227', '20221228', '20221229', '20221230', '20221231', '20230101', '20230102', '20230103', '20230104', '20230105', '20230106', '20230107', '20230108', '20230109', '20230110', '20230111', '20230112', '20230113', '20230114', '20230115', '20230116', '20230117', '20230118', '20230119', '20230120', '20230121', '20230122', '20230123', '20230124', '20230125', '20230126', '20230127', '20230128', '20230129', '20230130', '20230131', '20230201', '20230202', '20230203', '20230204', '20230205', '20230206', '20230207', '20230208', '20230209', '20230210', '20230211', '20230212', '20230213', '20230214', '20230215', '20230216', '20230217', '20230218', '20230219', '20230220', '20230221', '20230222', '20230223', '20230224', '20230225', '20230226', '20230227', '20230228', '20230301', '20230302', '20230303', '20230304', '20230305', '20230306', '20230307', '20230308', '20230309', '20230310', '20230311', '20230312', '20230313', '20230314', '20230315', '20230316', '20230317', '20230318', '20230319', '20230320', '20230321', '20230322', '20230323', '20230324', '20230325', '20230326', '20230327', '20230328', '20230329', '20230330', '20230331', '20230401', '20230402', '20230403', '20230404', '20230405', '20230406', '20230407', '20230408', '20230409', '20230410', '20230411', '20230412', '20230413', '20230414', '20230415', '20230416', '20230417', '20230418', '20230419', '20230420', '20230421', '20230422', '20230423', '20230424', '20230425', '20230426', '20230427', '20230428', '20230429', '20230430', '20230501', '20230502', '20230503', '20230504', '20230505', '20230506', '20230507', '20230508', '20230509', '20230510', '20230511', '20230512', '20230513', '20230514', '20230515', '20230516', '20230517', '20230518', '20230519', '20230520', '20230521', '20230522', '20230523', '20230524', '20230525', '20230526', '20230527', '20230528', '20230529', '20230530', '20230531', '20230601', '20230602', '20230603', '20230604', '20230605', '20230606', '20230607', '20230608', '20230609', '20230610', '20230611', '20230612', '20230613', '20230614', '20230615', '20230616', '20230617', '20230618', '20230619', '20230620', '20230621', '20230622', '20230623', '20230624', '20230625', '20230626', '20230627', '20230628', '20230629', '20230630', '20230701', '20230702', '20230703', '20230704', '20230705', '20230706', '20230707', '20230708', '20230709', '20230710', '20230711', '20230712', '20230713', '20230714', '20230715', '20230716', '20230717', '20230718', '20230719', '20230720', '20230721', '20230722', '20230723', '20230724', '20230725', '20230726', '20230727', '20230728', '20230729', '20230730', '20230731', '20230801', '20230802', '20230803', '20230804', '20230805', '20230806', '20230807', '20230808', '20230809', '20230810', '20230811', '20230812', '20230813', '20230814', '20230815', '20230816', '20230817', '20230818', '20230819', '20230820', '20230821', '20230822', '20230823', '20230824', '20230825', '20230826', '20230827', '20230828', '20230829', '20230830', '20230831', '20230901', '20230902', '20230903', '20230904', '20230905', '20230906', '20230907', '20230908', '20230909', '20230910', '20230911', '20230912', '20230913', '20230914', '20230915', '20230916', '20230917', '20230918', '20230919', '20230920', '20230921', '20230922', '20230923', '20230924', '20230925', '20230926', '20230927', '20230928', '20230929', '20230930', '20231001', '20231002', '20231003', '20231004', '20231005', '20231006', '20231007', '20231008', '20231009', '20231010', '20231011', '20231012', '20231013', '20231014', '20231015', '20231016', '20231017', '20231018', '20231019', '20231020', '20231021', '20231022', '20231023', '20231024', '20231025', '20231026', '20231027', '20231028', '20231029', '20231030', '20231031', '20231101', '20231102', '20231103', '20231104', '20231105', '20231106', '20231107', '20231108', '20231109', '20231110', '20231111', '20231112', '20231113', '20231114', '20231115', '20231116', '20231117', '20231118', '20231119', '20231120', '20231121', '20231122', '20231123', '20231124', '20231125', '20231126', '20231127', '20231128', '20231129', '20231130', '20231201', '20231202', '20231203', '20231204', '20231205', '20231206', '20231207', '20231208', '20231209', '20231210', '20231211', '20231212', '20231213', '20231214', '20231215', '20231216', '20231217', '20231218', '20231219', '20231220', '20231221', '20231222', '20231223', '20231224', '20231225', '20231226', '20231227', '20231228', '20231229', '20231230', '20231231', '20240101', '20240102', '20240103', '20240104', '20240105', '20240106', '20240107', '20240108', '20240109', '20240110', '20240111', '20240112', '20240113', '20240114', '20240115', '20240116', '20240117', '20240118', '20240119', '20240120', '20240121', '20240122', '20240123', '20240124', '20240125', '20240126', '20240127', '20240128', '20240129', '20240130', '20240131', '20240201', '20240202', '20240203', '20240204', '20240205', '20240206', '20240207', '20240208', '20240209', '20240210', '20240211', '20240212', '20240213', '20240214', '20240215', '20240216', '20240217', '20240218', '20240219', '20240220', '20240221', '20240222', '20240223', '20240224', '20240225', '20240226', '20240227', '20240228', '20240229', '20240301', '20240302', '20240303', '20240304', '20240305', '20240306', '20240307', '20240308', '20240309', '20240310', '20240311', '20240312', '20240313', '20240314', '20240315', '20240316', '20240317', '20240318', '20240319', '20240320', '20240321', '20240322', '20240323', '20240324', '20240325', '20240326', '20240327', '20240328', '20240329', '20240330', '20240331', '20240401', '20240402', '20240403', '20240404', '20240405', '20240406', '20240407', '20240408', '20240409', '20240410', '20240411', '20240412', '20240413', '20240414', '20240415', '20240416', '20240417', '20240418', '20240419', '20240420', '20240421', '20240422', '20240423', '20240424', '20240425', '20240426', '20240427', '20240428', '20240429', '20240430', '20240501', '20240502', '20240503', '20240504', '20240505', '20240506', '20240507', '20240508', '20240509', '20240510', '20240511', '20240512', '20240513', '20240514', '20240515', '20240516', '20240517', '20240518', '20240519', '20240520', '20240521', '20240522', '20240523', '20240524', '20240525', '20240526', '20240527', '20240528', '20240529', '20240530', '20240531', '20240601', '20240602', '20240603', '20240604', '20240605', '20240606', '20240607', '20240608', '20240609', '20240610', '20240611', '20240612', '20240613', '20240614'] +['1974', '1975', '1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No https://quotsoft.net/air/data/china_sites_20140501.csv +No https://quotsoft.net/air/data/china_cities_20140501.csv +No https://quotsoft.net/air/data/china_sites_20140502.csv +No https://quotsoft.net/air/data/china_cities_20140502.csv +Downloaded CO in 1974 +No https://quotsoft.net/air/data/china_sites_20140503.csv +No data for NO in 1974 +No https://quotsoft.net/air/data/china_cities_20140503.csv +No https://quotsoft.net/air/data/china_sites_20140504.csv +No https://quotsoft.net/air/data/china_cities_20140504.csv +Downloaded NO2 in 1974 +No https://quotsoft.net/air/data/china_sites_20140505.csv +No https://quotsoft.net/air/data/china_cities_20140505.csv +Downloaded O3 in 1974 +No https://quotsoft.net/air/data/china_sites_20140506.csv +No https://quotsoft.net/air/data/china_cities_20140506.csv +No data for PM10 in 1974 +No https://quotsoft.net/air/data/china_sites_20140507.csv +No data for PM2.5 in 1974 +No https://quotsoft.net/air/data/china_cities_20140507.csv +No https://quotsoft.net/air/data/china_sites_20140508.csv +No https://quotsoft.net/air/data/china_cities_20140508.csv +No https://quotsoft.net/air/data/china_sites_20140509.csv +Downloaded SO2 in 1974 +No https://quotsoft.net/air/data/china_cities_20140509.csv +No https://quotsoft.net/air/data/china_sites_20140510.csv +No https://quotsoft.net/air/data/china_cities_20140510.csv +No https://quotsoft.net/air/data/china_sites_20140511.csv +No https://quotsoft.net/air/data/china_cities_20140511.csv +No https://quotsoft.net/air/data/china_sites_20140512.csv +No https://quotsoft.net/air/data/china_cities_20140512.csv +No file found for Carbonyls in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140513.csv +No file found for VOC in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140513.csv +No file found for IntegratedPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140514.csv +No file found for IntegratedPM2.5-10 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140515.csv +No file found for NAPSReferenceMethodPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140515.csv +No file found for PartisolPM2.5 in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140516.csv +No file found for PMSpeciation in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140516.csv +No file found for PMDICHOT in 1974 +Downloaded https://quotsoft.net/air/data/china_sites_20140517.csv +No major ions data in 1974 +Downloaded https://quotsoft.net/air/data/china_cities_20140517.csv +Downloaded CO in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140518.csv +No data for NO in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140519.csv +Downloaded NO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140520.csv +Downloaded O3 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140520.csv +No data for PM10 in 1975 +No data for PM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140522.csv +Downloaded SO2 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140523.csv +No file found for Carbonyls in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140524.csv +No file found for VOC in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140524.csv +No file found for IntegratedPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140525.csv +No file found for IntegratedPM2.5-10 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140526.csv +No file found for NAPSReferenceMethodPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140526.csv +No file found for PartisolPM2.5 in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140527.csv +No file found for PMSpeciation in 1975 +Downloaded https://quotsoft.net/air/data/china_cities_20140527.csv +No file found for PMDICHOT in 1975 +No major ions data in 1975 +Downloaded https://quotsoft.net/air/data/china_sites_20140528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140529.csv +Downloaded CO in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140529.csv +No data for NO in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140530.csv +Downloaded NO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140531.csv +Downloaded O3 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140531.csv +No data for PM10 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140601.csv +No data for PM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140602.csv +Downloaded SO2 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140604.csv +No file found for Carbonyls in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140604.csv +No file found for VOC in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140605.csv +No file found for IntegratedPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140605.csv +No file found for IntegratedPM2.5-10 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140606.csv +No file found for NAPSReferenceMethodPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140607.csv +No file found for PartisolPM2.5 in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140607.csv +No file found for PMSpeciation in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140608.csv +No file found for PMDICHOT in 1976 +Downloaded https://quotsoft.net/air/data/china_cities_20140608.csv +No major ions data in 1976 +Downloaded https://quotsoft.net/air/data/china_sites_20140609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140609.csv +Downloaded CO in 1977 +No data for NO in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140611.csv +Downloaded NO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140612.csv +Downloaded O3 in 1977 +No data for PM10 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140613.csv +No data for PM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140614.csv +Downloaded SO2 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140616.csv +No file found for Carbonyls in 1977 +No file found for VOC in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140617.csv +No file found for IntegratedPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140618.csv +No file found for IntegratedPM2.5-10 in 1977 +Downloaded https://quotsoft.net/air/data/china_cities_20140618.csv +No file found for NAPSReferenceMethodPM2.5 in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140619.csv +No file found for PartisolPM2.5 in 1977 +No file found for PMSpeciation in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140620.csv +No file found for PMDICHOT in 1977 +No major ions data in 1977 +Downloaded https://quotsoft.net/air/data/china_sites_20140621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140621.csv +Downloaded CO in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140622.csv +No data for NO in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140623.csv +Downloaded NO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140624.csv +Downloaded O3 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140624.csv +No data for PM10 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140625.csv +No data for PM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140626.csv +Downloaded SO2 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140628.csv +No file found for Carbonyls in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140628.csv +No file found for VOC in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140629.csv +No file found for IntegratedPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140630.csv +No file found for IntegratedPM2.5-10 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140630.csv +No file found for NAPSReferenceMethodPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140701.csv +No file found for PartisolPM2.5 in 1978 +Downloaded https://quotsoft.net/air/data/china_cities_20140701.csv +No file found for PMSpeciation in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140702.csv +No file found for PMDICHOT in 1978 +No major ions data in 1978 +Downloaded https://quotsoft.net/air/data/china_sites_20140703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140703.csv +Downloaded CO in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140704.csv +No data for NO in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140705.csv +Downloaded NO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140706.csv +Downloaded O3 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140706.csv +No data for PM10 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140707.csv +No data for PM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140708.csv +Downloaded SO2 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140710.csv +No file found for Carbonyls in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140710.csv +No file found for VOC in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140711.csv +No file found for IntegratedPM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140711.csv +No file found for IntegratedPM2.5-10 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140712.csv +No file found for NAPSReferenceMethodPM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140713.csv +No file found for PartisolPM2.5 in 1979 +Downloaded https://quotsoft.net/air/data/china_cities_20140713.csv +No file found for PMSpeciation in 1979 +Downloaded https://quotsoft.net/air/data/china_sites_20140714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140714.csv +No file found for PMDICHOT in 1979 +No major ions data in 1979 +No https://quotsoft.net/air/data/china_sites_20140715.csv +No https://quotsoft.net/air/data/china_cities_20140715.csv +No https://quotsoft.net/air/data/china_sites_20140716.csv +No https://quotsoft.net/air/data/china_cities_20140716.csv +Downloaded CO in 1980 +No https://quotsoft.net/air/data/china_sites_20140717.csv +No https://quotsoft.net/air/data/china_cities_20140717.csv +No https://quotsoft.net/air/data/china_sites_20140718.csv +Downloaded NO in 1980 +No https://quotsoft.net/air/data/china_cities_20140718.csv +No https://quotsoft.net/air/data/china_sites_20140719.csv +No https://quotsoft.net/air/data/china_cities_20140719.csv +No https://quotsoft.net/air/data/china_sites_20140720.csv +Downloaded NO2 in 1980 +No https://quotsoft.net/air/data/china_cities_20140720.csv +No https://quotsoft.net/air/data/china_sites_20140721.csv +No https://quotsoft.net/air/data/china_cities_20140721.csv +No https://quotsoft.net/air/data/china_sites_20140722.csv +Downloaded O3 in 1980 +No https://quotsoft.net/air/data/china_cities_20140722.csv +No data for PM10 in 1980 +No https://quotsoft.net/air/data/china_sites_20140723.csv +No https://quotsoft.net/air/data/china_cities_20140723.csv +No data for PM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140725.csv +Downloaded SO2 in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140726.csv +No file found for Carbonyls in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140727.csv +No file found for VOC in 1980 +No file found for IntegratedPM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140728.csv +No file found for IntegratedPM2.5-10 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140729.csv +No file found for NAPSReferenceMethodPM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140729.csv +No file found for PartisolPM2.5 in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140730.csv +No file found for PMSpeciation in 1980 +Downloaded https://quotsoft.net/air/data/china_sites_20140731.csv +No file found for PMDICHOT in 1980 +No major ions data in 1980 +Downloaded https://quotsoft.net/air/data/china_cities_20140731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140801.csv +Downloaded CO in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140802.csv +Downloaded NO in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140803.csv +Downloaded NO2 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140804.csv +Downloaded O3 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140804.csv +No data for PM10 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140805.csv +No data for PM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140806.csv +Downloaded SO2 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140808.csv +No file found for Carbonyls in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140808.csv +No file found for VOC in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140809.csv +No file found for IntegratedPM2.5 in 1981 +No file found for IntegratedPM2.5-10 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140810.csv +No file found for NAPSReferenceMethodPM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140811.csv +No file found for PartisolPM2.5 in 1981 +Downloaded https://quotsoft.net/air/data/china_cities_20140811.csv +No file found for PMSpeciation in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140812.csv +No file found for PMDICHOT in 1981 +No major ions data in 1981 +Downloaded https://quotsoft.net/air/data/china_sites_20140813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140813.csv +Downloaded CO in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140814.csv +Downloaded NO in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140815.csv +Downloaded NO2 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140816.csv +Downloaded O3 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140817.csv +No data for PM10 in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140817.csv +No data for PM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140819.csv +Downloaded SO2 in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140820.csv +No file found for Carbonyls in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140821.csv +No file found for VOC in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140821.csv +No file found for IntegratedPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140822.csv +No file found for IntegratedPM2.5-10 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140823.csv +No file found for NAPSReferenceMethodPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140823.csv +No file found for PartisolPM2.5 in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140824.csv +No file found for PMSpeciation in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140824.csv +No file found for PMDICHOT in 1982 +Downloaded https://quotsoft.net/air/data/china_sites_20140825.csv +No major ions data in 1982 +Downloaded https://quotsoft.net/air/data/china_cities_20140825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140826.csv +Downloaded CO in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140827.csv +Downloaded NO in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140828.csv +Downloaded NO2 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140829.csv +Downloaded O3 in 1983 +No data for PM10 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140830.csv +No data for PM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140831.csv +Downloaded SO2 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140902.csv +No file found for Carbonyls in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140902.csv +No file found for VOC in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140903.csv +No file found for IntegratedPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140904.csv +No file found for IntegratedPM2.5-10 in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140904.csv +No file found for NAPSReferenceMethodPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140905.csv +No file found for PartisolPM2.5 in 1983 +Downloaded https://quotsoft.net/air/data/china_cities_20140905.csv +No file found for PMSpeciation in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140906.csv +No file found for PMDICHOT in 1983 +No major ions data in 1983 +Downloaded https://quotsoft.net/air/data/china_sites_20140907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140907.csv +Downloaded CO in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140908.csv +Downloaded NO in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140909.csv +Downloaded NO2 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140911.csv +Downloaded O3 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140911.csv +No data for PM10 in 1984 +No data for PM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140913.csv +Downloaded SO2 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140914.csv +No file found for Carbonyls in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140915.csv +No file found for VOC in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140916.csv +No file found for IntegratedPM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140916.csv +No file found for IntegratedPM2.5-10 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140917.csv +No file found for NAPSReferenceMethodPM2.5 in 1984 +No file found for PartisolPM2.5 in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140918.csv +No file found for PMSpeciation in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140919.csv +No file found for PMDICHOT in 1984 +Downloaded https://quotsoft.net/air/data/china_cities_20140919.csv +No major ions data in 1984 +Downloaded https://quotsoft.net/air/data/china_sites_20140920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140920.csv +Downloaded CO in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140921.csv +Downloaded NO in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140922.csv +Downloaded NO2 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140923.csv +Downloaded O3 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140924.csv +No data for PM10 in 1985 +No data for PM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140926.csv +Downloaded SO2 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20140927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140927.csv +No file found for Carbonyls in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140928.csv +No file found for VOC in 1985 +No file found for IntegratedPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20140929.csv +No file found for IntegratedPM2.5-10 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20140930.csv +No file found for NAPSReferenceMethodPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20140930.csv +No file found for PartisolPM2.5 in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141001.csv +No file found for PMSpeciation in 1985 +Downloaded https://quotsoft.net/air/data/china_sites_20141002.csv +No file found for PMDICHOT in 1985 +No major ions data in 1985 +Downloaded https://quotsoft.net/air/data/china_cities_20141002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141003.csv +Downloaded CO in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141004.csv +Downloaded NO in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141006.csv +Downloaded NO2 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141007.csv +Downloaded O3 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141008.csv +No data for PM10 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141008.csv +No data for PM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141009.csv +Downloaded SO2 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141011.csv +No file found for Carbonyls in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141011.csv +No file found for VOC in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141012.csv +No file found for IntegratedPM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141013.csv +No file found for IntegratedPM2.5-10 in 1986 +Downloaded https://quotsoft.net/air/data/china_cities_20141013.csv +No file found for NAPSReferenceMethodPM2.5 in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141014.csv +No file found for PartisolPM2.5 in 1986 +No file found for PMSpeciation in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141015.csv +No file found for PMDICHOT in 1986 +No major ions data in 1986 +Downloaded https://quotsoft.net/air/data/china_sites_20141016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141017.csv +Downloaded CO in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141018.csv +Downloaded NO in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141019.csv +Downloaded NO2 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141020.csv +Downloaded O3 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141021.csv +No data for PM10 in 1987 +No data for PM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141023.csv +Downloaded SO2 in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141024.csv +No file found for Carbonyls in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141025.csv +No file found for VOC in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141025.csv +No file found for IntegratedPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141026.csv +No file found for IntegratedPM2.5-10 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141027.csv +No file found for NAPSReferenceMethodPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141027.csv +No file found for PartisolPM2.5 in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141028.csv +No file found for PMSpeciation in 1987 +No file found for PMDICHOT in 1987 +Downloaded https://quotsoft.net/air/data/china_sites_20141029.csv +No major ions data in 1987 +Downloaded https://quotsoft.net/air/data/china_cities_20141029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141030.csv +Downloaded CO in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141031.csv +Downloaded NO in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141102.csv +Downloaded NO2 in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141103.csv +Downloaded O3 in 1988 +No data for PM10 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141104.csv +No data for PM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141105.csv +Downloaded SO2 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141107.csv +No file found for Carbonyls in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141107.csv +No file found for VOC in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141108.csv +No file found for IntegratedPM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141109.csv +No file found for IntegratedPM2.5-10 in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141109.csv +No file found for NAPSReferenceMethodPM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141110.csv +No file found for PartisolPM2.5 in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141111.csv +No file found for PMSpeciation in 1988 +Downloaded https://quotsoft.net/air/data/china_cities_20141111.csv +No file found for PMDICHOT in 1988 +No major ions data in 1988 +Downloaded https://quotsoft.net/air/data/china_sites_20141112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141112.csv +Downloaded CO in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141114.csv +Downloaded NO in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141115.csv +Downloaded NO2 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141116.csv +Downloaded O3 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141117.csv +No data for PM10 in 1989 +No data for PM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141119.csv +Downloaded SO2 in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141120.csv +No file found for Carbonyls in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141121.csv +No file found for VOC in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141121.csv +No file found for IntegratedPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141122.csv +No file found for IntegratedPM2.5-10 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141123.csv +No file found for NAPSReferenceMethodPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141123.csv +No file found for PartisolPM2.5 in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141124.csv +No file found for PMSpeciation in 1989 +No file found for PMDICHOT in 1989 +Downloaded https://quotsoft.net/air/data/china_sites_20141125.csv +No major ions data in 1989 +Downloaded https://quotsoft.net/air/data/china_cities_20141125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141126.csv +Downloaded CO in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141127.csv +Downloaded NO in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141128.csv +Downloaded NO2 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141130.csv +Downloaded O3 in 1990 +No data for PM10 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141201.csv +No data for PM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141202.csv +Downloaded SO2 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141204.csv +No file found for Carbonyls in 1990 +No file found for VOC in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141205.csv +No file found for IntegratedPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141206.csv +No file found for IntegratedPM2.5-10 in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141206.csv +No file found for NAPSReferenceMethodPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141207.csv +No file found for PartisolPM2.5 in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141208.csv +No file found for PMSpeciation in 1990 +Downloaded https://quotsoft.net/air/data/china_cities_20141208.csv +No file found for PMDICHOT in 1990 +No major ions data in 1990 +Downloaded https://quotsoft.net/air/data/china_sites_20141209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141209.csv +Downloaded CO in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141211.csv +Downloaded NO in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141212.csv +Downloaded NO2 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141214.csv +Downloaded O3 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141215.csv +No data for PM10 in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141215.csv +No data for PM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141216.csv +Downloaded SO2 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141218.csv +No file found for Carbonyls in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141219.csv +No file found for VOC in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141219.csv +No file found for IntegratedPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141220.csv +No file found for IntegratedPM2.5-10 in 1991 +No file found for NAPSReferenceMethodPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141221.csv +No file found for PartisolPM2.5 in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141222.csv +No file found for PMSpeciation in 1991 +Downloaded https://quotsoft.net/air/data/china_cities_20141222.csv +No file found for PMDICHOT in 1991 +No major ions data in 1991 +Downloaded https://quotsoft.net/air/data/china_sites_20141223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141224.csv +Downloaded CO in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20141224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141225.csv +Downloaded NO in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141226.csv +Downloaded NO2 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20141228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141228.csv +Downloaded O3 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141229.csv +Downloaded PM10 in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20141229.csv +No data for PM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141230.csv +Downloaded SO2 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20141231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20141231.csv +No https://quotsoft.net/air/data/china_sites_20150101.csv +No https://quotsoft.net/air/data/china_cities_20150101.csv +No file found for Carbonyls in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150102.csv +No file found for VOC in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150103.csv +No file found for IntegratedPM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150103.csv +No file found for IntegratedPM2.5-10 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150104.csv +No file found for NAPSReferenceMethodPM2.5 in 1992 +No file found for PartisolPM2.5 in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150105.csv +No file found for PMSpeciation in 1992 +Downloaded https://quotsoft.net/air/data/china_sites_20150106.csv +No file found for PMDICHOT in 1992 +No major ions data in 1992 +Downloaded https://quotsoft.net/air/data/china_cities_20150106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150107.csv +Downloaded CO in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150108.csv +Downloaded NO in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150110.csv +Downloaded NO2 in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150111.csv +Downloaded O3 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150112.csv +Downloaded PM10 in 1993 +No data for PM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150113.csv +Downloaded SO2 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150115.csv +No file found for Carbonyls in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150116.csv +No file found for VOC in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150116.csv +No file found for IntegratedPM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150117.csv +No file found for IntegratedPM2.5-10 in 1993 +Downloaded https://quotsoft.net/air/data/china_cities_20150117.csv +No file found for NAPSReferenceMethodPM2.5 in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150118.csv +No file found for PartisolPM2.5 in 1993 +No file found for PMSpeciation in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150119.csv +No file found for PMDICHOT in 1993 +No major ions data in 1993 +Downloaded https://quotsoft.net/air/data/china_sites_20150120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150120.csv +Downloaded CO in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150122.csv +Downloaded NO in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150123.csv +Downloaded NO2 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150124.csv +Downloaded O3 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150125.csv +Downloaded PM10 in 1994 +No data for PM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150127.csv +Downloaded SO2 in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150128.csv +No file found for Carbonyls in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150129.csv +No file found for VOC in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150129.csv +No file found for IntegratedPM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150130.csv +No file found for IntegratedPM2.5-10 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150131.csv +No file found for NAPSReferenceMethodPM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150131.csv +No file found for PartisolPM2.5 in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150201.csv +No file found for PMSpeciation in 1994 +Downloaded https://quotsoft.net/air/data/china_cities_20150201.csv +No file found for PMDICHOT in 1994 +No major ions data in 1994 +Downloaded https://quotsoft.net/air/data/china_sites_20150202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150203.csv +Downloaded CO in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150204.csv +Downloaded NO in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150205.csv +Downloaded NO2 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150207.csv +Downloaded O3 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150208.csv +Downloaded PM10 in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150208.csv +No data for PM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150209.csv +Downloaded SO2 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150211.csv +No file found for Carbonyls in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150211.csv +No file found for VOC in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150212.csv +No file found for IntegratedPM2.5 in 1995 +No file found for IntegratedPM2.5-10 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150213.csv +No file found for NAPSReferenceMethodPM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150214.csv +No file found for PartisolPM2.5 in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150214.csv +No file found for PMSpeciation in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150215.csv +No file found for PMDICHOT in 1995 +Downloaded https://quotsoft.net/air/data/china_cities_20150215.csv +No major ions data in 1995 +Downloaded https://quotsoft.net/air/data/china_sites_20150216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150216.csv +Downloaded CO in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150217.csv +Downloaded NO in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150218.csv +Downloaded NO2 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150220.csv +Downloaded O3 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150221.csv +Downloaded PM10 in 1996 +No data for PM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150223.csv +Downloaded SO2 in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150224.csv +No file found for Carbonyls in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150225.csv +No file found for VOC in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150225.csv +No file found for IntegratedPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150226.csv +No file found for IntegratedPM2.5-10 in 1996 +No file found for NAPSReferenceMethodPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150227.csv +No file found for PartisolPM2.5 in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150228.csv +No file found for PMSpeciation in 1996 +Downloaded https://quotsoft.net/air/data/china_cities_20150228.csv +No file found for PMDICHOT in 1996 +No major ions data in 1996 +Downloaded https://quotsoft.net/air/data/china_sites_20150301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150301.csv +Downloaded CO in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150303.csv +Downloaded NO in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150304.csv +Downloaded NO2 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150306.csv +Downloaded O3 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150307.csv +Downloaded PM10 in 1997 +No data for PM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150309.csv +Downloaded SO2 in 1997 +Downloaded https://quotsoft.net/air/data/china_cities_20150309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150310.csv +No file found for Carbonyls in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150311.csv +No file found for VOC in 1997 +Downloaded https://quotsoft.net/air/data/china_cities_20150311.csv +No file found for IntegratedPM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150312.csv +No file found for IntegratedPM2.5-10 in 1997 +No file found for NAPSReferenceMethodPM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150313.csv +No file found for PartisolPM2.5 in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150314.csv +No file found for PMSpeciation in 1997 +Downloaded https://quotsoft.net/air/data/china_cities_20150314.csv +No file found for PMDICHOT in 1997 +No major ions data in 1997 +Downloaded https://quotsoft.net/air/data/china_sites_20150315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150316.csv +Downloaded CO in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150317.csv +Downloaded NO in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150318.csv +Downloaded NO2 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150320.csv +Downloaded O3 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150321.csv +Downloaded PM10 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150322.csv +No data for PM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150323.csv +Downloaded SO2 in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150324.csv +No file found for Carbonyls in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150325.csv +No file found for VOC in 1998 +No file found for IntegratedPM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150326.csv +No file found for IntegratedPM2.5-10 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150327.csv +No file found for NAPSReferenceMethodPM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150327.csv +No file found for PartisolPM2.5 in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150328.csv +No file found for PMSpeciation in 1998 +Downloaded https://quotsoft.net/air/data/china_sites_20150329.csv +No file found for PMDICHOT in 1998 +No major ions data in 1998 +Downloaded https://quotsoft.net/air/data/china_cities_20150329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150330.csv +Downloaded CO in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150331.csv +Downloaded NO in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150402.csv +Downloaded NO2 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150404.csv +Downloaded O3 in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150405.csv +Downloaded PM10 in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150405.csv +No data for PM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150406.csv +Downloaded SO2 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150408.csv +No file found for Carbonyls in 1999 +No file found for VOC in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150409.csv +No file found for IntegratedPM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150410.csv +No file found for IntegratedPM2.5-10 in 1999 +Downloaded https://quotsoft.net/air/data/china_cities_20150410.csv +No file found for NAPSReferenceMethodPM2.5 in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150411.csv +No file found for PartisolPM2.5 in 1999 +No file found for PMSpeciation in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150412.csv +No file found for PMDICHOT in 1999 +No major ions data in 1999 +Downloaded https://quotsoft.net/air/data/china_sites_20150413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150414.csv +Downloaded CO in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150415.csv +Downloaded NO in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150417.csv +Downloaded NO2 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150418.csv +Downloaded O3 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150420.csv +Downloaded PM10 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150420.csv +No data for PM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150421.csv +Downloaded SO2 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150423.csv +No file found for Carbonyls in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150423.csv +No file found for VOC in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150424.csv +No file found for IntegratedPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150425.csv +No file found for IntegratedPM2.5-10 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150425.csv +No file found for NAPSReferenceMethodPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150426.csv +No file found for PartisolPM2.5 in 2000 +Downloaded https://quotsoft.net/air/data/china_cities_20150426.csv +No file found for PMSpeciation in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150427.csv +No file found for PMDICHOT in 2000 +No major ions data in 2000 +Downloaded https://quotsoft.net/air/data/china_sites_20150428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150428.csv +Downloaded CO in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150430.csv +Downloaded NO in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150502.csv +Downloaded NO2 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150504.csv +Downloaded O3 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150505.csv +Downloaded PM10 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150505.csv +No data for PM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150507.csv +Downloaded SO2 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150508.csv +No file found for Carbonyls in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150509.csv +No file found for VOC in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150509.csv +No file found for IntegratedPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150510.csv +No file found for IntegratedPM2.5-10 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150511.csv +No file found for NAPSReferenceMethodPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150511.csv +No file found for PartisolPM2.5 in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150512.csv +No file found for PMSpeciation in 2001 +Downloaded https://quotsoft.net/air/data/china_cities_20150512.csv +No file found for PMDICHOT in 2001 +No major ions data in 2001 +Downloaded https://quotsoft.net/air/data/china_sites_20150513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150514.csv +Downloaded CO in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150516.csv +Downloaded NO in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150517.csv +Downloaded NO2 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150519.csv +Downloaded O3 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150520.csv +Downloaded PM10 in 2002 +No data for PM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150522.csv +Downloaded SO2 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150523.csv +No file found for Carbonyls in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150524.csv +No file found for VOC in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150525.csv +No file found for IntegratedPM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150525.csv +No file found for IntegratedPM2.5-10 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150526.csv +No file found for NAPSReferenceMethodPM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150527.csv +No file found for PartisolPM2.5 in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150527.csv +No file found for PMSpeciation in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150528.csv +No file found for PMDICHOT in 2002 +Downloaded https://quotsoft.net/air/data/china_cities_20150528.csv +No major ions data in 2002 +Downloaded https://quotsoft.net/air/data/china_sites_20150529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150529.csv +Downloaded CO in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150531.csv +Downloaded NO in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150601.csv +Downloaded NO2 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150603.csv +Downloaded O3 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150604.csv +Downloaded PM10 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150605.csv +No data for PM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150606.csv +Downloaded SO2 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150608.csv +No file found for Carbonyls in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150608.csv +No file found for VOC in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150609.csv +No file found for IntegratedPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150610.csv +No file found for IntegratedPM2.5-10 in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150610.csv +No file found for NAPSReferenceMethodPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150611.csv +No file found for PartisolPM2.5 in 2003 +Downloaded https://quotsoft.net/air/data/china_cities_20150611.csv +No file found for PMSpeciation in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150612.csv +No file found for PMDICHOT in 2003 +No major ions data in 2003 +Downloaded https://quotsoft.net/air/data/china_sites_20150613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150614.csv +Downloaded CO in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150615.csv +Downloaded NO in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150617.csv +Downloaded NO2 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150619.csv +Downloaded O3 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150620.csv +Downloaded PM10 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150621.csv +No data for PM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150622.csv +Downloaded SO2 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150624.csv +No file found for Carbonyls in 2004 +No file found for VOC in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150625.csv +No file found for IntegratedPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150626.csv +No file found for IntegratedPM2.5-10 in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150626.csv +No file found for NAPSReferenceMethodPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150627.csv +No file found for PartisolPM2.5 in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150628.csv +No file found for PMSpeciation in 2004 +Downloaded https://quotsoft.net/air/data/china_cities_20150628.csv +No file found for PMDICHOT in 2004 +No major ions data in 2004 +Downloaded https://quotsoft.net/air/data/china_sites_20150629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150630.csv +Downloaded CO in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150701.csv +Downloaded NO in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150703.csv +Downloaded NO2 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150705.csv +Downloaded O3 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150706.csv +Downloaded PM10 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150707.csv +No data for PM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150709.csv +Downloaded SO2 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150710.csv +No file found for Carbonyls in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150711.csv +No file found for VOC in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150711.csv +No file found for IntegratedPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150712.csv +No file found for IntegratedPM2.5-10 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150713.csv +No file found for NAPSReferenceMethodPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_cities_20150713.csv +No file found for PartisolPM2.5 in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150714.csv +No file found for PMSpeciation in 2005 +No file found for PMDICHOT in 2005 +No major ions data in 2005 +Downloaded https://quotsoft.net/air/data/china_sites_20150715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150716.csv +Downloaded CO in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150717.csv +Downloaded NO in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150719.csv +Downloaded NO2 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150721.csv +Downloaded O3 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150722.csv +Downloaded PM10 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150723.csv +No data for PM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150725.csv +Downloaded SO2 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150726.csv +No file found for Carbonyls in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150727.csv +No file found for VOC in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150727.csv +No file found for IntegratedPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150728.csv +No file found for IntegratedPM2.5-10 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150729.csv +No file found for NAPSReferenceMethodPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150729.csv +No file found for PartisolPM2.5 in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150730.csv +No file found for PMSpeciation in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150730.csv +No file found for PMDICHOT in 2006 +Downloaded https://quotsoft.net/air/data/china_sites_20150731.csv +No major ions data in 2006 +Downloaded https://quotsoft.net/air/data/china_cities_20150731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150801.csv +Downloaded CO in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150802.csv +Downloaded NO in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150804.csv +Downloaded NO2 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150806.csv +Downloaded O3 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150807.csv +Downloaded PM10 in 2007 +No data for PM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150809.csv +Downloaded SO2 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150811.csv +No file found for Carbonyls in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150811.csv +No file found for VOC in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150812.csv +No file found for IntegratedPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150813.csv +No file found for IntegratedPM2.5-10 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150813.csv +No file found for NAPSReferenceMethodPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150814.csv +No file found for PartisolPM2.5 in 2007 +Downloaded https://quotsoft.net/air/data/china_cities_20150814.csv +No file found for PMSpeciation in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150815.csv +No file found for PMDICHOT in 2007 +No major ions data in 2007 +Downloaded https://quotsoft.net/air/data/china_sites_20150816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150816.csv +Downloaded CO in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150818.csv +Downloaded NO in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150820.csv +Downloaded NO2 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150822.csv +Downloaded O3 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150823.csv +Downloaded PM10 in 2008 +No data for PM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150825.csv +Downloaded SO2 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150827.csv +No file found for Carbonyls in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150827.csv +No file found for VOC in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150828.csv +No file found for IntegratedPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150829.csv +No file found for IntegratedPM2.5-10 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150829.csv +No file found for NAPSReferenceMethodPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150830.csv +No file found for PartisolPM2.5 in 2008 +Downloaded https://quotsoft.net/air/data/china_cities_20150830.csv +No file found for PMSpeciation in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150831.csv +No file found for PMDICHOT in 2008 +No major ions data in 2008 +Downloaded https://quotsoft.net/air/data/china_sites_20150901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150901.csv +Downloaded CO in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150903.csv +Downloaded NO in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150905.csv +Downloaded NO2 in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150906.csv +Downloaded O3 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150907.csv +Downloaded PM10 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150908.csv +No data for PM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150910.csv +Downloaded SO2 in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150911.csv +No file found for Carbonyls in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150912.csv +No file found for VOC in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150912.csv +No file found for IntegratedPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150913.csv +No file found for IntegratedPM2.5-10 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150914.csv +No file found for NAPSReferenceMethodPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150914.csv +No file found for PartisolPM2.5 in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150915.csv +No file found for PMSpeciation in 2009 +Downloaded https://quotsoft.net/air/data/china_cities_20150915.csv +No file found for PMDICHOT in 2009 +No major ions data in 2009 +Downloaded https://quotsoft.net/air/data/china_sites_20150916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150917.csv +Downloaded CO in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150919.csv +Downloaded NO in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150920.csv +Downloaded NO2 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150923.csv +Downloaded O3 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150924.csv +Downloaded PM10 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150924.csv +No data for PM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20150926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150926.csv +Downloaded SO2 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150927.csv +No file found for Carbonyls in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20150928.csv +No file found for VOC in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150929.csv +No file found for IntegratedPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150929.csv +No file found for IntegratedPM2.5-10 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20150930.csv +No file found for NAPSReferenceMethodPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20150930.csv +No file found for PartisolPM2.5 in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151001.csv +No file found for PMSpeciation in 2010 +Downloaded https://quotsoft.net/air/data/china_sites_20151002.csv +No file found for PMDICHOT in 2010 +No major ions data in 2010 +Downloaded https://quotsoft.net/air/data/china_cities_20151002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151003.csv +Downloaded CO in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151005.csv +Downloaded NO in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151006.csv +Downloaded NO2 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151009.csv +Downloaded O3 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151009.csv +Downloaded PM10 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151010.csv +No data for PM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151012.csv +Downloaded SO2 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151013.csv +No file found for Carbonyls in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151014.csv +No file found for VOC in 2011 +No file found for IntegratedPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151015.csv +No file found for IntegratedPM2.5-10 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151016.csv +No file found for NAPSReferenceMethodPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151016.csv +No file found for PartisolPM2.5 in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151017.csv +No file found for PMSpeciation in 2011 +No file found for PMDICHOT in 2011 +Downloaded https://quotsoft.net/air/data/china_sites_20151018.csv +No major ions data in 2011 +Downloaded https://quotsoft.net/air/data/china_cities_20151018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151019.csv +Downloaded CO in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151021.csv +Downloaded NO in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151023.csv +Downloaded NO2 in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151025.csv +Downloaded O3 in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151026.csv +Downloaded PM10 in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151026.csv +No data for PM2.5 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151028.csv +Downloaded SO2 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151030.csv +No file found for Carbonyls in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151030.csv +No file found for VOC in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151031.csv +No file found for IntegratedPM2.5 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151101.csv +No file found for IntegratedPM2.5-10 in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151101.csv +No file found for NAPSReferenceMethodPM2.5 in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151102.csv +No file found for PartisolPM2.5 in 2012 +Downloaded https://quotsoft.net/air/data/china_cities_20151102.csv +No file found for PMSpeciation in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151103.csv +No file found for PMDICHOT in 2012 +No major ions data in 2012 +Downloaded https://quotsoft.net/air/data/china_sites_20151104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151104.csv +Downloaded CO in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151106.csv +Downloaded NO in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151108.csv +Downloaded NO2 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151110.csv +Downloaded O3 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151111.csv +Downloaded PM10 in 2013 +No data for PM2.5 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151113.csv +Downloaded SO2 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151115.csv +No file found for Carbonyls in 2013 +Downloaded https://quotsoft.net/air/data/china_cities_20151115.csv +No file found for VOC in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151116.csv +No file found for IntegratedPM2.5 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151117.csv +No file found for IntegratedPM2.5-10 in 2013 +Downloaded https://quotsoft.net/air/data/china_cities_20151117.csv +No file found for NAPSReferenceMethodPM2.5 in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151118.csv +No file found for PartisolPM2.5 in 2013 +Downloaded https://quotsoft.net/air/data/china_cities_20151118.csv +No file found for PMSpeciation in 2013 +Downloaded https://quotsoft.net/air/data/china_sites_20151119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151119.csv +No file found for PMDICHOT in 2013 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151120.csv +Downloaded CO in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151122.csv +Downloaded NO in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151124.csv +Downloaded NO2 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151126.csv +Downloaded O3 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151127.csv +Downloaded PM10 in 2014 +No data for PM2.5 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151130.csv +Downloaded SO2 in 2014 +Downloaded https://quotsoft.net/air/data/china_cities_20151130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151201.csv +No file found for Carbonyls in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151202.csv +No file found for VOC in 2014 +No file found for IntegratedPM2.5 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151203.csv +No file found for IntegratedPM2.5-10 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151204.csv +No file found for NAPSReferenceMethodPM2.5 in 2014 +Downloaded https://quotsoft.net/air/data/china_cities_20151204.csv +No file found for PartisolPM2.5 in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151205.csv +No file found for PMSpeciation in 2014 +No file found for PMDICHOT in 2014 +Downloaded https://quotsoft.net/air/data/china_sites_20151206.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151207.csv +Downloaded CO in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151209.csv +Downloaded NO in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151211.csv +Downloaded NO2 in 2015 +Downloaded https://quotsoft.net/air/data/china_cities_20151211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151213.csv +Downloaded O3 in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151214.csv +Downloaded PM10 in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151215.csv +No data for PM2.5 in 2015 +Downloaded https://quotsoft.net/air/data/china_cities_20151215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151217.csv +Downloaded SO2 in 2015 +Downloaded https://quotsoft.net/air/data/china_cities_20151217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151218.csv +No file found for Carbonyls in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151219.csv +No file found for VOC in 2015 +No file found for IntegratedPM2.5 in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151220.csv +No file found for IntegratedPM2.5-10 in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151221.csv +No file found for NAPSReferenceMethodPM2.5 in 2015 +Downloaded https://quotsoft.net/air/data/china_cities_20151221.csv +No file found for PartisolPM2.5 in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151222.csv +No file found for PMSpeciation in 2015 +Downloaded https://quotsoft.net/air/data/china_cities_20151222.csv +No file found for PMDICHOT in 2015 +Downloaded https://quotsoft.net/air/data/china_sites_20151223.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151224.csv +Downloaded CO in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20151225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151226.csv +Downloaded NO in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20151226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151227.csv +Downloaded NO2 in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20151228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20151229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151230.csv +Downloaded O3 in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20151230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20151231.csv +Downloaded PM10 in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20151231.csv +No data for PM2.5 in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160102.csv +Downloaded SO2 in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20160102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160103.csv +No file found for Carbonyls in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160104.csv +No file found for VOC in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20160104.csv +No file found for IntegratedPM2.5 in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160105.csv +No file found for IntegratedPM2.5-10 in 2016 +No file found for NAPSReferenceMethodPM2.5 in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160106.csv +No file found for PartisolPM2.5 in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160107.csv +No file found for PMSpeciation in 2016 +Downloaded https://quotsoft.net/air/data/china_cities_20160107.csv +No file found for PMDICHOT in 2016 +Downloaded https://quotsoft.net/air/data/china_sites_20160108.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160109.csv +Downloaded CO in 2017 +Downloaded https://quotsoft.net/air/data/china_cities_20160109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160111.csv +Downloaded NO in 2017 +Downloaded https://quotsoft.net/air/data/china_cities_20160111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160112.csv +Downloaded NO2 in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160115.csv +Downloaded O3 in 2017 +Downloaded https://quotsoft.net/air/data/china_cities_20160115.csv +Downloaded PM10 in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160116.csv +No data for PM2.5 in 2017 +Downloaded https://quotsoft.net/air/data/china_cities_20160116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160117.csv +Downloaded SO2 in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160119.csv +No file found for Carbonyls in 2017 +No file found for VOC in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160120.csv +No file found for IntegratedPM2.5 in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160121.csv +No file found for IntegratedPM2.5-10 in 2017 +Downloaded https://quotsoft.net/air/data/china_cities_20160121.csv +No file found for NAPSReferenceMethodPM2.5 in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160122.csv +No file found for PartisolPM2.5 in 2017 +No file found for PMSpeciation in 2017 +Downloaded https://quotsoft.net/air/data/china_sites_20160123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160123.csv +No file found for PMDICHOT in 2017 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160125.csv +Downloaded CO in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160127.csv +Downloaded NO in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160129.csv +Downloaded NO2 in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160131.csv +Downloaded O3 in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160201.csv +Downloaded PM10 in 2018 +No data for PM2.5 in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160203.csv +Downloaded SO2 in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160205.csv +No file found for Carbonyls in 2018 +No file found for VOC in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160206.csv +No file found for IntegratedPM2.5 in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160207.csv +No file found for IntegratedPM2.5-10 in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160207.csv +No file found for NAPSReferenceMethodPM2.5 in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160208.csv +No file found for PartisolPM2.5 in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160208.csv +No file found for PMSpeciation in 2018 +Downloaded https://quotsoft.net/air/data/china_sites_20160209.csv +No file found for PMDICHOT in 2018 +Downloaded https://quotsoft.net/air/data/china_cities_20160209.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160210.csv +Downloaded CO in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160212.csv +Downloaded NO in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160214.csv +Downloaded NO2 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160217.csv +Downloaded O3 in 2019 +Downloaded https://quotsoft.net/air/data/china_cities_20160217.csv +Downloaded PM10 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160218.csv +No data for PM2.5 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160220.csv +Downloaded SO2 in 2019 +Downloaded https://quotsoft.net/air/data/china_cities_20160220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160221.csv +No file found for Carbonyls in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160222.csv +No file found for VOC in 2019 +Downloaded https://quotsoft.net/air/data/china_cities_20160222.csv +No file found for IntegratedPM2.5 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160223.csv +No file found for IntegratedPM2.5-10 in 2019 +No file found for NAPSReferenceMethodPM2.5 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160224.csv +No file found for PartisolPM2.5 in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160225.csv +No file found for PMSpeciation in 2019 +Downloaded https://quotsoft.net/air/data/china_cities_20160225.csv +No file found for PMDICHOT in 2019 +Downloaded https://quotsoft.net/air/data/china_sites_20160226.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160227.csv +Downloaded CO in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160229.csv +Downloaded NO in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160301.csv +Downloaded NO2 in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160304.csv +Downloaded O3 in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160305.csv +Downloaded PM10 in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160305.csv +No data for PM2.5 in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160307.csv +Downloaded SO2 in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160308.csv +No file found for Carbonyls in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160309.csv +No file found for VOC in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160309.csv +No file found for IntegratedPM2.5 in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160310.csv +No file found for IntegratedPM2.5-10 in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160311.csv +No file found for NAPSReferenceMethodPM2.5 in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160311.csv +No file found for PartisolPM2.5 in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160312.csv +No file found for PMSpeciation in 2020 +Downloaded https://quotsoft.net/air/data/china_cities_20160312.csv +No file found for PMDICHOT in 2020 +Downloaded https://quotsoft.net/air/data/china_sites_20160313.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160314.csv +Downloaded CO in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160316.csv +Downloaded NO in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160318.csv +Downloaded NO2 in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160320.csv +Downloaded O3 in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160321.csv +Downloaded PM10 in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160321.csv +No data for PM2.5 in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160323.csv +Downloaded SO2 in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160324.csv +No file found for Carbonyls in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160325.csv +No file found for VOC in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160325.csv +No file found for IntegratedPM2.5 in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160326.csv +No file found for IntegratedPM2.5-10 in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160327.csv +No file found for NAPSReferenceMethodPM2.5 in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160327.csv +No file found for PartisolPM2.5 in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160328.csv +No file found for PMSpeciation in 2021 +Downloaded https://quotsoft.net/air/data/china_cities_20160328.csv +No file found for PMDICHOT in 2021 +Downloaded https://quotsoft.net/air/data/china_sites_20160329.csv +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160330.csv +Downloaded CO in 2022 +Downloaded https://quotsoft.net/air/data/china_cities_20160330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160331.csv +Downloaded NO in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160402.csv +Downloaded NO2 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160404.csv +Downloaded O3 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160405.csv +Downloaded PM10 in 2022 +No data for PM2.5 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160407.csv +Downloaded SO2 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160409.csv +No file found for Carbonyls in 2022 +Downloaded https://quotsoft.net/air/data/china_cities_20160409.csv +No file found for VOC in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160410.csv +No file found for IntegratedPM2.5 in 2022 +Downloaded https://quotsoft.net/air/data/china_cities_20160410.csv +No file found for IntegratedPM2.5-10 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160411.csv +No file found for NAPSReferenceMethodPM2.5 in 2022 +Downloaded https://quotsoft.net/air/data/china_cities_20160411.csv +No file found for PartisolPM2.5 in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160412.csv +No file found for PMSpeciation in 2022 +Downloaded https://quotsoft.net/air/data/china_sites_20160413.csv +No file found for PMDICHOT in 2022 +Downloaded AtmosphericPrecipitationChemistry-MajorIons-APQMP-AllSites-2022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160413.csv +No data for CO in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160414.csv +No data for NO in 2023 +Downloaded https://quotsoft.net/air/data/china_cities_20160414.csv +No data for NO2 in 2023 +No data for O3 in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160415.csv +No data for PM10 in 2023 +No data for PM2.5 in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160416.csv +No data for SO2 in 2023 +Downloaded https://quotsoft.net/air/data/china_cities_20160416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160417.csv +No file found for Carbonyls in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160418.csv +No file found for VOC in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160419.csv +No file found for IntegratedPM2.5 in 2023 +Downloaded https://quotsoft.net/air/data/china_cities_20160419.csv +No file found for IntegratedPM2.5-10 in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160420.csv +No file found for NAPSReferenceMethodPM2.5 in 2023 +Downloaded https://quotsoft.net/air/data/china_cities_20160420.csv +No file found for PartisolPM2.5 in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160421.csv +No file found for PMSpeciation in 2023 +Downloaded https://quotsoft.net/air/data/china_sites_20160422.csv +No file found for PMDICHOT in 2023 +No major ions data in 2023 +Downloaded https://quotsoft.net/air/data/china_cities_20160422.csv +No data for CO in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160423.csv +No data for NO in 2024 +Downloaded https://quotsoft.net/air/data/china_cities_20160423.csv +No data for NO2 in 2024 +No data for O3 in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160424.csv +No data for PM10 in 2024 +Downloaded https://quotsoft.net/air/data/china_cities_20160424.csv +No data for PM2.5 in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160425.csv +No data for SO2 in 2024 +Downloaded https://quotsoft.net/air/data/china_cities_20160425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160426.csv +No file found for Carbonyls in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160427.csv +No file found for VOC in 2024 +Downloaded https://quotsoft.net/air/data/china_cities_20160427.csv +No file found for IntegratedPM2.5 in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160428.csv +No file found for IntegratedPM2.5-10 in 2024 +No file found for NAPSReferenceMethodPM2.5 in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160429.csv +No file found for PartisolPM2.5 in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160430.csv +No file found for PMSpeciation in 2024 +Downloaded https://quotsoft.net/air/data/china_cities_20160430.csv +No file found for PMDICHOT in 2024 +No major ions data in 2024 +Downloaded https://quotsoft.net/air/data/china_sites_20160501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160501.csv +Downloaded AtmosphericPrecipitationChemistry-MetalsInPrecipitation-GLB-MultipleSites-1993_2017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160502.csv +Downloaded https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/anthropogenic-organic-pollutants-in-precipitation/AtmosphericPrecipitationChemistry-AOPP_FR-GLBM-MultipleSites-2002_2015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160503.csv +Downloaded https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/anthropogenic-organic-pollutants-in-precipitation/AtmosphericPrecipitationChemistry-AOPP_OC-GLBM-MultipleSites-1990_2015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160504.csv +Downloaded https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/anthropogenic-organic-pollutants-in-precipitation/AtmosphericPrecipitationChemistry-AOPP_PAH-GLBM-MultipleSites-1990_2015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160504.csv +Downloaded https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/anthropogenic-organic-pollutants-in-precipitation/AtmosphericPrecipitationChemistry-AOPP_PCB-GLBM-MultipleSites-2002_2016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160505.csv +Pseudo-terminal will not be allocated because stdin is not a terminal. +Downloaded https://quotsoft.net/air/data/china_cities_20160505.csv +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 265799 +Started downloading data of CAPMoN +['1980', '1981', '1982', '1983', '1984', '1985', '1986', '1987', '1988', '1989', '1990', '1991', '1992', '1993', '1994', '1995', '1996', '1997', '1998', '1999', '2000', '2001', '2002', '2003', '2004', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024'] +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_sites_20160506.csv +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1980.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160506.csv +No ozone l data found, error 404 +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1981.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160507.csv +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_cities_20160507.csv +No major ions data found, error 404 https://data-donnees.az.ec.gc.ca/api/file?path=/air/monitor/monitoring-of-atmospheric-precipitation-chemistry/major-ions/AtmosphericPrecipitationChemistry-MajorIons-CAPMoN-AllSites-1982.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160508.csv +No ozone l data found, error 404 +Downloaded https://quotsoft.net/air/data/china_cities_20160508.csv + +Downloaded https://quotsoft.net/air/data/china_sites_20160509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20160930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20160930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20161231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20161231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20170930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20170930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20171231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20171231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20180930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20180930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181221.csv +No https://quotsoft.net/air/data/china_sites_20181222.csv +No https://quotsoft.net/air/data/china_cities_20181222.csv +No https://quotsoft.net/air/data/china_sites_20181223.csv +No https://quotsoft.net/air/data/china_cities_20181223.csv +No https://quotsoft.net/air/data/china_sites_20181224.csv +No https://quotsoft.net/air/data/china_cities_20181224.csv +No https://quotsoft.net/air/data/china_sites_20181225.csv +No https://quotsoft.net/air/data/china_cities_20181225.csv +No https://quotsoft.net/air/data/china_sites_20181226.csv +No https://quotsoft.net/air/data/china_cities_20181226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20181231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20181231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190823.csv +No https://quotsoft.net/air/data/china_sites_20190824.csv +No https://quotsoft.net/air/data/china_cities_20190824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20190930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20190930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20191231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20191231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20200930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20200930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20201231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20201231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20210930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20210930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20211231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20211231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20220930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20220930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20221231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20221231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230614.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230615.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230615.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230616.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230616.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230617.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230617.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230618.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230618.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230619.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230619.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230620.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230620.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230621.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230621.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230622.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230622.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230623.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230623.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230624.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230624.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230625.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230625.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230626.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230626.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230627.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230627.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230628.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230628.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230629.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230629.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230630.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230630.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230701.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230701.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230702.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230702.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230703.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230703.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230704.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230704.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230705.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230705.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230706.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230706.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230707.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230707.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230708.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230708.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230709.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230709.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230710.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230710.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230711.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230711.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230712.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230712.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230713.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230713.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230714.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230714.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230715.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230715.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230716.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230716.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230717.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230717.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230718.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230718.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230719.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230719.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230720.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230720.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230721.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230721.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230722.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230722.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230723.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230723.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230724.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230724.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230725.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230725.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230726.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230726.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230727.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230727.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230728.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230728.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230729.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230729.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230730.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230730.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230731.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230731.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230801.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230801.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230802.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230802.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230803.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230803.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230804.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230804.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230805.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230805.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230806.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230806.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230807.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230807.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230808.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230808.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230809.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230809.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230810.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230810.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230811.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230811.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230812.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230812.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230813.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230813.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230814.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230814.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230815.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230815.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230816.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230816.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230817.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230817.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230818.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230818.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230819.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230819.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230820.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230820.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230821.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230821.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230822.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230822.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230823.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230823.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230824.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230824.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230825.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230825.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230826.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230826.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230827.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230827.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230828.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230828.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230829.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230829.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230830.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230830.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230831.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230831.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230901.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230901.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230902.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230902.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230903.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230903.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230904.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230904.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230905.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230905.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230906.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230906.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230907.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230907.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230908.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230908.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230909.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230909.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230910.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230910.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230911.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230911.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230912.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230912.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230913.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230913.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230914.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230914.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230915.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230915.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230916.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230916.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230917.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230917.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230918.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230918.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230919.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230919.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230920.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230920.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230921.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230921.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230922.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230922.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230923.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230923.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230924.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230924.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230925.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230925.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230926.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230926.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230927.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230927.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230928.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230928.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230929.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230929.csv +Downloaded https://quotsoft.net/air/data/china_sites_20230930.csv +Downloaded https://quotsoft.net/air/data/china_cities_20230930.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231001.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231001.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231002.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231002.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231003.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231003.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231004.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231004.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231005.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231005.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231006.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231006.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231007.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231007.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231008.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231008.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231009.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231009.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231010.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231010.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231011.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231011.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231012.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231012.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231013.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231013.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231014.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231014.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231015.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231015.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231016.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231016.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231017.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231017.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231018.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231018.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231019.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231019.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231020.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231020.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231021.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231021.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231022.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231022.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231023.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231023.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231024.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231024.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231025.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231025.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231026.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231026.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231027.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231027.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231028.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231028.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231029.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231029.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231030.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231030.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231031.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231031.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231230.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231230.csv +Downloaded https://quotsoft.net/air/data/china_sites_20231231.csv +Downloaded https://quotsoft.net/air/data/china_cities_20231231.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240101.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240101.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240102.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240102.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240103.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240103.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240104.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240104.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240105.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240105.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240106.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240106.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240107.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240107.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240108.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240108.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240109.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240109.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240110.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240110.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240111.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240111.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240112.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240112.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240113.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240113.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240114.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240114.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240115.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240115.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240116.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240116.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240117.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240117.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240118.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240118.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240119.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240119.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240120.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240120.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240121.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240121.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240122.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240122.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240123.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240123.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240124.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240124.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240125.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240125.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240126.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240126.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240127.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240127.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240128.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240128.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240129.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240129.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240130.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240130.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240131.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240131.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240201.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240201.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240202.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240202.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240203.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240203.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240204.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240204.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240205.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240205.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240206.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240206.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240207.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240207.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240208.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240208.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240209.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240209.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240210.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240210.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240211.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240211.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240212.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240212.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240213.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240213.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240214.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240214.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240215.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240215.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240216.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240216.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240217.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240217.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240218.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240218.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240219.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240219.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240220.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240220.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240221.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240221.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240222.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240222.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240223.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240223.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240224.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240224.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240225.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240225.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240226.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240226.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240227.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240227.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240228.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240228.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240229.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240229.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240301.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240301.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240302.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240302.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240303.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240303.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240304.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240304.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240305.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240305.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240306.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240306.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240307.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240307.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240308.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240308.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240309.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240309.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240310.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240310.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240311.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240311.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240312.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240312.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240313.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240313.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240314.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240314.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240315.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240315.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240316.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240316.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240317.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240317.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240318.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240318.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240319.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240319.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240320.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240320.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240321.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240321.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240322.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240322.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240323.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240323.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240324.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240324.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240325.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240325.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240326.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240326.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240327.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240327.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240328.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240328.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240329.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240329.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240330.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240330.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240331.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240331.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240401.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240401.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240402.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240402.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240403.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240403.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240404.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240404.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240405.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240405.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240406.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240406.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240407.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240407.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240408.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240408.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240409.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240409.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240410.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240410.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240411.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240411.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240412.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240412.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240413.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240413.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240414.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240414.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240415.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240415.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240416.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240416.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240417.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240417.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240418.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240418.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240419.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240419.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240420.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240420.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240421.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240421.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240422.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240422.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240423.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240423.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240424.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240424.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240425.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240425.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240426.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240426.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240427.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240427.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240428.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240428.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240429.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240429.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240430.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240430.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240501.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240501.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240502.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240502.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240503.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240503.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240504.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240504.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240505.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240505.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240506.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240506.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240507.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240507.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240508.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240508.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240509.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240509.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240510.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240510.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240511.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240511.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240512.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240512.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240513.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240513.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240514.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240514.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240515.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240515.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240516.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240516.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240517.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240517.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240518.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240518.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240519.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240519.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240520.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240520.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240521.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240521.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240522.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240522.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240523.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240523.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240524.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240524.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240525.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240525.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240526.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240526.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240527.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240527.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240528.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240528.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240529.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240529.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240530.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240530.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240531.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240531.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240601.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240601.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240602.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240602.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240603.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240603.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240604.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240604.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240605.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240605.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240606.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240606.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240607.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240607.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240608.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240608.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240609.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240609.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240610.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240610.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240611.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240611.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240612.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240612.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240613.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240613.csv +Downloaded https://quotsoft.net/air/data/china_sites_20240614.csv +Downloaded https://quotsoft.net/air/data/china_cities_20240614.csv +Pseudo-terminal will not be allocated because stdin is not a terminal. +X11 forwarding request failed on channel 0 +Loads storage data transfer commands +load bsc/1.0 (PATH, MANPATH) +Submitted batch job 267951 +multiprocessing.pool.RemoteTraceback: +""" +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 36, in download_network + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/EANET_download.py", line 49, in download_data + driver = webdriver.Chrome(service=svc, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chrome/webdriver.py", line 45, in __init__ + super().__init__( + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/chromium/webdriver.py", line 61, in __init__ + super().__init__(command_executor=executor, options=options) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 208, in __init__ + self.start_session(capabilities) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 292, in start_session + response = self.execute(Command.NEW_SESSION, caps)["value"] + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/webdriver.py", line 347, in execute + self.error_handler.check_response(response) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/selenium/4.18.1-foss-2021b-Python-3.9.6/lib/python3.9/site-packages/selenium/webdriver/remote/errorhandler.py", line 229, in check_response + raise exception_class(message, screen, stacktrace) +selenium.common.exceptions.WebDriverException: Message: unknown error: Chrome failed to start: exited abnormally. + (unknown error: DevToolsActivePort file doesn't exist) + (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.) +Stacktrace: +#0 0x555cd0caa463 +#1 0x555cd0a6e8d8 +#2 0x555cd0a96b6a +#3 0x555cd0a91c05 +#4 0x555cd0ad5802 +#5 0x555cd0ad52af +#6 0x555cd0acd443 +#7 0x555cd0a9e3c5 +#8 0x555cd0a9f531 +#9 0x555cd0cfcdce +#10 0x555cd0d00192 +#11 0x555cd0ce193e +#12 0x555cd0d01103 +#13 0x555cd0cd4d85 +#14 0x555cd0d220a8 +#15 0x555cd0d22239 +#16 0x555cd0d3d492 +#17 0x7f7bbc6461cf start_thread + + +During handling of the above exception, another exception occurred: + +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 125, in worker + result = (True, func(*args, **kwds)) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 51, in starmapstar + return list(itertools.starmap(args[0], args[1])) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 61, in download_network + res = '{} data unsuccessful -- total: {} min +++ download: {} min +++ rsync: {} min \n'.format(network, total_dl_time, dl_time, rsync_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' +UnboundLocalError: local variable 'dl_time' referenced before assignment +""" + +The above exception was the direct cause of the following exception: + +Traceback (most recent call last): + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 162, in + pool.starmap(download_network, zip(networks, itertools.repeat(dlconfig.dl_data), itertools.repeat(dlconfig.dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode), itertools.repeat(start_date), itertools.repeat(stop_date), itertools.repeat(dlconfig.root), itertools.repeat(q))) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 372, in starmap + return self._map_async(func, iterable, starmapstar, chunksize).get() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/pool.py", line 771, in get + raise self._value +UnboundLocalError: local variable 'dl_time' referenced before assignment +Process Process-4: +Traceback (most recent call last): + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap + self.run() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/process.py", line 108, in run + self._target(*self._args, **self._kwargs) + File "/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py", line 108, in writer + message = q.get() + File "", line 2, in get + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/managers.py", line 809, in _callmethod + kind, result = conn.recv() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 255, in recv + buf = self._recv_bytes() + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 419, in _recv_bytes + buf = self._recv(4) + File "/shared/earth/easybuild/rocky/8.4/x86_64/software/Python/3.9.6-GCCcore-11.2.0/lib/python3.9/multiprocessing/connection.py", line 388, in _recv + raise EOFError +EOFError + +real 243m20,247s +user 3m15,871s +sys 0m47,026s diff --git a/download_scripts/rsync_data.sh b/download_scripts/rsync_data.sh new file mode 100755 index 0000000000000000000000000000000000000000..af6713e250f2b33a123c7f9d959e29215c6e01ed --- /dev/null +++ b/download_scripts/rsync_data.sh @@ -0,0 +1,25 @@ +#!/bin/bash +#SBATCH -n 1 +#SBATCH -t 01:00:00 +#SBATCH -J gfasftp +#SBATCH -e /esarchive/recon/ecmwf/gfas/scripts/i535-marc-hourly/out-logs/format-ftp-%j.err +#SBATCH -o /esarchive/recon/ecmwf/gfas/scripts/i535-marc-hourly/out-logs/format-ftp-%j.out + +# change permissions +chmod -R 770 $3/$1/$4/$2/ + #dl_root/network/original_files:metadata/version/ + +if [ $4 == 'metadata' ] # sync all metadata +then + # sync data + ssh transfer1 << EOF + dtrsync -rvzh --groupmap=*:bsc32 /gpfs/archive/bsc32$3/$1/$4/ /gpfs/projects/bsc32/AC_cache/obs/ghost/$1/$4 > ./rsync_gpfs.out + +EOF + +else # sync only data of current version + ssh transfer1 << EOF + dtrsync -rvzh --groupmap=*:bsc32 /gpfs/archive/bsc32$3/$1/$4/$2/ /gpfs/projects/bsc32/AC_cache/obs/ghost/$1/$4/$2 > ./rsync_gpfs.out + +EOF +fi \ No newline at end of file diff --git a/download_scripts/run_GHOST_downloads.py b/download_scripts/run_GHOST_downloads.py new file mode 100644 index 0000000000000000000000000000000000000000..061534e3c0e2b0832566c1eaf29ad9dddfb6ab7b --- /dev/null +++ b/download_scripts/run_GHOST_downloads.py @@ -0,0 +1,216 @@ +""" +run the download of GHOST network data and metadata +""" + +# import python modules +import time +import datetime +import traceback +import numpy as np +import sys +import multiprocessing +import itertools +import importlib +import subprocess +#from download_configurations import operational_config as dlconfig # import operational configuration +from download_configurations import test_config as dlconfig # import test run configuration + + +def download_network(network, dl_data, dl_metadata, download_params, version, mode, start, stop, dl_root, q): + + # Start download + dl_start_time = time.time() + max_time_per_dl = download_params[network]['max_time_dl'] + n_max_tries = download_params[network]['max_number_tries'] + + if 'AERONET' in network: # take care of dots in module name + network_mod = network.replace('.', '') + else: + network_mod = network + + dl_module = importlib.import_module(network_mod+'_download') # import python script + + if dl_data == True: + print("Started downloading data of {}".format(network)) + try: + dl_module.download_data(mode, version, n_max_tries, max_time_per_dl, start, stop, dl_root) + dl_mid_time = time.time() + + # copy data to gpfs + if mode == "nrt": + version = mode + else: + version = version + + subprocess.run(['./rsync_data.sh', network, version, dl_root, 'original_files']) + + # Stop download + dl_end_time = time.time() + + dl_time = np.round((dl_mid_time - dl_start_time)/60., 3) + rsync_time = np.round((dl_end_time - dl_mid_time)/60., 3) + total_dl_time = np.round((dl_end_time - dl_start_time)/60., 3) + res = '{} successful -- total: {} min +++ download: {} min +++ rsync: {} min \n-------------------------------------------------------------------------------------------------------------\n'.format(network, total_dl_time, dl_time, rsync_time) + q.put(res) + + except: + dl_end_time = time.time() + total_dl_time = np.round((dl_end_time - dl_start_time)/60., 3) + e = sys.exc_info()[0] + print(e) + res = '{} data unsuccessful -- run for {} min +++ \n'.format(network, total_dl_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' + q.put(res) + + + if dl_metadata == True: + print("Started downloading metadata of {}".format(network)) + try: + dl_module.download_metadata(n_max_tries, max_time_per_dl, version, dl_root) + dl_mid_time = time.time() + + # copy data to gpfs + if mode == "nrt": + version = mode + else: + version = version + + subprocess.run(['./rsync_data.sh', network, version, dl_root, 'metadata']) + + # Stop download + dl_end_time = time.time() + + dl_time = np.round((dl_mid_time - dl_start_time)/60., 3) + rsync_time = np.round((dl_end_time - dl_mid_time)/60., 3) + total_dl_time = np.round((dl_end_time - dl_start_time)/60., 3) + res = '{} metadata successful -- total: {} min +++ download: {} min +++ rsync: {} min \n-------------------------------------------------------------------------------------------------------------\n'.format(network, total_dl_time, dl_time, rsync_time) + q.put(res) + + except: + dl_end_time = time.time() + total_dl_time = np.round((dl_end_time - dl_start_time)/60., 3) + e = sys.exc_info()[0] + print(e) + res = '{} metadata unsuccessful -- run for {} minutes \n'.format(network, total_dl_time)+str(traceback.format_exc())+'\n-------------------------------------------------------------------------------------------------------------\n' + q.put(res) + + + +def writer(q, mode, version, start, stop, logfile_path): + '''listens for messages on the queue, writes to file. ''' + + dl_start_time = time.time() + with open(logfile_path, 'w') as f: + f.write('**************************************************************************************************************\n') + f.write('BEGINNING DOWNLOADING DATA {}, GHOST version {}, from {} to {} \n'.format(mode, version, start.strftime('%Y-%m-%d'), stop.strftime('%Y-%m-%d'))) + f.write('**************************************************************************************************************\n') + + while True: + message = q.get() + if message == 'DONE': + dl_end_time = time.time() + dl_time_tot = np.round((dl_end_time - dl_start_time)/60., 3) + f.write('Total duration: {} minutes'.format(dl_time_tot)) + break + + f.write(str(message) + '\n') + f.flush() + + + +if __name__ == "__main__": + + # import download configuration + mode = dlconfig.mode + version = dlconfig.version + download_params = dlconfig.download_params + networks = dlconfig.networks_to_download + + # time period for downloaded data + if mode == 'all': + start_date = datetime.date(1970, 1, 1) # the real date when the data starts depends on the network! This is just for representation in the logfile + stop_date = datetime.date.today() + elif mode == 'nrt': + start_date = dlconfig.start_date + stop_date = dlconfig.stop_date + + # networks to be downloaded + if dlconfig.networks_to_download == 'all': + if mode == 'all': + networks = dlconfig.all_networks + + elif mode == 'nrt': + networks = dlconfig.all_nrt_networks + + + print("Ghost version: {}".format(version)) + print("Mode: {}".format(mode)) + + # create logfile + logfile_path = '/esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/log_files/log_{}.out'.format(datetime.datetime.now().strftime('%Y%m%d-%H%M%S')) + + # add queue for writing results safely to single file + manager = multiprocessing.Manager() + q = manager.Queue() + + # Create a pool of workers + with multiprocessing.Pool(dlconfig.num_cpu) as pool: + # Start a process to write results to the file + writer_process = multiprocessing.Process(target=writer, args=(q, mode, version, start_date, stop_date, logfile_path)) + writer_process.start() + + # Use starmap to apply process_data to each set of arguments in args_list, passing the queue + pool.starmap(download_network, zip(networks, itertools.repeat(dlconfig.dl_data), itertools.repeat(dlconfig.dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode), itertools.repeat(start_date), itertools.repeat(stop_date), itertools.repeat(dlconfig.root), itertools.repeat(q))) + + # Signal the writer process to finish + q.put('DONE') + + # Wait for the writer process to finish + writer_process.join() + + + + # result = pool.starmap(download_network, zip(networks, itertools.repeat(dl_data), itertools.repeat(dl_metadata), itertools.repeat(download_params), itertools.repeat(version), itertools.repeat(mode))) + # print(result) + # dl_logfile.write(''.join(result)) + + # pool.close() + # pool.join() + + + + + # run the desired networks + # for network in networks: + + # dl_start_time = time.time() + # max_time_per_dl = download_params[network]['max_time_dl'] + # n_max_tries = download_params[network]['max_number_tries'] + # dl_module = importlib.import_module(network+'_download') # import python script + + # if dl_data == True: + # print("Started downloading data of {}".format(network)) + # try: + # dl_module.download_data(mode, version, n_max_tries, max_time_per_dl) + + # # copy data to gpfs + # #os.system('rsync -arvzh /esarchive/obs/ghost/{}/ /gpfs/projects/bsc32/AC_cache/obs/ghost/{} > rsync_gpfs.txt'.format(network_name, network_name)) + + # dl_end_time = time.time() + # total_dl_time = (dl_end_time - dl_start_time)/60. + # #dl_logfile.write('{} successful -- duration: {} minutes'.format(network_name, total_dl_time)) + # #dl_logfile.write('\n---------------------------------------------------------------------------------------------------\n') + + + # except Exception as e: + # print(e) + # dl_end_time = time.time() + # total_dl_time = np.round((dl_end_time - dl_start_time)/60., 3) + # print("failed {}".format(total_dl_time)) + # #dl_logfile.write('{} unsuccessful -- duration {} minutes \n'.format(network_name, total_dl_time)+str(traceback.format_exc())) + # #dl_logfile.write('\n---------------------------------------------------------------------------------------------------\n') + + + # if dl_metadata == True: + # print("Started downloading metadata of {}".format(network)) + # dl_module.download_metadata(n_max_tries, max_time_per_dl) + diff --git a/download_scripts/start_GHOST_downloads.sh b/download_scripts/start_GHOST_downloads.sh new file mode 100644 index 0000000000000000000000000000000000000000..4ec515c04a9987c9c6a740ab1de3fdbbf46014bc --- /dev/null +++ b/download_scripts/start_GHOST_downloads.sh @@ -0,0 +1,26 @@ +#!/bin/bash +#SBATCH -n 1 +#SBATCH -t 01:00:00 +#SBATCH -J gfasftp +#SBATCH -e /esarchive/recon/ecmwf/gfas/scripts/i535-marc-hourly/out-logs/format-ftp-%j.err +#SBATCH -o /esarchive/recon/ecmwf/gfas/scripts/i535-marc-hourly/out-logs/format-ftp-%j.out + +#module load xarray/0.19.0-foss-2019b-Python-3.7.4 +#module load netcdf4-python/1.5.8-foss-2019b-Python-3.7.4 +#module load dask/2022.2.0-foss-2019b-Python-3.7.4 +#module load numpy/1.21.6-foss-2019b-Python-3.7.4 + +module load requests +module load beautifulsoup4/4.11.1-foss-2021b-Python-3.9.6 +module load openpyxl/3.1.2-foss-2021b-Python-3.9.6 # open xlsx files +module load Arrow/8.0.0-foss-2021b-Python-3.9.6 # open parquet files +module load lxml/4.9.1-foss-2021b-Python-3.9.6 + +module load selenium/4.18.1-foss-2021b-Python-3.9.6 +module load chromedriver-py/107.0.5304.62-foss-2021b-Python-3.9.6 +module load pandas/1.5.3-foss-2021b-Python-3.9.6 +module load typing-extensions/4.9.0-GCCcore-11.2.0 + + +time python3 -u /esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/run_GHOST_downloads.py +#time python3 /esarchive/scratch/rgrodofz/software/ghost/GHOST/download_scripts/test.py \ No newline at end of file diff --git a/processing_modules/GHOST_standards.py b/processing_modules/GHOST_standards.py index 16b867d8c671462122ab19194d422763fe96f44f..f852daa938ea5f2c885e00eb6310c981e5151c2b 100755 --- a/processing_modules/GHOST_standards.py +++ b/processing_modules/GHOST_standards.py @@ -14,30 +14,30 @@ standard_parameters ={ 'SO2': {'long_parameter_name':'sulphur dioxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':2.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':3000.0, 'extreme_upper_monthly_median':750.0, 'aqs_code':['42401'], 'airbase_name':'Sulphur dioxide (air)', 'airbase_code':'00001', 'miteco_code':'1', 'ebas_parameter_name':['sulphur_dioxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['SO2','Sulphur Dioxide'], 'castnet_parameter_name':{'hourly_gas':'SO2_GA','drychem':'WSO2'}, 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['01'], 'japan_nies_name':['SO2'], 'uk_air_name':['Sulphur dioxide','gaseous sulphur dioxide','a_SO2_g'], 'chemical_formula':'SO2', 'bsc_parameter_name':'sconcso2', 'identifiers':{'IUPAC_name':'sulfur dioxide', 'CAS_number':'7446-09-5', 'PubChem_CID':'1119', 'InChIKey':'RAHZWNYVWXNFOC-UHFFFAOYSA-N', 'WIGOS_name':'SO2', 'WIGOS_number':'430'}}, 'CO': {'long_parameter_name':'carbon monoxide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':7500.0, 'aqs_code':['42101'], 'airbase_name':'Carbon monoxide (air)', 'airbase_code':'00010', 'miteco_code':'6', 'ebas_parameter_name':['carbon_monoxide'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['CO'], 'castnet_parameter_name':'CO', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['05'], 'japan_nies_name':['CO'], 'uk_air_name':['Carbon monoxide'], 'chemical_formula':'CO', 'bsc_parameter_name':'sconcco', 'identifiers':{'IUPAC_name':'carbon monoxide', 'CAS_number':'630-08-0', 'PubChem_CID':'281', 'InChIKey':'UGFAIRIUMAVXCW-UHFFFAOYSA-N', 'WIGOS_name':'CO', 'WIGOS_number':'284'}}, 'CH4': {'long_parameter_name':'methane', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['43201'], 'airbase_name':'Methane (air)', 'airbase_code':'00041', 'miteco_code':'', 'ebas_parameter_name':['methane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Methane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['08'], 'japan_nies_name':['CH4'], 'uk_air_name':[], 'chemical_formula':'CH4', 'bsc_parameter_name':'sconcch4', 'identifiers':{'IUPAC_name':'methane', 'CAS_number':'74-82-8', 'PubChem_CID':'297', 'InChIKey':'VNWKTOKETHGBQD-UHFFFAOYSA-N', 'WIGOS_name':'CH4 (methane)', 'WIGOS_number':'192'}}, -'ACETYLENE': {'long_parameter_name':'acetylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'Ethyne (Acetylene) (air)', 'airbase_code':'00432', 'miteco_code':'', 'ebas_parameter_name':['ethyne'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethyne'], 'chemical_formula':'C2H2', 'bsc_parameter_name':'sconcc2h2', 'identifiers':{'IUPAC_name':'acetylene', 'CAS_number':'74-86-2', 'PubChem_CID':'6326', 'InChIKey':'HSFWRNGVRCDJHI-UHFFFAOYSA-N', 'WIGOS_name':'C2H2 (ethyne, acetylene)', 'WIGOS_number':'434'}}, -'GLYOXAL': {'long_parameter_name':'glyoxal', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'ethanedial (air)', 'airbase_code':'00429', 'miteco_code':'', 'ebas_parameter_name':['ethanedial'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H2O2', 'bsc_parameter_name':'sconcglyox', 'identifiers':{'IUPAC_name':'oxaldehyde', 'CAS_number':'107-22-2', 'PubChem_CID':'7860', 'InChIKey':'LEQAOMBKQFMDFZ-UHFFFAOYSA-N', 'WIGOS_name':'C2H2O2 (glyoxal)', 'WIGOS_number':'12135'}}, +'ACETYLENE': {'long_parameter_name':'acetylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43126'], 'airbase_name':'Ethyne (Acetylene) (air)', 'airbase_code':'00432', 'miteco_code':'', 'ebas_parameter_name':['ethyne'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethyne'], 'chemical_formula':'C2H2', 'bsc_parameter_name':'sconcc2h2', 'identifiers':{'IUPAC_name':'acetylene', 'CAS_number':'74-86-2', 'PubChem_CID':'6326', 'InChIKey':'HSFWRNGVRCDJHI-UHFFFAOYSA-N', 'WIGOS_name':'C2H2 (ethyne, acetylene)', 'WIGOS_number':'434'}}, +'GLYOXAL': {'long_parameter_name':'glyoxal', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'ethanedial (air)', 'airbase_code':'00429', 'miteco_code':'', 'ebas_parameter_name':['ethanedial'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H2O2', 'bsc_parameter_name':'sconcglyox', 'identifiers':{'IUPAC_name':'oxaldehyde', 'CAS_number':'107-22-2', 'PubChem_CID':'7860', 'InChIKey':'LEQAOMBKQFMDFZ-UHFFFAOYSA-N', 'WIGOS_name':'C2H2O2 (glyoxal)', 'WIGOS_number':'12135'}}, 'ETHENE': {'long_parameter_name':'ethene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43203'], 'airbase_name':'Ethene (Ethylene) (air)', 'airbase_code':'00430', 'miteco_code':'', 'ebas_parameter_name':['ethene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Ethylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethene'], 'chemical_formula':'C2H4', 'bsc_parameter_name':'sconcc2h4', 'identifiers':{'IUPAC_name':'ethene', 'CAS_number':'74-85-1', 'PubChem_CID':'6325', 'InChIKey':'VGGSQFUCUMXWEO-UHFFFAOYSA-N', 'WIGOS_name':'C2H4 (ethene)', 'WIGOS_number':'436'}}, -'ACETALDEHYDE': {'long_parameter_name':'acetaldehyde', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'ethanal (air)', 'airbase_code':'00427', 'miteco_code':'', 'ebas_parameter_name':['ethanal'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetaldehyde'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H4O', 'bsc_parameter_name':'sconcald2', 'identifiers':{'IUPAC_name':'acetaldehyde', 'CAS_number':'75-07-0', 'PubChem_CID':'177', 'InChIKey':'IKHGUXGNUITLKF-UHFFFAOYSA-N', 'WIGOS_name':'CH3CHO (acetaldehyde, ethanal)', 'WIGOS_number':'491'}}, +'ACETALDEHYDE': {'long_parameter_name':'acetaldehyde', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['43503'], 'airbase_name':'ethanal (air)', 'airbase_code':'00427', 'miteco_code':'', 'ebas_parameter_name':['ethanal'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Acetaldehyde'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H4O', 'bsc_parameter_name':'sconcald2', 'identifiers':{'IUPAC_name':'acetaldehyde', 'CAS_number':'75-07-0', 'PubChem_CID':'177', 'InChIKey':'IKHGUXGNUITLKF-UHFFFAOYSA-N', 'WIGOS_name':'CH3CHO (acetaldehyde, ethanal)', 'WIGOS_number':'491'}}, 'ETHANE': {'long_parameter_name':'ethane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43202'], 'airbase_name':'Ethane (air)', 'airbase_code':'00428', 'miteco_code':'', 'ebas_parameter_name':['ethane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Ethane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['ethane'], 'chemical_formula':'C2H6', 'bsc_parameter_name':'sconcc2h6', 'identifiers':{'IUPAC_name':'ethane', 'CAS_number':'74-84-0', 'PubChem_CID':'6324', 'InChIKey':'OTMSDBZUPAUEDD-UHFFFAOYSA-N', 'WIGOS_name':'C2H6 (ethane)', 'WIGOS_number':'437'}}, -'ETHANOL': {'long_parameter_name':'ethanol', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ethanol'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H6O', 'bsc_parameter_name':'sconcetoh', 'identifiers':{'IUPAC_name':'ethanol', 'CAS_number':'64-17-5', 'PubChem_CID':'702', 'InChIKey':'LFQSCWFLJHTTHZ-UHFFFAOYSA-N', 'WIGOS_name':'CH3CH2OH (ethanol)', 'WIGOS_number':'490'}}, +'ETHANOL': {'long_parameter_name':'ethanol', 'matrix':'gas', 'standard_units':'', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['ethanol'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C2H6O', 'bsc_parameter_name':'sconcetoh', 'identifiers':{'IUPAC_name':'ethanol', 'CAS_number':'64-17-5', 'PubChem_CID':'702', 'InChIKey':'LFQSCWFLJHTTHZ-UHFFFAOYSA-N', 'WIGOS_name':'CH3CH2OH (ethanol)', 'WIGOS_number':'490'}}, 'PROPENE': {'long_parameter_name':'propene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43205'], 'airbase_name':'Propene (air)', 'airbase_code':'00505', 'miteco_code':'', 'ebas_parameter_name':['propene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Propylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['propene'], 'chemical_formula':'C3H6', 'bsc_parameter_name':'sconcc3h6', 'identifiers':{'IUPAC_name':'prop-1-ene', 'CAS_number':'115-07-1', 'PubChem_CID':'8252', 'InChIKey':'QQONPFPTGQHPMA-UHFFFAOYSA-N', 'WIGOS_name':'C3H6 (propene)', 'WIGOS_number':'442'}}, 'PROPANE': {'long_parameter_name':'propane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43204'], 'airbase_name':'Propane (air)', 'airbase_code':'00503', 'miteco_code':'', 'ebas_parameter_name':['propane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Propane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['propane'], 'chemical_formula':'C3H8', 'bsc_parameter_name':'sconcc3h8', 'identifiers':{'IUPAC_name':'propane', 'CAS_number':'74-98-6', 'PubChem_CID':'6334', 'InChIKey':'ATUOYWHBWRKTHZ-UHFFFAOYSA-N', 'WIGOS_name':'C3H8 (propane)', 'WIGOS_number':'445'}}, -'1,3-BUTADIENE': {'long_parameter_name':'1,3-butadiene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'1.3 Butadiene (air)', 'airbase_code':'00024', 'miteco_code':'', 'ebas_parameter_name':['1-3-butadiene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,3-Butadiene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,3-butadiene'], 'chemical_formula':'C4H6', 'bsc_parameter_name':'sconcc4h6', 'identifiers':{'IUPAC_name':'buta-1,3-diene', 'CAS_number':'106-99-0', 'PubChem_CID':'7845', 'InChIKey':'KAKZBPTYRLMSJV-UHFFFAOYSA-N', 'WIGOS_name':'C4H6 (1,3-butadiene, butadiene)', 'WIGOS_number':'446'}}, -'1-BUTENE': {'long_parameter_name':'1-butene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'1-Butene (air)', 'airbase_code':'06005', 'miteco_code':'', 'ebas_parameter_name':['1-butene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1-Butene/Isobutene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1-butene'], 'chemical_formula':'C4H8', 'bsc_parameter_name':'sconcc4h8', 'identifiers':{'IUPAC_name':'but-1-ene', 'CAS_number':'106-98-9', 'PubChem_CID':'7844', 'InChIKey':'VXNZUUAINFGPBY-UHFFFAOYSA-N', 'WIGOS_name':'C4H8 (1-butene)', 'WIGOS_number':'449'}}, -'ISOBUTANE': {'long_parameter_name':'isobutane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'i-Butane (2-methylpropane) (air)', 'airbase_code':'00447', 'miteco_code':'', 'ebas_parameter_name':['2-methylpropane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Isobutane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['iso-butane'], 'chemical_formula':'C4H10', 'bsc_parameter_name':'sconcc4h10', 'identifiers':{'IUPAC_name':'2-methylpropane', 'CAS_number':'75-28-5', 'PubChem_CID':'6360', 'InChIKey':'NNPPMTNAJDCUHE-UHFFFAOYSA-N', 'WIGOS_name':'i-C4H10 (2-methylpropane, iso-butane)', 'WIGOS_number':'497'}}, +'1,3-BUTADIENE': {'long_parameter_name':'1,3-butadiene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43218'], 'airbase_name':'1.3 Butadiene (air)', 'airbase_code':'00024', 'miteco_code':'', 'ebas_parameter_name':['1-3-butadiene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,3-Butadiene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,3-butadiene'], 'chemical_formula':'C4H6', 'bsc_parameter_name':'sconcc4h6', 'identifiers':{'IUPAC_name':'buta-1,3-diene', 'CAS_number':'106-99-0', 'PubChem_CID':'7845', 'InChIKey':'KAKZBPTYRLMSJV-UHFFFAOYSA-N', 'WIGOS_name':'C4H6 (1,3-butadiene, butadiene)', 'WIGOS_number':'446'}}, +'1-BUTENE': {'long_parameter_name':'1-butene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43280'], 'airbase_name':'1-Butene (air)', 'airbase_code':'06005', 'miteco_code':'', 'ebas_parameter_name':['1-butene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1-Butene/Isobutene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1-butene'], 'chemical_formula':'C4H8', 'bsc_parameter_name':'sconcc4h8', 'identifiers':{'IUPAC_name':'but-1-ene', 'CAS_number':'106-98-9', 'PubChem_CID':'7844', 'InChIKey':'VXNZUUAINFGPBY-UHFFFAOYSA-N', 'WIGOS_name':'C4H8 (1-butene)', 'WIGOS_number':'449'}}, +'ISOBUTANE': {'long_parameter_name':'isobutane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43214'], 'airbase_name':'i-Butane (2-methylpropane) (air)', 'airbase_code':'00447', 'miteco_code':'', 'ebas_parameter_name':['2-methylpropane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Isobutane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['iso-butane'], 'chemical_formula':'C4H10', 'bsc_parameter_name':'sconcc4h10', 'identifiers':{'IUPAC_name':'2-methylpropane', 'CAS_number':'75-28-5', 'PubChem_CID':'6360', 'InChIKey':'NNPPMTNAJDCUHE-UHFFFAOYSA-N', 'WIGOS_name':'i-C4H10 (2-methylpropane, iso-butane)', 'WIGOS_number':'497'}}, 'ISOPRENE': {'long_parameter_name':'isoprene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43243'], 'airbase_name':'Isoprene (air)', 'airbase_code':'00451', 'miteco_code':'', 'ebas_parameter_name':['isoprene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Isoprene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['isoprene'], 'chemical_formula':'C5H8', 'bsc_parameter_name':'sconcisop', 'identifiers':{'IUPAC_name':'2-methylbuta-1,3-diene', 'CAS_number':'78-79-5', 'PubChem_CID':'6557', 'InChIKey':'RRHGJUQNOFWUDK-UHFFFAOYSA-N', 'WIGOS_name':'C5H8 (2-methyl-1,3-butadiene, isoprene)', 'WIGOS_number':'464'}}, -'N-PENTANE': {'long_parameter_name':'n-pentane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'n-Pentane (air)', 'airbase_code':'00486', 'miteco_code':'', 'ebas_parameter_name':['n-pentane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Pentane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-pentane'], 'chemical_formula':'C5H12', 'bsc_parameter_name':'sconcc5h12', 'identifiers':{'IUPAC_name':'pentane', 'CAS_number':'109-66-0', 'PubChem_CID':'8003', 'InChIKey':'OFBQJSOFQDEBGM-UHFFFAOYSA-N', 'WIGOS_name':'n-C5H12 (n-pentane)', 'WIGOS_number':'502'}}, +'N-PENTANE': {'long_parameter_name':'n-pentane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43220'], 'airbase_name':'n-Pentane (air)', 'airbase_code':'00486', 'miteco_code':'', 'ebas_parameter_name':['n-pentane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Pentane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-pentane'], 'chemical_formula':'C5H12', 'bsc_parameter_name':'sconcc5h12', 'identifiers':{'IUPAC_name':'pentane', 'CAS_number':'109-66-0', 'PubChem_CID':'8003', 'InChIKey':'OFBQJSOFQDEBGM-UHFFFAOYSA-N', 'WIGOS_name':'n-C5H12 (n-pentane)', 'WIGOS_number':'502'}}, 'BENZENE': {'long_parameter_name':'benzene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45201'], 'airbase_name':'Benzene (air)', 'airbase_code':'00020', 'miteco_code':'30', 'ebas_parameter_name':['benzene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Benzene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['benzene','BENZENE'], 'chemical_formula':'C6H6', 'bsc_parameter_name':'sconcc6h6', 'identifiers':{'IUPAC_name':'benzene', 'CAS_number':'71-43-2', 'PubChem_CID':'241', 'InChIKey':'UHOVQNZJYSORNB-UHFFFAOYSA-N', 'WIGOS_name':'C6H6 (benzene)', 'WIGOS_number':'476'}}, -'N-HEXANE': {'long_parameter_name':'n-hexane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'n-Hexane (air)', 'airbase_code':'00443', 'miteco_code':'', 'ebas_parameter_name':['n-hexane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Hexane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-hexane'], 'chemical_formula':'C6H14', 'bsc_parameter_name':'sconcc6h14', 'identifiers':{'IUPAC_name':'hexane', 'CAS_number':'110-54-3', 'PubChem_CID':'8058', 'InChIKey':'VLKZOEOYAKHREP-UHFFFAOYSA-N', 'WIGOS_name':'C6H14 (n-hexane)', 'WIGOS_number':'474'}}, +'N-HEXANE': {'long_parameter_name':'n-hexane', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['43231'], 'airbase_name':'n-Hexane (air)', 'airbase_code':'00443', 'miteco_code':'', 'ebas_parameter_name':['n-hexane'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Hexane'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['n-hexane'], 'chemical_formula':'C6H14', 'bsc_parameter_name':'sconcc6h14', 'identifiers':{'IUPAC_name':'hexane', 'CAS_number':'110-54-3', 'PubChem_CID':'8058', 'InChIKey':'VLKZOEOYAKHREP-UHFFFAOYSA-N', 'WIGOS_name':'C6H14 (n-hexane)', 'WIGOS_number':'474'}}, 'TOLUENE': {'long_parameter_name':'toluene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45202'], 'airbase_name':'Toluene (air)', 'airbase_code':'00021', 'miteco_code':'20', 'ebas_parameter_name':['toluene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Toluene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['toluene'], 'chemical_formula':'C7H8', 'bsc_parameter_name':'sconcc7h8', 'identifiers':{'IUPAC_name':'toluene', 'CAS_number':'108-88-3', 'PubChem_CID':'1140', 'InChIKey':'YXFVVABEGXRONW-UHFFFAOYSA-N', 'WIGOS_name':'C7H8 (toluene)', 'WIGOS_number':'482'}}, -'XYLENE': {'long_parameter_name':'xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'Xylene (air)', 'airbase_code':'00078', 'miteco_code':'31', 'ebas_parameter_name':[''], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, -'MP-XYLENE': {'long_parameter_name':'mp-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'m,p-Xylene (air)', 'airbase_code':'00464', 'miteco_code':'', 'ebas_parameter_name':['m-p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['m and p-Xylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmpxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, -'M-XYLENE': {'long_parameter_name':'m-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'m-Xylene (air)', 'airbase_code':'00081', 'miteco_code':'', 'ebas_parameter_name':['m-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'7929', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, -'P-XYLENE': {'long_parameter_name':'p-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'p-Xylene (air)', 'airbase_code':'00080', 'miteco_code':'', 'ebas_parameter_name':['p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcpxyl', 'identifiers':{'IUPAC_name':'1,4-xylene', 'CAS_number':'106-42-3', 'PubChem_CID':'7809', 'InChIKey':'URLKBWYHVLBVBO-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, -'O-XYLENE': {'long_parameter_name':'o-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'o-Xylene (air)', 'airbase_code':'00482', 'miteco_code':'', 'ebas_parameter_name':['o-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcoxyl', 'identifiers':{'IUPAC_name':'1,3-xylene', 'CAS_number':'95-47-6', 'PubChem_CID':'7237', 'InChIKey':'CTQNGGLPUBDAKN-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, -'1,2,4-TRIMETHYLBENZENE':{'long_parameter_name':'1,2,4-trimethylbenzene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[''], 'airbase_name':'1,2,4-Trimethylbenzene (air)', 'airbase_code':'06011', 'miteco_code':'', 'ebas_parameter_name':['1-2-4-trimethylbenzene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,2,4-Trimethylbenzene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,2,4-trimethylbenzene'], 'chemical_formula':'C9H12', 'bsc_parameter_name':'sconcc9h12', 'identifiers':{'IUPAC_name':'1,2,4-trimethylbenzene', 'CAS_number':'95-63-6', 'PubChem_CID':'7247', 'InChIKey':'GWHJZXXIDMPWGX-UHFFFAOYSA-N', 'WIGOS_name':'C9H12 (1,2,4-trimethylbenzene)', 'WIGOS_number':'487'}}, +'XYLENE': {'long_parameter_name':'xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45102'], 'airbase_name':'Xylene (air)', 'airbase_code':'00078', 'miteco_code':'31', 'ebas_parameter_name':[''], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'MP-XYLENE': {'long_parameter_name':'mp-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45109'], 'airbase_name':'m,p-Xylene (air)', 'airbase_code':'00464', 'miteco_code':'', 'ebas_parameter_name':['m-p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['m and p-Xylene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmpxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'M-XYLENE': {'long_parameter_name':'m-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45205'], 'airbase_name':'m-Xylene (air)', 'airbase_code':'00081', 'miteco_code':'', 'ebas_parameter_name':['m-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcmxyl', 'identifiers':{'IUPAC_name':'dimethylbenzene', 'CAS_number':'1330-20-7', 'PubChem_CID':'7929', 'InChIKey':'', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'P-XYLENE': {'long_parameter_name':'p-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45206'], 'airbase_name':'p-Xylene (air)', 'airbase_code':'00080', 'miteco_code':'', 'ebas_parameter_name':['p-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcpxyl', 'identifiers':{'IUPAC_name':'1,4-xylene', 'CAS_number':'106-42-3', 'PubChem_CID':'7809', 'InChIKey':'URLKBWYHVLBVBO-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'O-XYLENE': {'long_parameter_name':'o-xylene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45204'], 'airbase_name':'o-Xylene (air)', 'airbase_code':'00482', 'miteco_code':'', 'ebas_parameter_name':['o-xylene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C8H10', 'bsc_parameter_name':'sconcoxyl', 'identifiers':{'IUPAC_name':'1,3-xylene', 'CAS_number':'95-47-6', 'PubChem_CID':'7237', 'InChIKey':'CTQNGGLPUBDAKN-UHFFFAOYSA-N', 'WIGOS_name':'C8H10 (Sum of p-xylene and m-xylene, 1,3- and 1,4-dimethylbenzene)', 'WIGOS_number':'486'}}, +'1,2,4-TRIMETHYLBENZENE':{'long_parameter_name':'1,2,4-trimethylbenzene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':['45208'], 'airbase_name':'1,2,4-Trimethylbenzene (air)', 'airbase_code':'06011', 'miteco_code':'', 'ebas_parameter_name':['1-2-4-trimethylbenzene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['1,2,4-Trimethylbenzene'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['1,2,4-trimethylbenzene'], 'chemical_formula':'C9H12', 'bsc_parameter_name':'sconcc9h12', 'identifiers':{'IUPAC_name':'1,2,4-trimethylbenzene', 'CAS_number':'95-63-6', 'PubChem_CID':'7247', 'InChIKey':'GWHJZXXIDMPWGX-UHFFFAOYSA-N', 'WIGOS_name':'C9H12 (1,2,4-trimethylbenzene)', 'WIGOS_number':'487'}}, 'MONOTERPENES': {'long_parameter_name':'monoterpenes', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':100.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500000.0, 'extreme_upper_monthly_median':50000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['monoterpenes'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C10H16', 'bsc_parameter_name':'sconcc10h16', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, -'BENZO[a]PYRENE': {'long_parameter_name':'benzo[a]pyrene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.01, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':2.0, 'aqs_code':[], 'airbase_name':'Benzo(a)pyrene (air+aerosol)', 'airbase_code':'06015', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Benzo(a)Pyrene (BaP)','Benzo(a)Pyrene','BaP'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'sconcbap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'BENZO[a]PYRENE': {'long_parameter_name':'benzo[a]pyrene', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.01, 'extreme_lower_limit':0.0, 'extreme_upper_limit':10.0, 'extreme_upper_monthly_median':2.0, 'aqs_code':['17242'], 'airbase_name':'Benzo(a)pyrene (air+aerosol)', 'airbase_code':'06015', 'miteco_code':'', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':['Benzo(a)Pyrene (BaP)','Benzo(a)Pyrene','BaP'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'sconcbap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'NMVOC': {'long_parameter_name':'total non-methane volatile organic compounds', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['43102'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconcnmvoc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, 'VOC': {'long_parameter_name':'total volatile organic compounds', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':50.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':70000.0, 'extreme_upper_monthly_median':10000.0, 'aqs_code':['43104'], 'airbase_name':'Total volatile organic compounds (air)', 'airbase_code':'00033', 'miteco_code':'', 'ebas_parameter_name':['voc_complete'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconcvoc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, 'NMHC': {'long_parameter_name':'total non-methane hydrocarbons', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':20000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'Total non-methane hydrocarbons (air)', 'airbase_code':'00032', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['07'], 'japan_nies_name':['NMHC'], 'uk_air_name':[], 'chemical_formula':'HC', 'bsc_parameter_name':'sconnmhc', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'NMHC', 'WIGOS_number':'494'}}, @@ -49,9 +49,9 @@ standard_parameters ={ 'HCl': {'long_parameter_name':'hydrochloric acid', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['42302'], 'airbase_name':'Hydrogen chloride (air)', 'airbase_code':'00039', 'miteco_code':'', 'ebas_parameter_name':['hydrochloric_acid'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['43'], 'japan_nies_name':['HCL'], 'uk_air_name':['gaseous hydrochloric acid','a_HCl_g'], 'chemical_formula':'HCl', 'bsc_parameter_name':'sconchcl', 'identifiers':{'IUPAC_name':'chlorane', 'CAS_number':'7647-01-0', 'PubChem_CID':'313', 'InChIKey':'VEXZGXHMUGYJMC-UHFFFAOYSA-N', 'WIGOS_name':'HCl (hydrochloric acid)', 'WIGOS_number':'288'}}, 'HF': {'long_parameter_name':'hydrofluoric acid', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['42303'], 'airbase_name':'Hydrogen fluoride (air)', 'airbase_code':'00040', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['44'], 'japan_nies_name':['HF'], 'uk_air_name':[], 'chemical_formula':'HF', 'bsc_parameter_name':'sconchf', 'identifiers':{'IUPAC_name':'fluorane', 'CAS_number':'7664-39-3', 'PubChem_CID':'14917', 'InChIKey':'KRHYYFGTRYWZRS-UHFFFAOYSA-N', 'WIGOS_name':'HF (hydrofluoric acid)', 'WIGOS_number':'289'}}, 'H2S': {'long_parameter_name':'hydrogen sulphide', 'matrix':'gas', 'standard_units':'nmol mol-1', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['42402'], 'airbase_name':'Hydrogen sulphide (air)', 'airbase_code':'00011', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['45'], 'japan_nies_name':['H2S'], 'uk_air_name':[], 'chemical_formula':'H2S', 'bsc_parameter_name':'sconch2s', 'identifiers':{'IUPAC_name':'sulfane', 'CAS_number':'7783-06-4', 'PubChem_CID':'402', 'InChIKey':'RWSOTUBLDIXVET-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, -'Hg-GEM': {'long_parameter_name':'gaseous elemental mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'Elemental Gaseous Mercury (air+aerosol)', 'airbase_code':'4013', 'miteco_code':'', 'ebas_parameter_name':['mercury_GEM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['elemental mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggem', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, -'Hg-GOM': {'long_parameter_name':'gaseous oxidised mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'reactive_mercury (air+aerosol)', 'airbase_code':'653', 'miteco_code':'', 'ebas_parameter_name':['mercury_GOM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['reactive mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggom', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, -'Hg-TGM': {'long_parameter_name':'total gaseous mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[''], 'airbase_name':'Total gaseous mercury (air+aerosol)', 'airbase_code':'4813', 'miteco_code':'', 'ebas_parameter_name':['mercury_TGM','total_gaseous_mercury'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['total gaseous mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchgtgm', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-GEM': {'long_parameter_name':'gaseous elemental mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':[], 'airbase_name':'Elemental Gaseous Mercury (air+aerosol)', 'airbase_code':'4013', 'miteco_code':'', 'ebas_parameter_name':['mercury_GEM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['elemental mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggem', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-GOM': {'long_parameter_name':'gaseous oxidised mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['42243'],'airbase_name':'reactive_mercury (air+aerosol)', 'airbase_code':'653', 'miteco_code':'', 'ebas_parameter_name':['mercury_GOM'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['reactive mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchggom', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'Hg-TGM': {'long_parameter_name':'total gaseous mercury', 'matrix':'gas', 'standard_units':'pmol mol-1', 'axis_label':'concentration', 'minimum_resolution':'', 'extreme_lower_limit':0.0, 'extreme_upper_limit':'', 'extreme_upper_monthly_median':'', 'aqs_code':['42242'],'airbase_name':'Total gaseous mercury (air+aerosol)', 'airbase_code':'4813', 'miteco_code':'', 'ebas_parameter_name':['mercury_TGM','total_gaseous_mercury'], 'ebas_matrix':'air', 'ebas_priority_units':['mol/mol','/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['total gaseous mercury'], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchgtgm', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, #PM 'Al': {'long_parameter_name':'total particulate aluminium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['12101','14101'], 'airbase_name':'aluminium (aerosol)', 'airbase_code':'00604', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Aluminum (Al)','Aluminum','Al'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Al'], 'chemical_formula':'Al', 'bsc_parameter_name':'sconcal', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'Al (Aluminium), TSP', 'WIGOS_number':'674'}}, 'As': {'long_parameter_name':'total particulate arsenic', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['12103','14103'], 'airbase_name':'Arsenic (aerosol)', 'airbase_code':'00018', 'miteco_code':'', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Arsenic (As)','Arsenic','As'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['As'], 'chemical_formula':'As', 'bsc_parameter_name':'sconcas', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'As (Arsenic), TSP', 'WIGOS_number':'678'}}, @@ -64,7 +64,7 @@ standard_parameters ={ 'Co': {'long_parameter_name':'total particulate cobalt', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50.0, 'extreme_upper_monthly_median':5.0, 'aqs_code':['12113','14113'], 'airbase_name':'Cobalt (aerosol)', 'airbase_code':'00064', 'miteco_code':'', 'ebas_parameter_name':['cobalt'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Cobalt (Co)','Cobalt','Co'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Co'], 'chemical_formula':'Co', 'bsc_parameter_name':'sconccobalt', 'identifiers':{'IUPAC_name':'cobalt', 'CAS_number':'7440-48-4', 'PubChem_CID':'104730', 'InChIKey':'GUTLYIVDDKVIGB-UHFFFAOYSA-N', 'WIGOS_name':'Co (Cobalt), TSP', 'WIGOS_number':'691'}}, 'Cr': {'long_parameter_name':'total particulate chromium', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':500.0, 'extreme_upper_monthly_median':100.0, 'aqs_code':['12112','14112'], 'airbase_name':'Chromium (aerosol)', 'airbase_code':'00016', 'miteco_code':'', 'ebas_parameter_name':['chromium'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Chromium (Cr)','Chromium','Cr'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Cr'], 'chemical_formula':'Cr', 'bsc_parameter_name':'sconccr', 'identifiers':{'IUPAC_name':'chromium', 'CAS_number':'7440-47-3', 'PubChem_CID':'23976', 'InChIKey':'VYZAMTAEIAYCRO-UHFFFAOYSA-N', 'WIGOS_name':'Cr (Chromium), TSP', 'WIGOS_number':'690'}}, 'Cu': {'long_parameter_name':'total particulate copper', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':750.0, 'extreme_upper_monthly_median':150.0, 'aqs_code':['12114','14114'], 'airbase_name':'Copper (aerosol)', 'airbase_code':'00073', 'miteco_code':'', 'ebas_parameter_name':['copper'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Copper (Cu)','Copper','Cu'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Cu'], 'chemical_formula':'Cu', 'bsc_parameter_name':'sconccu', 'identifiers':{'IUPAC_name':'copper', 'CAS_number':'7440-50-8', 'PubChem_CID':'23978', 'InChIKey':'RYGMFSIKBFXOCR-UHFFFAOYSA-N', 'WIGOS_name':'Cu (Copper), TSP', 'WIGOS_number':'693'}}, -'DUST': {'long_parameter_name':'total particulate dust', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sconcdu', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dust mass concentration', 'WIGOS_number':'727'}}, +'DUST': {'long_parameter_name':'total particulate dust', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['21101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sconcdu', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dust mass concentration', 'WIGOS_number':'727'}}, 'EC': {'long_parameter_name':'total particulate elemental carbon', 'matrix':'pm', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':[], 'airbase_name':'Elemental carbon (aerosol)', 'airbase_code':'00771', 'miteco_code':'', 'ebas_parameter_name':['elemental_carbon'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['EC(corr)','EC','EC_R','EC_T','EC(A)'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'sconcec', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'Fe': {'long_parameter_name':'total particulate iron', 'matrix':'pm', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['12126','14126'], 'airbase_name':'Iron (aerosol)', 'airbase_code':'00065', 'miteco_code':'', 'ebas_parameter_name':['iron'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':['Iron (Fe)','Iron','Fe'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Fe'], 'chemical_formula':'Fe', 'bsc_parameter_name':'sconcfe', 'identifiers':{'IUPAC_name':'iron', 'CAS_number':'7439-89-6', 'PubChem_CID':'23925', 'InChIKey':'XEEYBQQBJWHFJM-UHFFFAOYSA-N', 'WIGOS_name':'Fe (Iron), TSP', 'WIGOS_number':'694'}}, 'Hg': {'long_parameter_name':'total particulate mercury', 'matrix':'pm', 'standard_units':'pg m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':30000.0, 'extreme_upper_monthly_median':3000.0, 'aqs_code':['12142','14142'], 'airbase_name':'Mercury (aerosol)', 'airbase_code':'00013', 'miteco_code':'', 'ebas_parameter_name':['mercury','mercury_PBM'], 'ebas_matrix':'aerosol', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Hg', 'bsc_parameter_name':'sconchg', 'identifiers':{'IUPAC_name':'mercury', 'CAS_number':'7439-97-6', 'PubChem_CID':'23931', 'InChIKey':'QSHDDOUJBYECFT-UHFFFAOYSA-N', 'WIGOS_name':'Hg (Mercury), TSP', 'WIGOS_number':'703'}}, @@ -141,7 +141,7 @@ standard_parameters ={ 'PM10': {'long_parameter_name':'PM10 mass', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['81102','85101'], 'airbase_name':'Particulate matter < 10 µm (aerosol)', 'airbase_code':'00005', 'miteco_code':'10', 'ebas_parameter_name':['pm10_mass'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['PM10','PM2.5-10','MASS'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':['10'], 'japan_nies_name':['SPM','SPMB','SPMP'], 'uk_air_name':['PM10 particulate matter (Hourly measured)','PM10 particulate matter (Hourly measured)','PM10 particulate matter (Daily measured)','Daily measured PM10 (uncorrected)','Daily measured PM10 (uncorrected)'], 'chemical_formula':'', 'bsc_parameter_name':'pm10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Particle mass concentration, PM10', 'WIGOS_number':'364'}}, 'PM10_Al': {'long_parameter_name':'PM10 aluminium', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82101','85104'], 'airbase_name':'aluminium in PM10 (aerosol)', 'airbase_code':'05604', 'miteco_code':'', 'ebas_parameter_name':['aluminium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Aluminum (Al)','Aluminum','Al'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Al', 'bsc_parameter_name':'pm10al', 'identifiers':{'IUPAC_name':'aluminum', 'CAS_number':'7429-90-5', 'PubChem_CID':'5359268', 'InChIKey':'XAGFODPZIPBFFR-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'PM10_As': {'long_parameter_name':'PM10 arsenic', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':['82103','85103'], 'airbase_name':'Arsenic in PM10 (aerosol)', 'airbase_code':'05018', 'miteco_code':'17', 'ebas_parameter_name':['arsenic'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Arsenic (As)','Arsenic','As'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'As', 'bsc_parameter_name':'pm10as', 'identifiers':{'IUPAC_name':'arsenic', 'CAS_number':'7440-38-2', 'PubChem_CID':'5359596', 'InChIKey':'RQNWIZPPADIBDY-UHFFFAOYSA-N', 'WIGOS_name':'As (Arsenic), PM10', 'WIGOS_number':'677'}}, -'PM10_BaP': {'long_parameter_name':'PM10 benzo[a]pyrene', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':[], 'airbase_name':'Benzo(a)pyrene in PM10 (aerosol)', 'airbase_code':'05029', 'miteco_code':'27', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'pm10bap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PM10_BaP': {'long_parameter_name':'PM10 benzo[a]pyrene', 'matrix':'pm10', 'standard_units':'ng m-3', 'axis_label':'concentration', 'minimum_resolution':0.1, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['82242'], 'airbase_name':'Benzo(a)pyrene in PM10 (aerosol)', 'airbase_code':'05029', 'miteco_code':'27', 'ebas_parameter_name':['benzo_a_pyrene'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C20H12', 'bsc_parameter_name':'pm10bap', 'identifiers':{'IUPAC_name':'benzo[a]pyrene', 'CAS_number':'50-32-8', 'PubChem_CID':'2336', 'InChIKey':'FMMWHPNWAFZXNH-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'PM10_BC': {'long_parameter_name':'PM10 black carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':10.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':25000.0, 'extreme_upper_monthly_median':2500.0, 'aqs_code':['85313'], 'airbase_name':'black_carbon in PM10 (aerosol)', 'airbase_code':'05391', 'miteco_code':'', 'ebas_parameter_name':['equivalent_black_carbon','equivalent_black_carbon_mass'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'C', 'bsc_parameter_name':'pm10bc', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'PM10_C': {'long_parameter_name':'PM10 carbon', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':20.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':50000.0, 'extreme_upper_monthly_median':5000.0, 'aqs_code':['82116'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['total_carbon','total_carbon_corrected'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['TC(corr)','TC'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Total Carbon-PM10'], 'chemical_formula':'C', 'bsc_parameter_name':'pm10c', 'identifiers':{'IUPAC_name':'carbon', 'CAS_number':'1333-86-4', 'PubChem_CID':'5462310', 'InChIKey':'OKTJSMMVPCPJKN-UHFFFAOYSA-N', 'WIGOS_name':'Total carbon, PM10', 'WIGOS_number':'626'}}, 'PM10_Ca++': {'long_parameter_name':'PM10 calcium', 'matrix':'pm10', 'standard_units':'ug m-3', 'axis_label':'concentration', 'minimum_resolution':0.2, 'extreme_lower_limit':0.0, 'extreme_upper_limit':100.0, 'extreme_upper_monthly_median':20.0, 'aqs_code':['82111','85111'], 'airbase_name':'calcium in PM10 (aerosol)', 'airbase_code':'05629', 'miteco_code':'', 'ebas_parameter_name':['calcium'], 'ebas_matrix':'pm10', 'ebas_priority_units':['/m3'], 'naps_code':['Calcium','Ca'], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':['Calcium aerosol - PM10'], 'chemical_formula':'Ca', 'bsc_parameter_name':'pm10ca', 'identifiers':{'IUPAC_name':'calcium(2+)', 'CAS_number':'14127-61-8', 'PubChem_CID':'271', 'InChIKey':'BHPQYMZQTOCNFJ-UHFFFAOYSA-N', 'WIGOS_name':'Ca++ (calcium), PM10', 'WIGOS_number':'632'}}, @@ -452,15 +452,15 @@ standard_parameters ={ 'V_WETDEP': {'long_parameter_name':'vanadium wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['vanadium'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'V', 'bsc_parameter_name':'wetv', 'identifiers':{'IUPAC_name':'vanadium', 'CAS_number':'7440-62-2', 'PubChem_CID':'23990', 'InChIKey':'LEONUFNNVUYDNQ-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, 'Zn_WETDEP': {'long_parameter_name':'zinc wet deposition flux', 'matrix':'wetdep', 'standard_units':'ng m-2 min-1', 'axis_label':'flux', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':2000.0, 'extreme_upper_monthly_median':200.0, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':['zinc'], 'ebas_matrix':'wetdep', 'ebas_priority_units':['/m2'], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'Zn', 'bsc_parameter_name':'wetzn', 'identifiers':{'IUPAC_name':'zinc', 'CAS_number':'7440-66-6', 'PubChem_CID':'23994', 'InChIKey':'HCHKCACWOHOZIP-UHFFFAOYSA-N', 'WIGOS_name':'', 'WIGOS_number':''}}, #METEO -'WND_DIR_10M': {'long_parameter_name':'10m wind direction', 'matrix':'meteo', 'standard_units':'angular degrees', 'axis_label':'direction', 'minimum_resolution':15.0, 'extreme_lower_limit':1.0, 'extreme_upper_limit':360.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'direction_angle', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'dir10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind direction at specified distance from reference surface', 'WIGOS_number':'12005'}}, -'WND_SPD_10M': {'long_parameter_name':'10m wind speed', 'matrix':'meteo', 'standard_units':'m s-1', 'axis_label':'speed', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'speed', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'spd10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind speed at specified distance from reference surface', 'WIGOS_number':'12006'}}, -'TEMP_2M': {'long_parameter_name':'2m air temperature', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-658.85, 'extreme_upper_limit':891.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'TEMP_2M', 'noaa_isd_parameter_name':'air_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'t2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Air temperature (at specified distance from reference surface)', 'WIGOS_number':'224'}}, -'RH_2M': {'long_parameter_name':'average relative humidity', 'matrix':'meteo', 'standard_units':'unitless', 'axis_label':'humidity (%)', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'avg_rh', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rh2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Relative humidity (with respect to water)', 'WIGOS_number':'12249'}}, +'WND_DIR_10M': {'long_parameter_name':'10m wind direction', 'matrix':'meteo', 'standard_units':'angular degrees', 'axis_label':'direction', 'minimum_resolution':15.0, 'extreme_lower_limit':1.0, 'extreme_upper_limit':360.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['61102', '61104'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'direction_angle', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'dir10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind direction at specified distance from reference surface', 'WIGOS_number':'12005'}}, +'WND_SPD_10M': {'long_parameter_name':'10m wind speed', 'matrix':'meteo', 'standard_units':'m s-1', 'axis_label':'speed', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['61101', '61103'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'speed', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'spd10', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Horizontal wind speed at specified distance from reference surface', 'WIGOS_number':'12006'}}, +'TEMP_2M': {'long_parameter_name':'2m air temperature', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-658.85, 'extreme_upper_limit':891.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'TEMP_2M', 'noaa_isd_parameter_name':'air_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'t2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Air temperature (at specified distance from reference surface)', 'WIGOS_number':'224'}}, +'RH_2M': {'long_parameter_name':'average relative humidity', 'matrix':'meteo', 'standard_units':'unitless', 'axis_label':'humidity (%)', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62201'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'avg_rh', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'rh2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Relative humidity (with respect to water)', 'WIGOS_number':'12249'}}, 'SST': {'long_parameter_name':'sea surface temperature', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':223.15, 'extreme_upper_limit':723.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'sst', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'sst', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, -'DEW_PT_2M': {'long_parameter_name':'2m dew point', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-708.85, 'extreme_upper_limit':641.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'dpoint_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'td2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dew-point temperature (at specified distance from reference surface)', 'WIGOS_number':'225'}}, -'PRES_2M': {'long_parameter_name':'2m atmospheric pressure', 'matrix':'meteo', 'standard_units':'hPa', 'axis_label':'pressure', 'minimum_resolution':10.0, 'extreme_lower_limit':450.0, 'extreme_upper_limit':10900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'station_p', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pshltr', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Atmospheric pressure', 'WIGOS_number':'216'}}, +'DEW_PT_2M': {'long_parameter_name':'2m dew point', 'matrix':'meteo', 'standard_units':'K', 'axis_label':'temperature', 'minimum_resolution':1.0, 'extreme_lower_limit':-708.85, 'extreme_upper_limit':641.15, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['62103'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'dpoint_temp', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'td2', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Dew-point temperature (at specified distance from reference surface)', 'WIGOS_number':'225'}}, +'PRES_2M': {'long_parameter_name':'2m atmospheric pressure', 'matrix':'meteo', 'standard_units':'hPa', 'axis_label':'pressure', 'minimum_resolution':10.0, 'extreme_lower_limit':450.0, 'extreme_upper_limit':10900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['64101'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'station_p', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'pshltr', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Atmospheric pressure', 'WIGOS_number':'216'}}, 'SLP': {'long_parameter_name':'sea level pressure', 'matrix':'meteo', 'standard_units':'hPa', 'axis_label':'pressure', 'minimum_resolution':10.0, 'extreme_lower_limit':8600.0, 'extreme_upper_limit':10900.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'sea_level_pressure', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'slp', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, -'PREC_ACCUM': {'long_parameter_name':'liquid precipitation accumulation', 'matrix':'meteo', 'standard_units':'mm', 'axis_label':'accumulation', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':9998.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'prec_depth', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'acprec', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, +'PREC_ACCUM': {'long_parameter_name':'liquid precipitation accumulation', 'matrix':'meteo', 'standard_units':'mm', 'axis_label':'accumulation', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':9998.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':['65102'], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'prec_depth', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'acprec', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, 'SNOW_ACCUM': {'long_parameter_name':'snow accumulation', 'matrix':'meteo', 'standard_units':'cm', 'axis_label':'accumulation', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1200.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'snow_acc', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'acsnow', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, 'SNOW_DEPTH': {'long_parameter_name':'snow depth', 'matrix':'meteo', 'standard_units':'cm', 'axis_label':'depth', 'minimum_resolution':1.0, 'extreme_lower_limit':0.0, 'extreme_upper_limit':1200.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'si', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'si', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'', 'WIGOS_number':''}}, 'CEILING_HEIGHT':{'long_parameter_name':'the height above ground level of the lowest cloud or obscuring phenomena layer aloft with 5/8 or more summation total sky cover.', 'matrix':'meteo', 'standard_units':'m', 'axis_label':'height', 'minimum_resolution':np.NaN, 'extreme_lower_limit':0.0, 'extreme_upper_limit':22000.0, 'extreme_upper_monthly_median':np.NaN, 'aqs_code':[], 'airbase_name':'', 'airbase_code':'', 'miteco_code':'', 'ebas_parameter_name':[], 'ebas_matrix':'', 'ebas_priority_units':[''], 'naps_code':[], 'castnet_parameter_name':'', 'noaa_isd_parameter_name':'ceiling', 'aeronet_parameter_name':'', 'aeronet_matrix':'', 'japan_nies_code':[], 'japan_nies_name':[], 'uk_air_name':[], 'chemical_formula':'', 'bsc_parameter_name':'cldbot', 'identifiers':{'IUPAC_name':'', 'CAS_number':'', 'PubChem_CID':'', 'InChIKey':'', 'WIGOS_name':'Cloud base height', 'WIGOS_number':'531'}},